/* ============================================================
   MANTOSH SECURITY FORCE — style.css
   Version: 2.0 (Latest — fully updated)
   Website: mantosecurity.com
   Last updated: March 2026
   ============================================================ */

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --gold: #C9A84C; --gold-light: #E2C27D;
      --gold-dim: rgba(201,168,76,0.15); --gold-border: rgba(201,168,76,0.2);
      --black: #080808; --black-soft: #0F0F0F; --black-card: #131313;
      --white: #FFFFFF; --white-dim: rgba(255,255,255,0.65); --white-faint: rgba(255,255,255,0.08);
      --font-display: 'Cormorant Garamond', serif; --font-body: 'Inter', sans-serif;
      --nav-height: 72px; --container: 1200px;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.035; pointer-events: none; z-index: 9999; }
    a { text-decoration: none; }
    img { max-width: 100%; display: block; }
    section, #stats-strip { scroll-margin-top: var(--nav-height); }

    /* BUTTONS */
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--gold); color: var(--black); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold); cursor: pointer; position: relative; overflow: hidden; transition: color 0.35s ease; }
    .btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--black); transform: translateX(-101%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary:hover { color: var(--gold); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: transparent; color: var(--white); font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); transition: border-color 0.3s, color 0.3s; }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

    /* SECTION REUSABLES */
    .section-eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; }
    .section-eyebrow.eyebrow-tight { margin-bottom: 0.5rem; }
    .section-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); opacity: 0.6; }
    .section-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.15; color: var(--white); margin-bottom: 1.2rem; }
    .section-title em { font-style: italic; color: var(--gold-light); }

    /* NAVBAR */
    #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 5%; height: var(--nav-height); display: flex; align-items: center; transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease; }
    #navbar.scrolled { background: rgba(8,8,8,0.93); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--gold-border); }
    nav { width: 100%; display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-icon { width: 36px; height: 36px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .nav-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; color: var(--white); line-height: 1.2; }
    .nav-brand span { display: block; font-size: 0.58rem; font-family: var(--font-body); font-weight: 300; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
    .nav-links a { font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.3s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { padding: 9px 22px !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; letter-spacing: 0.1em !important; transition: background 0.3s, color 0.3s !important; }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
    .mobile-menu { position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(8,8,8,0.97); backdrop-filter: blur(20px); z-index: 999; padding: 2rem 5%; transform: translateY(-110%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); border-bottom: 1px solid var(--gold-dim); }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu ul { list-style: none; }
    .mobile-menu ul li { border-bottom: 1px solid var(--white-faint); }
    .mobile-menu ul li a { display: block; padding: 1rem 0; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.3s, padding-left 0.3s; }
    .mobile-menu ul li a:hover { color: var(--gold); padding-left: 8px; }

    /* HERO */
    #hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 0 5%; }
    .hero-bg { position: absolute; inset: 0; background-image: url('../images/hero.jpg'); background-size: cover; background-position: center 30%; transform: scale(1.08); animation: heroZoom 12s ease-out forwards; }
    @keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
    .hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.55) 35%, rgba(8,8,8,0.82) 75%, rgba(8,8,8,1.0) 100%); }
    .hero-overlay-2 { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.65) 100%); }
    .hero-accent-line { position: absolute; top: 0; right: 18%; width: 1px; height: 0; background: linear-gradient(to bottom, transparent, var(--gold), transparent); animation: lineGrow 1.8s ease 0.5s forwards; }
    @keyframes lineGrow { to { height: 100%; } }
    .hero-corner { position: absolute; width: 40px; height: 40px; opacity: 0; animation: fadeIn 0.8s ease 2s forwards; }
    .hero-corner.tl { top: 100px; left: 5%; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
    .hero-corner.tr { top: 100px; right: 5%; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
    .hero-corner.bl { bottom: 140px; left: 5%; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
    .hero-corner.br { bottom: 140px; right: 5%; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
    .hero-content { position: relative; z-index: 10; text-align: center; max-width: 900px; width: 100%; }
    .hero-eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; transform: translateY(16px); animation: slideUp 0.8s ease 0.6s forwards; display: flex; align-items: center; justify-content: center; gap: 12px; }
    .hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
    .hero-title { font-family: var(--font-display); font-weight: 300; line-height: 1.0; letter-spacing: -0.01em; color: var(--white); margin-bottom: 0.3rem; }
    .hero-title .line-1 { display: block; font-size: clamp(3rem,9vw,8rem); opacity: 0; transform: translateY(30px); animation: slideUp 1s ease 0.9s forwards; }
    .hero-title .line-2 { display: block; font-size: clamp(3rem,9vw,8rem); opacity: 0; transform: translateY(30px); animation: slideUp 1s ease 1.1s forwards; }
    .hero-tagline { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.3rem,3.5vw,2.6rem); color: var(--gold-light); letter-spacing: 0.03em; margin-bottom: 2rem; opacity: 0; transform: translateY(20px); animation: slideUp 1s ease 1.3s forwards; }
    .hero-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0 auto 1.8rem; opacity: 0; animation: fadeIn 0.8s ease 1.5s forwards; }
    .hero-subtitle { font-family: var(--font-body); font-size: clamp(0.88rem,1.5vw,1.05rem); font-weight: 300; line-height: 1.85; color: var(--white-dim); max-width: 560px; margin: 0 auto 2.8rem; opacity: 0; transform: translateY(16px); animation: slideUp 0.8s ease 1.6s forwards; }
    .hero-actions { display: flex; gap: 1.2rem; justify-content: center; align-items: center; flex-wrap: wrap; opacity: 0; transform: translateY(16px); animation: slideUp 0.8s ease 1.8s forwards; }
    .hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 0.8s ease 2.4s forwards; cursor: pointer; text-decoration: none; }
    .hero-scroll span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white-dim); }
    .scroll-mouse { width: 22px; height: 34px; border: 1px solid rgba(255,255,255,0.3); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
    .scroll-wheel { width: 3px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrollWheel 1.8s ease infinite; }
    @keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

    /* STATS STRIP */
    #stats-strip { position: relative; z-index: 10; background: rgba(201,168,76,0.05); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); padding: 2.5rem 5%; }
    .stats-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .stat-item { text-align: center; position: relative; }
    .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: var(--gold-border); }
    .stat-number { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 600; color: var(--gold); line-height: 1; display: inline; }
    .stat-suffix { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.8rem); color: var(--gold); }
    .stat-label { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.5rem; }

    /* ═══════════════════════════════
       ABOUT SECTION — REDESIGNED
    ═══════════════════════════════ */
    #about {
      padding: 8rem 5%;
      background: var(--black-soft);
      position: relative;
      overflow: hidden;
    }

    /* Subtle gold glow top-right */
    #about::after {
      content: '';
      position: absolute;
      top: -150px; right: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-inner {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 6rem;
      align-items: start;
    }

    /* ── IMAGE COLUMN ── */
    .about-visual {
      position: relative;
      padding-bottom: 3rem;
    }

    /* Main image */
    .about-img-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center top;
      display: block;
      position: relative;
      z-index: 2;
      filter: grayscale(15%) contrast(1.08) brightness(0.95);
    }

    /* Gold offset border behind image */
    .about-visual::before {
      display: none;
    }

    /* Experience badge — anchored to image wrapper bottom-right */
    .about-badge {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 3;
      background: var(--gold);
      color: var(--black);
      width: 120px; height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .badge-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
      display: block;
    }

    .badge-text {
      font-family: var(--font-body);
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.4;
      display: block;
      margin-top: 4px;
      padding: 0 6px;
    }

    /* Trust badges row below image */
    .about-trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 1.5rem;
      border: 1px solid var(--gold-border);
    }

    .trust-badge {
      padding: 1rem 0.8rem;
      text-align: center;
      border-right: 1px solid var(--gold-border);
      position: relative;
    }

    .trust-badge:last-child { border-right: none; }

    .trust-badge-icon {
      font-size: 1.4rem;
      display: block;
      margin-bottom: 0.4rem;
    }

    .trust-badge-text {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-dim);
      line-height: 1.4;
      display: block;
    }

    .trust-badge-text strong {
      display: block;
      color: var(--gold);
      font-size: 0.68rem;
      margin-bottom: 2px;
    }

    /* ── CONTENT COLUMN ── */
    .about-content {}

    .about-text {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.95;
      color: var(--white-dim);
      margin-bottom: 1.3rem;
    }

    .about-text strong { color: var(--white); font-weight: 500; }

    /* Italic pull quote */
    .about-quote {
      border-left: 2px solid var(--gold);
      padding: 0.9rem 0 0.9rem 1.4rem;
      margin: 2rem 0 2.2rem;
      background: rgba(201,168,76,0.03);
    }

    .about-quote p {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--gold-light);
      line-height: 1.55;
    }

    /* Key differentiators grid */
    .about-differentiators {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .diff-item {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.05);
      border-left: 2px solid var(--gold-border);
      padding: 1rem 1.1rem;
      transition: border-color 0.3s, background 0.3s;
    }

    .diff-item:hover {
      border-left-color: var(--gold);
      background: rgba(201,168,76,0.04);
    }

    .diff-icon {
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .diff-title {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      display: block;
      margin-bottom: 0.3rem;
    }

    .diff-desc {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--white-dim);
    }

    /* CTA row */
    .about-cta-row {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--white-faint);
    }

    .about-cta-note {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.6;
    }

    .about-cta-note strong {
      display: block;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 6px;
      font-size: 0.82rem;
    }

    .cta-contact-line {
      display: block;
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--white-dim);
      letter-spacing: 0.02em;
      line-height: 1.9;
    }

    /* ══════════════════════════════════
       SERVICES SECTION
    ══════════════════════════════════ */
    #services {
      padding: 8rem 5%;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    /* Subtle gold radial top-left */
    #services::before {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .services-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--white-faint);
    }

    .services-header-left {}

    .services-header-right {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .services-intro {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--white-dim);
      margin-bottom: 1.5rem;
    }

    .services-count {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .services-count-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .services-count-text {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white-dim);
      line-height: 1.5;
    }

    /* Services grid — 3 columns */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--white-faint);
      border: 1px solid var(--white-faint);
    }

    .service-card {
      background: var(--black);
      padding: 2.2rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background 0.35s ease;
      cursor: default;
    }

    /* Gold top border reveal on hover */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }

    .service-card:hover { background: var(--black-card); }
    .service-card:hover::before { transform: scaleX(1); }

    /* Card number */
    .service-num {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--gold-border);
      letter-spacing: 0.15em;
      display: block;
      margin-bottom: 1.2rem;
      transition: color 0.3s;
    }

    .service-card:hover .service-num { color: var(--gold); }

    /* Card icon */
    .service-icon-wrap {
      width: 44px;
      height: 44px;
      border: 1px solid var(--gold-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
      font-size: 1.2rem;
      transition: border-color 0.3s, background 0.3s;
    }

    .service-card:hover .service-icon-wrap {
      border-color: var(--gold);
      background: var(--gold-dim);
    }

    /* Card title */
    .service-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.9rem;
      transition: color 0.3s;
    }

    .service-card:hover .service-title { color: var(--gold-light); }

    /* Card description */
    .service-desc {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--white-dim);
    }

    /* Card key points */
    .service-points {
      list-style: none;
      margin-top: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .service-points li {
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 300;
      color: var(--white-dim);
      padding-left: 1rem;
      position: relative;
      line-height: 1.5;
      transition: color 0.3s;
    }

    .service-points li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold-border);
      font-size: 0.65rem;
    }

    .service-card:hover .service-points li { color: var(--white-dim); }
    .service-card:hover .service-points li::before { color: var(--gold); }

    /* Services responsive */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 540px) {
      #services { padding: 6rem 5%; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 1.8rem 1.5rem; }
    }

    /* Services responsive */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 540px) {
      #services { padding: 6rem 5%; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 1.8rem 1.5rem; }
    }

    /* ══════════════════════════════════
       SECTORS SECTION
    ══════════════════════════════════ */
    #sectors {
      padding: 8rem 5%;
      background: var(--black-soft);
      position: relative;
      overflow: hidden;
    }

    #sectors::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .sectors-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .sectors-header {
      max-width: 600px;
      margin-bottom: 5rem;
    }

    /* Numbered list layout */
    .sectors-list {
      display: flex;
      flex-direction: column;
    }

    .sector-item {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      align-items: center;
      gap: 2rem;
      padding: 2rem 0;
      border-bottom: 1px solid var(--white-faint);
      position: relative;
      cursor: default;
      transition: border-color 0.3s ease;
    }

    .sector-item:first-child {
      border-top: 1px solid var(--white-faint);
    }

    /* Gold line expand on hover */
    .sector-item::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    }

    .sector-item:hover::after { width: 100%; }

    /* Number */
    .sector-num {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 400;
      color: var(--gold-border);
      letter-spacing: 0.12em;
      transition: color 0.3s;
      flex-shrink: 0;
    }

    .sector-item:hover .sector-num { color: var(--gold); }

    /* Main content */
    .sector-body {}

    .sector-name {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }

    .sector-item:hover .sector-name { color: var(--gold-light); }

    .sector-desc {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--white-dim);
      max-width: 580px;
      transition: color 0.4s;
    }

    .sector-item:hover .sector-desc { color: var(--white-dim); }

    /* Right — icon */
    .sector-icon {
      font-size: 1.4rem;
      opacity: 0.2;
      transition: opacity 0.3s, transform 0.3s;
      flex-shrink: 0;
    }

    .sector-item:hover .sector-icon {
      opacity: 1;
      transform: scale(1.1);
    }

    /* Sectors responsive */
    @media (max-width: 768px) {
      #sectors { padding: 6rem 5%; }
      .sector-item { grid-template-columns: 48px 1fr; gap: 1.2rem; }
      .sector-icon { display: none; }
      .sector-name { font-size: 1.2rem; }
    }

    @media (max-width: 480px) {
      .sectors-header { margin-bottom: 3rem; }
      .sector-item { padding: 1.5rem 0; }
    }

    /* ══════════════════════════════════
       TRAINING SECTION
    ══════════════════════════════════ */
    #training {
      padding: 8rem 5%;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    #training::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .training-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .training-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 6rem;
    }

    .training-header .section-eyebrow {
      justify-content: center;
    }

    .training-header .section-eyebrow::before {
      display: none;
    }

    .training-header-sub {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--white-dim);
      margin-top: 1rem;
    }

    /* ── Timeline wrapper ── */
    .training-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Gold vertical spine */
    .training-timeline::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 0%,
        var(--gold-border) 8%,
        var(--gold-border) 92%,
        transparent 100%
      );
      z-index: 0;
    }

    /* ── Each phase row ── */
    .training-phase {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      gap: 0;
      align-items: start;
      margin-bottom: 0;
      position: relative;
    }

    /* Left card — odd phases */
    .phase-left {
      padding: 0 3rem 3.5rem 0;
      text-align: right;
    }

    /* Right card — even phases */
    .phase-right {
      padding: 0 0 3.5rem 3rem;
      text-align: left;
    }

    /* Empty side */
    .phase-empty {
      padding-bottom: 3.5rem;
    }

    /* Center node */
    .phase-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: relative;
      z-index: 2;
      padding-top: 4px;
    }

    .phase-dot {
      width: 14px;
      height: 14px;
      border: 1px solid var(--gold-border);
      background: var(--black);
      transform: rotate(45deg);
      transition: background 0.3s, border-color 0.3s;
      flex-shrink: 0;
    }

    /* Phase card content */
    .phase-card {
      display: inline-block;
    }

    .phase-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-border);
      display: block;
      margin-bottom: 0.6rem;
      transition: color 0.3s;
    }

    .phase-title {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.55rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.7rem;
      transition: color 0.3s;
    }

    .phase-desc {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--white-dim);
      transition: color 0.4s;
      max-width: 340px;
    }

    /* Left card — align desc right */
    .phase-left .phase-desc {
      margin-left: auto;
    }

    /* Hover effects on phase rows */
    .training-phase:hover .phase-dot {
      background: var(--gold);
      border-color: var(--gold);
    }

    .training-phase:hover .phase-label { color: var(--gold); }
    .training-phase:hover .phase-title { color: var(--gold-light); }
    .training-phase:hover .phase-desc  { color: var(--white-dim); }

    /* Thin gold underline on hovered title */
    .phase-title {
      position: relative;
      display: inline-block;
    }

    .phase-title::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
    }

    .phase-left .phase-title::after {
      left: auto; right: 0;
    }

    .training-phase:hover .phase-title::after { width: 100%; }

    /* Training responsive */
    @media (max-width: 860px) {
      .training-timeline::before { left: 20px; transform: none; }

      .training-phase {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto;
      }

      .phase-left {
        display: none;
      }

      .phase-node {
        grid-column: 1;
        grid-row: 1;
      }

      .phase-right,
      .phase-empty-right {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 2.5rem 1.5rem;
        text-align: left;
      }

      /* For left-side phases on mobile, show content in right slot */
      .phase-mobile-show {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 2.5rem 1.5rem;
        text-align: left;
        display: block !important;
      }

      .phase-mobile-show .phase-desc { margin-left: 0; }
      .phase-mobile-show .phase-title::after { left: 0; right: auto; }
    }

    @media (max-width: 480px) {
      #training { padding: 6rem 5%; }
      .training-header { margin-bottom: 3.5rem; }
      .phase-title { font-size: 1.1rem; }
    }

    /* ══════════════════════════════════
       CLIENTS SECTION
    ══════════════════════════════════ */
    #clients {
      padding: 8rem 5%;
      background: var(--black-soft);
      position: relative;
      overflow: hidden;
    }

    #clients::before {
      content: '';
      position: absolute;
      bottom: -100px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .clients-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    /* ── Featured testimonial ── */
    .clients-testimonial-main {
      position: relative;
      padding: 4rem 5rem;
      border: 1px solid var(--gold-border);
      margin-bottom: 5rem;
      background: rgba(201,168,76,0.02);
    }

    /* Large opening quote mark */
    .clients-testimonial-main::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 10rem;
      line-height: 0.6;
      color: var(--gold);
      opacity: 0.12;
      position: absolute;
      top: 2.5rem;
      left: 3rem;
      pointer-events: none;
    }

    .testimonial-quote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.55;
      position: relative;
      z-index: 1;
      margin-bottom: 2rem;
      max-width: 820px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .testimonial-author-line {
      width: 32px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .testimonial-author-info {}

    .testimonial-name {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      display: block;
    }

    .testimonial-role {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--gold);
      display: block;
      margin-top: 2px;
    }

    /* ── Client categories ── */
    .clients-grid-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--white-faint);
      gap: 2rem;
      flex-wrap: wrap;
    }

    .clients-total {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .clients-total-label {
      font-family: var(--font-body);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-dim);
      display: block;
      margin-top: 0.3rem;
    }

    /* Category blocks */
    .clients-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--white-faint);
      margin-bottom: 4rem;
    }

    .client-category {
      padding: 2rem 1.8rem;
      border-right: 1px solid var(--white-faint);
      border-bottom: 1px solid var(--white-faint);
      transition: background 0.3s;
    }

    .client-category:hover { background: rgba(201,168,76,0.03); }

    /* Remove right border on last in each row */
    .client-category:nth-child(3n) { border-right: none; }

    /* Remove bottom border on last row */
    .client-category:nth-last-child(-n+3) { border-bottom: none; }

    .category-label {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 1.2rem;
    }

    .category-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold-border);
    }

    .category-clients {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .category-clients li {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.4;
      padding-left: 0.9rem;
      position: relative;
      transition: color 0.3s, padding-left 0.3s;
    }

    .category-clients li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 3px;
      height: 3px;
      background: var(--gold-border);
      border-radius: 50%;
      transition: background 0.3s;
    }

    .client-category:hover .category-clients li { color: rgba(255,255,255,0.8); }
    .client-category:hover .category-clients li::before { background: var(--gold); }

    /* ── Secondary testimonial ── */
    .clients-testimonial-secondary {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--white-faint);
    }

    .testimonial-secondary-quote {
      padding: 2.5rem 3rem;
      border-right: 1px solid var(--white-faint);
      position: relative;
    }

    .testimonial-secondary-quote::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 5rem;
      line-height: 0.5;
      color: var(--gold);
      opacity: 0.1;
      position: absolute;
      top: 2rem; left: 1.8rem;
    }

    .testimonial-secondary-quote p {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.65;
      position: relative;
      z-index: 1;
      margin-bottom: 1.5rem;
    }

    /* Stats side */
    .testimonial-secondary-stats {
      padding: 2.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.8rem;
      background: rgba(201,168,76,0.02);
    }

    .t-stat {
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
    }

    .t-stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .t-stat-text {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-dim);
      line-height: 1.4;
    }

    /* Clients responsive */
    @media (max-width: 900px) {
      .clients-testimonial-main { padding: 2.5rem 2.5rem; }
      .clients-categories { grid-template-columns: repeat(2, 1fr); }
      .client-category:nth-child(3n) { border-right: 1px solid var(--white-faint); }
      .client-category:nth-child(2n) { border-right: none; }
      .client-category:nth-last-child(-n+3) { border-bottom: 1px solid var(--white-faint); }
      .client-category:nth-last-child(-n+2) { border-bottom: none; }
      .clients-testimonial-secondary { grid-template-columns: 1fr; }
      .testimonial-secondary-quote { border-right: none; border-bottom: 1px solid var(--white-faint); }
    }

    @media (max-width: 600px) {
      #clients { padding: 6rem 5%; }
      .clients-testimonial-main { padding: 2rem 1.8rem; }
      .clients-testimonial-main::before { font-size: 6rem; top: 1.5rem; left: 1.5rem; }
      .clients-categories { grid-template-columns: 1fr; }
      .client-category { border-right: none !important; }
      .client-category:nth-last-child(-n+2) { border-bottom: 1px solid var(--white-faint); }
      .client-category:last-child { border-bottom: none; }
      .testimonial-secondary-quote { padding: 2rem 1.8rem; }
      .testimonial-secondary-stats { padding: 2rem 1.8rem; }
    }

    /* ══════════════════════════════════
       CONTACT SECTION
    ══════════════════════════════════ */
    #contact {
      padding: 8rem 5%;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .contact-header {
      margin-bottom: 4rem;
    }

    /* Two column layout */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 6rem;
      align-items: start;
    }

    /* ── FORM SIDE ── */
    .contact-form-wrap {}

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Row with two fields side by side */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    /* Each field group */
    .form-group {
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    /* Remove right border on last in row */
    .form-group:last-child,
    .form-group.full-width {
      border-right: none;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    /* Label */
    .form-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 1.2rem 1.4rem 0;
      transition: color 0.3s;
    }

    /* Input / Select / Textarea */
    .form-input,
    .form-select,
    .form-textarea {
      display: block;
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--white);
      padding: 0.5rem 1.4rem 1.2rem;
      transition: background 0.3s;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1.4rem center;
      padding-right: 3rem;
    }

    .form-select option {
      background: var(--black-card);
      color: var(--white);
    }

    /* ── Phone field with country code ── */
    .phone-field {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--gold-border);
    }

    .phone-code {
      background: var(--black-card);
      border: none;
      border-right: 1px solid var(--gold-border);
      outline: none;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 400;
      padding: 0.5rem 0.6rem 1.2rem;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      min-width: 90px;
      flex-shrink: 0;
    }

    .phone-code option { background: var(--black-card); }

    .phone-input {
      flex: 1;
      border-bottom: none !important;
    }

    /* Override form-group border for phone since phone-field handles it */
    .form-group:has(.phone-field) {
      border-bottom: none;
    }

    /* ── Date picker styling ── */
    .date-input {
      color-scheme: dark;
      cursor: pointer;
    }

    .date-input::-webkit-calendar-picker-indicator {
      filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
      cursor: pointer;
      opacity: 0.8;
    }

    .form-textarea {
      resize: none;
      height: 130px;
      line-height: 1.7;
    }

    /* Focus state — gold top line reveal */
    .form-group::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.4s ease;
    }

    .form-group:focus-within::after { width: 100%; }
    .form-group:focus-within { background: rgba(201,168,76,0.02); }
    .form-group:focus-within .form-label { color: var(--gold-light); }

    /* Placeholder */
    .form-input::placeholder,
    .form-textarea::placeholder { color: rgba(255,255,255,0.2); font-weight: 300; }

    /* Submit button */
    .form-submit-row {
      padding-top: 2rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .form-submit-note {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(255,255,255,0.3);
      line-height: 1.6;
    }

    /* Form status messages */
    .form-status {
      display: none;
      padding: 1rem 1.4rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 300;
      border-left: 2px solid var(--gold);
      background: rgba(201,168,76,0.05);
      color: var(--white-dim);
      margin-top: 1rem;
    }

    .form-status.success { display: block; border-color: #4caf50; background: rgba(76,175,80,0.05); }
    .form-status.error   { display: block; border-color: #e57373; background: rgba(229,115,115,0.05); }

    /* ── CONTACT INFO SIDE ── */
    .contact-info {
      padding-top: 0.5rem;
    }

    .contact-info-intro {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--white-dim);
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--white-faint);
    }

    /* Contact detail items */
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-detail-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 1.2rem;
      align-items: start;
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--white-faint);
      transition: background 0.3s;
    }

    .contact-detail-item:first-child { border-top: 1px solid var(--white-faint); }

    .contact-detail-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--gold-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: border-color 0.3s, background 0.3s;
    }

    .contact-detail-item:hover .contact-detail-icon {
      border-color: var(--gold);
      background: var(--gold-dim);
    }

    .contact-detail-label {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.35rem;
    }

    .contact-detail-value {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.6;
      display: block;
      text-decoration: none;
      transition: color 0.3s;
    }

    a.contact-detail-value:hover { color: var(--gold); }

    .contact-detail-sub {
      font-size: 0.75rem;
      color: var(--white-dim);
      display: block;
      margin-top: 2px;
    }

    /* Response time badge */
    .contact-response-badge {
      margin-top: 2.5rem;
      padding: 1.4rem 1.8rem;
      border: 1px solid var(--gold-border);
      background: rgba(201,168,76,0.03);
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .badge-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(201,168,76,0.5);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.3); }
    }

    .badge-text-wrap {}
    .badge-title {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--white);
      display: block;
      letter-spacing: 0.05em;
    }
    .badge-sub {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 300;
      color: var(--white-dim);
      display: block;
      margin-top: 2px;
    }

    /* Office cards */
    .office-cards {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 2rem;
    }

    .office-card {
      border: 1px solid var(--white-faint);
      border-bottom: none;
      padding: 1.4rem 1.6rem;
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 1rem;
      align-items: start;
      transition: background 0.3s, border-color 0.3s;
      position: relative;
    }

    .office-card:last-child { border-bottom: 1px solid var(--white-faint); }

    /* Gold left accent on hover */
    .office-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    .office-card:hover { background: rgba(201,168,76,0.03); border-color: var(--gold-border); }
    .office-card:hover::before { transform: scaleY(1); }

    .office-card-icon {
      width: 36px; height: 36px;
      border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: border-color 0.3s, background 0.3s;
    }

    .office-card:hover .office-card-icon {
      border-color: var(--gold);
      background: var(--gold-dim);
    }

    .office-card-type {
      font-family: var(--font-body);
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.3rem;
    }

    .office-card-city {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--white);
      display: block;
      margin-bottom: 0.4rem;
    }

    .office-card-address {
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.65;
      display: block;
    }

    .office-card-phone {
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 400;
      color: var(--gold);
      text-decoration: none;
      display: block;
      margin-top: 0.5rem;
      letter-spacing: 0.03em;
      transition: color 0.3s;
    }

    .office-card-phone:hover { color: var(--gold-light); }

    /* Contact top strip — phone + email */
    .contact-top-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--gold-border);
      margin-bottom: 1.6rem;
      background: rgba(201,168,76,0.02);
    }

    .contact-top-item {
      padding: 1.1rem 1.4rem;
      border-right: 1px solid var(--gold-border);
    }

    .contact-top-item:last-child { border-right: none; }

    .contact-top-label {
      font-family: var(--font-body);
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.3rem;
    }

    .contact-top-value {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--white);
      text-decoration: none;
      display: block;
      transition: color 0.3s;
    }

    a.contact-top-value:hover { color: var(--gold); }

    /* Contact responsive */
    @media (max-width: 960px) {
      .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
      .contact-info { padding-top: 0; }
    }

    @media (max-width: 600px) {
      #contact { padding: 6rem 5%; }
      .form-row { grid-template-columns: 1fr; }
      .form-group { border-right: none; }
      .contact-header { margin-bottom: 2.5rem; }
    }

    /* REVEAL ANIMATION */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.22s; }
    .reveal-delay-3 { transition-delay: 0.34s; }
    .reveal-delay-4 { transition-delay: 0.46s; }

    /* FOOTER */
    #footer { background: var(--black-soft); border-top: 1px solid var(--white-faint); }
    .footer-inner { max-width: var(--container); margin: 0 auto; padding: 3rem 5% 2rem; border-top: 1px solid var(--white-faint); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--white-faint); }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
    .footer-logo-icon { width: 32px; height: 32px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
    .footer-brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); }
    .footer-brand-sub { display: block; font-size: 0.52rem; font-family: var(--font-body); font-weight: 300; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
    .footer-brand-desc { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; line-height: 1.8; color: var(--white-dim); max-width: 280px; }
    .footer-col-heading { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
    .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-contact-list { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-contact-item { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: var(--white-dim); text-decoration: none; transition: color 0.3s; }
    .footer-contact-item:hover { color: var(--gold); }
    .footer-email { word-break: break-all; }
    .footer-offices { font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; color: var(--white-dim); line-height: 1.7; margin-top: 0.3rem; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.06em; color: var(--white-dim); opacity: 0.5; }
    .footer-link { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: var(--white-dim); text-decoration: none; transition: color 0.3s; display: inline-block; }
    .footer-link:hover { color: var(--gold); }

    /* Footer mobile */
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
    }

    /* Phone field mobile */
    @media (max-width: 375px) {
      .phone-code { min-width: 75px; font-size: 0.75rem; }
      .phone-input { font-size: 0.82rem; }
    }

    /* ══════════════════════════════════
       PAGE LOADER
    ══════════════════════════════════ */
    #page-loader {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #page-loader.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      animation: loaderFadeIn 0.5s ease forwards;
    }

    .loader-shield {
      width: 52px; height: 52px;
      border: 1.5px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      animation: loaderPulse 1.5s ease infinite;
    }

    @keyframes loaderPulse {
      0%, 100% { border-color: var(--gold); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
      50% { border-color: var(--gold-light); box-shadow: 0 0 0 8px rgba(201,168,76,0.08); }
    }

    .loader-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.05em;
      text-align: center;
    }

    .loader-tagline {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .loader-bar-wrap {
      width: 160px;
      height: 1px;
      background: rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
    }

    .loader-bar {
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      animation: loaderBar 1.2s ease 0.3s forwards;
    }

    @keyframes loaderBar { to { left: 100%; } }
    @keyframes loaderFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* ══════════════════════════════════
       BACK TO TOP BUTTON
    ══════════════════════════════════ */
    #back-to-top {
      position: fixed;
      bottom: 7rem;
      right: 2rem;
      width: 42px; height: 42px;
      background: var(--black-soft);
      border: 1px solid var(--gold-border);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 900;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s, border-color 0.3s;
      font-size: 0.9rem;
    }

    #back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    #back-to-top:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
    }

    /* ══════════════════════════════════
       WHATSAPP FLOAT BUTTON
    ══════════════════════════════════ */
    #whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 52px; height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 900;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
      animation: waBounce 2.5s ease 3s infinite;
    }

    #whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
      animation: none;
    }

    #whatsapp-float svg {
      width: 26px; height: 26px;
      fill: white;
    }

    @keyframes waBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* ══════════════════════════════════
       POPUP MODAL
    ══════════════════════════════════ */
    #popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      z-index: 99998;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      animation: popupFadeIn 0.25s ease;
      display: none;
    }

    #popup-overlay.show {
      display: flex;
    }

    #popup-box {
      background: var(--black-card);
      border: 1px solid var(--gold-border);
      padding: 2.5rem 2rem;
      max-width: 380px;
      width: 90%;
      text-align: center;
      animation: popupSlideUp 0.3s ease;
    }

    #popup-icon {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      line-height: 1;
    }

    #popup-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.6rem;
    }

    #popup-msg {
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: var(--white-dim);
      line-height: 1.7;
      margin-bottom: 1.6rem;
    }

    #popup-close {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 0.7rem 2.5rem;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s;
    }

    #popup-close:hover { background: var(--gold-light); }

    @keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes popupSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    /* ── Active nav link ── */
    .nav-links a.nav-active {
      color: var(--white) !important;
    }
    .nav-links a.nav-active::after {
      width: 100% !important;
    }

    /* KEYFRAMES */
    @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn  { to { opacity: 1; } }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .about-inner { gap: 4rem; }
    }

    @media (max-width: 900px) {
      .nav-links { gap: 1.8rem; }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-visual { padding-bottom: 2.5rem; }
      .about-img-main { height: 400px; }
      .about-visual::before { display: none; }
      .about-badge { right: 0; bottom: 8px; }
    }

    @media (max-width: 768px) {
      :root { --nav-height: 64px; }
      section, #stats-strip { scroll-margin-top: 64px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-corner, .hero-accent-line { display: none; }
      .stats-inner { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
      .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
      .about-differentiators { grid-template-columns: 1fr; }
      .about-cta-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    }

    @media (max-width: 480px) {
      #navbar { padding: 0 4%; }
      .nav-brand { font-size: 0.9rem; }
      .hero-actions { flex-direction: column; width: 100%; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      #about { padding: 6rem 5%; }
      .about-img-main { height: 260px; }
      .about-badge { width: 95px; height: 95px; }
      .badge-number { font-size: 2rem; }
      .about-trust-row { grid-template-columns: 1fr 1fr; }
      .trust-badge:nth-child(2) { border-right: none; }
      .trust-badge:nth-child(3) { border-top: 1px solid var(--gold-border); grid-column: 1 / -1; }
    }
