
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a1a2f;
      --navy2:  #112240;
      --gold:   #b3935d;
      --gold-l: #d4aa5a;
      --white:  #ffffff;
      --charcoal: #1a1a2e;
      --dark-text: #1c1c2e;
      --gray-light: #f5f5f7;
      --gray-border: #e2e2e8;
      --gray-text: #6b6b80;
    }

    html { scroll-behavior: smooth; }

    body {
  
      font-family: 'Cinzel Bold', sans-serif !important;
      color: var(--dark-text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAVBAR ─────────────────────────────────────── */
    nav {
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--navy);
      box-shadow: none;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 12px rgba(0,0,0,.1);
    }
    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 25px 24px;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .logo-image {
    height: 100px;
    width: 140px;
    }
    

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
      transition: opacity 0.2s;
       height: 100px;
       overflow: hidden;
    }
    .logo:hover {
      opacity: 0.85;
    }
    .logo-monogram {
      width: 48px;
      height: 48px;
      border: 2px solid var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel Bold', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: -1px;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-text span:first-child {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 3px;
      color: var(--white);
      text-transform: uppercase;
    }
    .logo-text span:last-child {
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 36px;
      align-items: center;
      flex: 1;
      margin-bottom: 0px;
    }
    .nav-toggle {
      display: none;
      border: none;
      background: transparent;
      color: var(--white);
      cursor: pointer;
      font-size: 18px;
      padding: 8px;
    }

    /* mobile CTA (icon-only on small screens) */
    .mobile-cta { display: none; }
    .mobile-cta .mobile-cta-icon { display: inline-block; margin-right: 8px; }
    .mobile-cta .mobile-cta-text { display: inline-block; }
    .nav-links a {
      text-decoration: none;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,.75);
      text-transform: uppercase;
      transition: color 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease;
      padding-bottom: 6px;
      border-bottom: 2px solid transparent;
      position: relative;
      display: inline-block;
    }
    .nav-links a:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }
    .nav-links a.active {
      color: var(--gold);
      border-bottom: 2px solid var(--gold);
    }
    .btn-nav {
      flex-shrink: 0;
      padding: 12px 24px;
      background: var(--gold);
      color: var(--white);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--gold);
      border-radius: 4px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      white-space: nowrap;
      cursor: pointer;
    }
    .btn-nav:hover {
      background: var(--gold-l);
      border-color: var(--gold-l);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(184,146,58,.3);
    }
    

    /* ── HERO ───────────────────────────────────────── */
    .hero {
      background: var(--navy);

      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(184,146,58,.08) 0%, transparent 70%);
    }
    /* diagonal separator */
    .hero::after {
      content: '';
      position: absolute;
      right: 42%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      transform: skewX(-4deg);
      opacity: .35;
    }
    .hero-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-left { max-width: 520px; }
    .hero-heading {
      font-family: 'Cinzel Bold', serif;
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero-heading em {
      font-style: inherit;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,.7);
      max-width: 400px;
      margin-bottom: 32px;
      line-height: 1.7;
    }
    .hero-flags {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 36px;
    }
    .hero-flag {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .5px;
      color: rgba(255,255,255,.85);
      text-transform: uppercase;
    }
    .flag-emoji { font-size: 20px; }
    .flag-icon {
      width: 24px;          /* Controls the width of the flag */
      height: 24px;         /* Keeps a clean 3:2 aspect ratio */
      object-fit: cover;    /* Prevents the flag from stretching weirdly */
      border-radius: 50%;   /* Optional: gives the flag slightly soft corners */
      display: inline-block;
      vertical-align: middle; /* Perfectly aligns it with the text baseline */
      margin-right: 8px;    /* Adds a little breathing room before the text */
    }
    .hero-flag-divider {
      width: 1px;
      height: 18px;
      background: rgba(255,255,255,.25);
    }
.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}


    .btn-solid-gold {
      padding: 14px 24px;
      background: var(--gold);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--gold);
      border-radius: 3px;
      transition: all .2s;
    }
    .btn-solid-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }
    .btn-outline-white {
      padding: 14px 24px;
      background: transparent;
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,.45);
      border-radius: 3px;
      transition: all .2s;
    }
    .btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

    .parallax {
      will-change: transform;
      transition: transform 0.2s ease-out;
      transform: translateY(0);
    }

    /* Laptop mockup */
    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .laptop-wrap {
      position: relative;
      transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
      transform-style: preserve-3d;
      filter: drop-shadow(0 40px 60px rgba(0,0,0,.6));
    }
    .laptop-outer {
      background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
      border-radius: 12px 12px 0 0;
      padding: 12px 12px 0;
      width: 440px;
      border: 2px solid rgba(184,146,58,.3);
    }
    .laptop-screen {
      background: #f0f4f8;
      border-radius: 6px;
      padding: 16px;
      aspect-ratio: 16/10;
    }
    .dashboard {
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
    }
    .dash-title {
      font-size: 9px;
      font-weight: 700;
      color: #333;
      letter-spacing: .5px;
    }
    .dash-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }
    .dash-metric {
      background: white;
      border-radius: 4px;
      padding: 6px 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
    }
    .dash-metric .label { font-size: 7px; color: #888; }
    .dash-metric .value { font-size: 13px; font-weight: 700; color: #1c1c2e; }
    .dash-metric .change { font-size: 7px; color: #22c55e; }
    .dash-bottom {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 8px;
      flex: 1;
    }
    .chart-area {
      background: white;
      border-radius: 4px;
      padding: 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
      position: relative;
      overflow: hidden;
    }
    .chart-label { font-size: 7px; color: #888; margin-bottom: 4px; }
    .chart-svg { width: 100%; height: 70px; }
    .pie-area {
      background: white;
      border-radius: 4px;
      padding: 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .pie-svg { width: 60px; height: 60px; }
    .pie-legend { font-size: 6px; color: #888; line-height: 1.8; }
    .laptop-base {
      background: linear-gradient(to bottom, #222233, #1a1a2e);
      height: 16px;
      border-radius: 0 0 4px 4px;
      border: 2px solid rgba(184,146,58,.3);
      border-top: none;
    }
    .laptop-stand {
      width: 80px;
      height: 8px;
      background: linear-gradient(to bottom, #1a1a2e, #111120);
      margin: 0 auto;
      border-radius: 0 0 6px 6px;
    }
    .mug {
      position: absolute;
      right: -55px;
      bottom: 20px;
      width: 70px;
      height: 90px;
    }
    .mug-body {
      width: 58px;
      height: 72px;
      background: linear-gradient(145deg, #1a1a2e, #0d0d1e);
      border-radius: 6px 6px 10px 10px;
      border: 1px solid rgba(184,146,58,.4);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
    }
    .mug-handle {
      position: absolute;
      right: -14px;
      top: 14px;
      width: 14px;
      height: 30px;
      border: 2px solid rgba(184,146,58,.5);
      border-left: none;
      border-radius: 0 8px 8px 0;
    }
    .mug-steam {
      display: flex;
      gap: 5px;
      justify-content: center;
      margin-bottom: 4px;
    }
    .mug-steam span {
      display: block;
      width: 2px;
      height: 10px;
      background: rgba(255,255,255,.2);
      border-radius: 2px;
    }

    /* ── SOCIAL PROOF BAR ───────────────────────────── */
    .proof-bar {
      background: var(--navy2);
      border-top: 1px solid rgba(184,146,58,.3);
      border-bottom: 1px solid rgba(184,146,58,.3);
    }
    .proof-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 28px 20px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .proof-item:last-child { border-right: none; }
    .proof-icon {
      width: 44px;
      height: 44px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 17px;
      flex-shrink: 0;
    }
    .proof-text strong {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }
    .proof-text span {
      font-size: 12px;
      color: rgba(255,255,255,.6);
    }

    /* ── SECTION CHROME ─────────────────────────────── */
    section { padding: 50px 0; }
    .section-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
    .section-eyebrow {
      text-align: center;
      font-size: 18px ;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .section-desc {
      text-align: center;
      font-size: 15px;
      color: var(--gray-text);
      max-width: 560px;
      margin: 0 auto 56px;
      line-height: 1.75;
    }

    /* ── SERVICES ───────────────────────────────────── */
    .services { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .service-card {
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      padding: 32px 22px 28px;
      transition: box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.35s ease, border-color 0.35s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--white);
      position: relative;
    }
    .service-card:hover {
      box-shadow: 0 12px 48px rgba(184,146,58,.25), 0 0 20px rgba(184,146,58,.1);
      transform: translateY(-8px);
      background-color: rgba(184,146,58,.02);
      border-color: rgba(184,146,58,.3);
    }
    .service-icon-wrap {
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, color 0.35s ease;
    }
    .service-card:hover .service-icon-wrap {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 8px 24px rgba(184,146,58,.3);
      color: var(--gold-l);
    }
    .service-icon-wrap {
      width: 68px;
      height: 68px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 22px;
      margin-bottom: 20px;
      flex-shrink: 0;
      background: rgba(184,146,58,.05);
    }
    .service-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .service-card p {
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.7;
    }
    .card-line {
      display: block;
      width: 32px;
      height: 2px;
      background: var(--gold);
      margin: 16px auto 0;
      opacity: .5;
    }

    /* ── WHY CHOOSE US ──────────────────────────────── */
    .why { background: var(--gray-light); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      position: relative;
    }
    .why-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
      z-index: 0;
    }
    .why-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
      padding: 28px 20px;
      background: var(--white);
      border-radius: 8px;
      border: 1px solid rgba(184,146,58,.12);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .why-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .why-item:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -27px;
      top: 8px;
      color: var(--gold);
      font-size: 16px;
      font-weight: 700;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-light);
      border-radius: 50%;
      z-index: 2;
    }
    .why-item:hover {
      border-color: rgba(184,146,58,.25);
      box-shadow: 0 8px 28px rgba(184,146,58,.12);
      transform: translateY(-4px);
      background: rgba(184,146,58,.01);
    }
    .why-item:hover::before {
      opacity: 1;
    }
    .why-icon {
      width: 56px;
      height: 56px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 20px;
      margin-bottom: 16px;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, color 0.3s ease;
      flex-shrink: 0;
    }
    .why-item:hover .why-icon {
      transform: scale(1.1) rotate(3deg);
      box-shadow: 0 6px 16px rgba(184,146,58,.2);
      color: var(--gold-l);
    }
    .why-item h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 10px;
      line-height: 1.3;
      letter-spacing: 0.5px;
    }
    .why-item p {
      font-size: 12.5px;
      color: var(--gray-text);
      line-height: 1.65;
      margin: 0;
    }

    /* ── HOW IT WORKS ───────────────────────────────── */
    .how { background: var(--white); }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .how-grid::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
      z-index: 0;
    }
    .how-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .how-circle {
      width: 74px;
      height: 74px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      margin-bottom: 22px;
      border: 3px solid var(--white);
      flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,.15);
    }
    .how-step h3 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--dark-text);
      margin-bottom: 10px;
      font-style:bold;
    }
    .how-step p { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

    /* ── CTA BANNER ─────────────────────────────────── */
    .cta-banner {
      background: var(--navy);
      padding: 60px 0;
    }
    .cta-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .cta-cal-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 28px;
      flex-shrink: 0;
      background:var(--gold)
    }
    .cta-text { flex: 1; }
    .cta-text h2 {
      font-size: 18px;
      font-weight: 600;
      color: rgba(255,255,255,.8);
      margin-bottom: 4px;
    }
    .cta-text h2 + p {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .cta-text p.sub {
      font-size: 14px;
      color: rgba(255,255,255,.65);
      max-width: 500px;
    }
    .cta-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .cta-right .btn-solid-gold { font-size: 12px; }
    .cta-right small {
      font-size: 11.5px;
      color: var(--white);
      letter-spacing: .5px;
    }

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(184,146,58,.25);
      padding: 64px 0 0;
      text-align: center;
    }
    .parallax {
      will-change: transform;
      transition: transform 0.25s ease-out;
    }
    
    /* Scroll reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s cubic-bezier(.22,.9,.32,1), transform 0.6s cubic-bezier(.22,.9,.32,1);
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    /* allow per-element delay via data-delay attribute applied by JS */
    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none !important; transform: none !important; }
    }
    .footer-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 48px;
      justify-items: center;
      text-align: center;
    }
    .footer-inner > * {
      text-align: left;
      justify-self: start;
      align-self: start;
    }
    /* Left-align only the contact column while keeping others centered */
    .footer-inner .footer-contact {
      text-align: left;
      justify-self: start;
      align-self: start;
    }
    .footer-inner .footer-contact .contact-item {
      justify-content: flex-start;
      margin: 0 0 14px 0;
      max-width: none;
    }
    .footer-brand .logo { margin-bottom: 16px; display: inline-flex; justify-content: center; }
    .footer-brand p {
      font-size: 13.5px;
      color: rgba(255,255,255,.55);
      line-height: 1.75;
      max-width: 320px;
      margin: 0 auto;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
          text-align: left;
    }
    .footer-col ul { list-style: none; display: inline-flex; flex-direction: column; gap: 10px; padding: 0; margin: 0 auto; text-align: left; }
    .footer-col ul a {
      text-decoration: none;
      font-size: 13.5px;
      color: rgba(255,255,255,.6);
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--gold); }
    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 0 auto 14px;
      max-width: 300px;
    }
    .contact-item i {
      color: var(--gold);
      font-size: 14px;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .contact-item span {
      font-size: 13.5px;
      color: rgba(255,255,255,.6);
      line-height: 1.5;
    }
    .contact-item a {
      text-decoration: none;
      color: rgba(255,255,255,.6);
      transition: color .2s;
    }
    .contact-item a:hover { color: var(--gold); }
  .footer-bottom {
      margin: 48px auto 0;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      text-align: center;
  }
  .footer-bottom p {
      font-size: 12px;
      color: var(--white);
      margin: 0;
  }
    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .footer-bottom-links a {
      font-size: 12px;
      color: var(--white);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* ── RESPONSIVENESS ─────────────────────────────── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .why-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; justify-items: center; }
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .proof-inner { grid-template-columns: repeat(2, 1fr); }
      .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .how-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .how-grid::before { display: none; }
      .nav-toggle { display: flex !important; align-items: center; justify-content: center; }
      .nav-links { display: none !important; flex-direction: column; position: absolute; top: 95px; left: 0; right: 0; background: rgba(10,26,47,0.98); padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.08); z-index: 1000; gap: 12px; }
      .nav-links.show { display: flex !important; }
      .nav-links li { width: 100%; }
      .nav-links a { width: 100%; padding: 12px 0; border-bottom: none; font-size: 13px; }
      .nav-links a.active { color: var(--gold); }
      /* show mobile CTA as icon-only inside the menu */
      .mobile-cta { display: block; }
      .mobile-cta .mobile-cta-text { display: none; }
      .mobile-cta .mobile-cta-icon { font-size: 18px; margin-right: 0; }
      /* hide desktop CTA on small screens */
      .nav-inner > a.btn-nav { display: none; }
      .cta-inner { flex-direction: column; text-align: center; }
      .cta-text p.sub { max-width: 100%; }
    }
    @media (max-width: 640px) {
      section { padding: 70px 0; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .how-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-col ul { text-align: left; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .proof-inner { grid-template-columns: 1fr; }
      .btn-nav { font-color:var(--dark) }
    }
    @media (max-width: 440px) {
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
    }
  
@media (min-width:901px){
  .nav-toggle{display:none!important;}
}

@media (max-width: 640px) {
    .hero-btns { flex-wrap: wrap; }
}


