
  :root{
    --navy-deep:#0E1B33;
    --navy-mid:#16294A;
    --navy-line:#2A3F63;
    --gold:#C6A15B;
    --gold-soft:#E4CFA0;
    --paper:#F6F3EC;
    --slate:#3E4A5E;
    --white:#FFFFFF;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--paper);
    color:var(--slate);
    overflow-x:hidden;
  }
  h1,h2,h3,.serif{ font-family:'Fraunces', serif; }
  a{text-decoration:none; color:inherit;}

  /* ---- Nav ---- */
  nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 6%;
    background:rgba(14,27,51,0.0);
    transition:background .3s ease, padding .3s ease, box-shadow .3s ease;
  }
  nav.scrolled{
    background:rgba(14,27,51,0.92);
    padding:14px 6%;
    box-shadow:0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter:blur(6px);
  }
  .logo{ font-size:1.35rem; font-weight:600; color:var(--white); letter-spacing:.2px; }
  .logo span{ color:var(--gold); }
  .nav-links{ display:flex; gap:34px; }
  .nav-links a{ color:#D9DEE8; font-size:.95rem; font-weight:500; transition:color .2s; }
  .nav-links a:hover{ color:var(--gold); }
  .nav-cta{
    background:var(--gold); color:var(--navy-deep); padding:10px 22px;
    border-radius:2px; font-weight:600; font-size:.9rem;
  }
  .burger{ display:none; color:var(--white); font-size:1.6rem; cursor:pointer; }

  /* ---- Hero ---- */
  .hero{
    min-height:100vh;
    background:linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    display:flex; align-items:center;
    padding:120px 6% 80px;
    position:relative;
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;
    width:100%; max-width:1280px; margin:0 auto; position:relative; z-index:2;
  }
  .eyebrow{ color:var(--gold); font-size:.85rem; font-weight:600; margin-bottom:18px; }
  .hero h1{
    font-size:clamp(2.2rem, 4.2vw, 3.6rem);
    color:var(--white); line-height:1.12; font-weight:600;
    max-width:11ch;
  }
  .hero p{
    color:#B9C2D4; font-size:1.08rem; line-height:1.65; margin-top:22px; max-width:46ch;
  }
  .hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
  .btn-primary{
    background:var(--gold); color:var(--navy-deep); padding:14px 28px;
    border-radius:2px; font-weight:600; font-size:.95rem; display:inline-block;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(198,161,91,0.3); }
  .btn-ghost{
    border:1px solid var(--navy-line); color:var(--white); padding:14px 28px;
    border-radius:2px; font-weight:500; font-size:.95rem;
  }
  .btn-ghost:hover{ border-color:var(--gold); color:var(--gold); }

  .hero-visual{
    position:relative; height:420px; border:1px solid var(--navy-line);
    display:flex; align-items:center; justify-content:center;
    background:var(--navy-mid);
  }
  .hero-visual svg{ width:70%; height:auto; }

  .stat-row{
    display:flex; gap:40px; margin-top:56px; padding-top:32px;
    border-top:1px solid var(--navy-line); max-width:640px;
  }
  .stat-num{ color:var(--gold); font-size:1.7rem; font-weight:600; font-family:'Fraunces',serif; }
  .stat-label{ color:#96A2B8; font-size:.82rem; margin-top:4px; }

  /* ---- Running track (desktop side rail) ---- */
  .runner-rail{
    position:fixed; right:26px; top:0; bottom:0; width:2px;
    background:rgba(255,255,255,0.08); z-index:90;
    display:block;
  }
  .runner-rail-fill{
    position:absolute; top:0; left:0; width:100%; background:var(--gold);
    height:0%;
  }
  .runner-icon{
    position:fixed; right:14px; top:0; z-index:91;
    width:28px; height:28px; transform:translateY(0);
  }
  .runner-icon svg{ width:100%; height:100%; }
  .leg{ transform-origin:center; animation:run .5s infinite ease-in-out alternate; }
  .leg2{ animation-delay:.25s; }
  @keyframes run{ from{ transform:rotate(-18deg);} to{ transform:rotate(18deg);} }

  /* ---- Section shell ---- */
  section{ padding:100px 6%; }
  .section-inner{ max-width:1280px; margin:0 auto; }
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head .eyebrow{ color:#A8843D; }
  .section-head h2{ font-size:clamp(1.8rem,3vw,2.6rem); color:var(--navy-deep); font-weight:600; line-height:1.2; }
  .section-head p{ margin-top:16px; font-size:1.02rem; line-height:1.6; color:var(--slate); }

  /* ---- Services ---- */
  .services-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
    background:var(--navy-line);
    border:1px solid var(--navy-line);
  }
  .service-card{
    background:var(--white); padding:38px 30px; position:relative;
    transition:background .25s ease;
  }
  .service-card:hover{ background:#FBF9F4; }
  .service-num{ font-family:'Fraunces',serif; color:var(--gold-soft); font-size:2.2rem; font-weight:600; }
  .service-card h3{ color:var(--navy-deep); font-size:1.15rem; margin-top:14px; font-weight:600; }
  .service-card p{ margin-top:10px; font-size:.92rem; line-height:1.55; color:#5B6579; }
  .service-tag{
    display:inline-block; margin-top:16px; font-size:.75rem; font-weight:600;
    color:var(--gold); border:1px solid var(--gold-soft); padding:4px 10px; border-radius:2px;
  }

  /* ---- Partners ---- */
  .partners{ background:var(--navy-deep); }
  .partners .section-head h2{ color:var(--white); }
  .partners .section-head p{ color:#B9C2D4; }
  .partners .section-head .eyebrow{ color:var(--gold); }
  .partner-row{ display:flex; gap:24px; flex-wrap:wrap; }
  .partner-card{
    flex:1; min-width:260px; background:var(--navy-mid); border:1px solid var(--navy-line);
    padding:32px; border-radius:2px;
  }
  .partner-card .p-name{ color:var(--white); font-size:1.2rem; font-weight:600; font-family:'Fraunces',serif; }
  .partner-card .p-url{ color:var(--gold); font-size:.9rem; margin-top:6px; display:block; }
  .partner-card p{ color:#AEB8CB; margin-top:14px; font-size:.92rem; line-height:1.6; }
  .verified{
    display:inline-flex; align-items:center; gap:6px; margin-top:18px;
    font-size:.78rem; color:#8FE3B0; font-weight:600;
  }

  /* ---- Process ---- */
  .process{ background:var(--paper); }
  .process-list{ display:flex; flex-direction:column; }
  .process-item{
    display:grid; grid-template-columns:70px 1fr; gap:28px;
    padding:30px 0; border-top:1px solid #DDD7C8;
  }
  .process-item:last-child{ border-bottom:1px solid #DDD7C8; }
  .process-item .p-index{ font-family:'Fraunces',serif; font-size:1.6rem; color:var(--gold); font-weight:600; }
  .process-item h3{ color:var(--navy-deep); font-size:1.1rem; font-weight:600; }
  .process-item p{ margin-top:6px; font-size:.93rem; color:#5B6579; max-width:60ch; }

  /* ---- Contact ---- */
  .contact{ background:var(--navy-mid); }
  .contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; }
  .contact-info h2{ color:var(--white); font-size:clamp(1.8rem,3vw,2.4rem); font-weight:600; }
  .contact-info p{ color:#B9C2D4; margin-top:16px; line-height:1.65; max-width:44ch; }
  .contact-info .detail{ margin-top:28px; }
  .contact-info .detail-label{ color:var(--gold); font-size:.8rem; font-weight:600; }
  .contact-info .detail-val{ color:var(--white); font-size:1rem; margin-top:4px; }

  form{ display:flex; flex-direction:column; gap:16px; }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  input, select, textarea{
    background:var(--navy-deep); border:1px solid var(--navy-line); color:var(--white);
    padding:14px 16px; font-family:'Inter',sans-serif; font-size:.92rem; border-radius:2px;
    width:100%;
  }
  input::placeholder, textarea::placeholder{ color:#7C879C; }
  input:focus, select:focus, textarea:focus{ outline:none; border-color:var(--gold); }
  textarea{ resize:vertical; min-height:110px; }
  .submit-btn{
    background:var(--gold); color:var(--navy-deep); padding:15px 24px; font-weight:600;
    border:none; border-radius:2px; cursor:pointer; font-size:.95rem; margin-top:6px;
  }
  .form-note{ color:#7C879C; font-size:.78rem; margin-top:4px; }

  /* ---- Footer ---- */
  footer{ background:var(--navy-deep); padding:40px 6%; border-top:1px solid var(--navy-line); }
  .footer-row{ display:flex; justify-content:space-between; align-items:center; max-width:1280px; margin:0 auto; flex-wrap:wrap; gap:16px; }
  footer .logo{ font-size:1.1rem; }
  .footer-links{ display:flex; gap:24px; }
  .footer-links a{ color:#96A2B8; font-size:.85rem; }
  .footer-links a:hover{ color:var(--gold); }

  /* ---- Globe / coverage ---- */
  .globe-section{
    background:var(--navy-deep); padding:110px 6%; position:relative; overflow:hidden;
  }
  .globe-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; max-width:1280px; margin:0 auto; }
  .globe-wrap{ position:relative; width:100%; max-width:460px; aspect-ratio:1/1; margin:0 auto; }
  .globe-sphere{
    width:100%; height:100%; border-radius:50%;
    background:radial-gradient(circle at 35% 30%, #1E3560, #0A1424 75%);
    box-shadow:0 0 80px rgba(198,161,91,0.15), inset -20px -20px 60px rgba(0,0,0,0.5);
    position:relative; overflow:hidden;
  }
  .globe-lines{
    position:absolute; inset:0; border-radius:50%;
    background-image:
      repeating-linear-gradient(0deg, transparent 0 11%, rgba(198,161,91,0.18) 11% 11.5%),
      repeating-linear-gradient(90deg, transparent 0 11%, rgba(198,161,91,0.1) 11% 11.5%);
    animation:spinGlobe 22s linear infinite;
    mix-blend-mode:screen;
  }
  @keyframes spinGlobe{ from{ background-position:0 0, 0 0; } to{ background-position:460px 0, 0 460px; } }
  .globe-dot{
    position:absolute; width:9px; height:9px; border-radius:50%; background:var(--gold);
    box-shadow:0 0 0 0 rgba(198,161,91,0.6); animation:pulseDot 2.4s infinite;
  }
  @keyframes pulseDot{
    0%{ box-shadow:0 0 0 0 rgba(198,161,91,0.55); }
    70%{ box-shadow:0 0 0 14px rgba(198,161,91,0); }
    100%{ box-shadow:0 0 0 0 rgba(198,161,91,0); }
  }
  .globe-dot .dot-label{
    position:absolute; top:-26px; left:50%; transform:translateX(-50%);
    color:var(--gold-soft); font-size:.72rem; white-space:nowrap; font-weight:600;
  }
  .globe-copy h2{ color:var(--white); }
  .globe-copy p{ color:#B9C2D4; }
  .coverage-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
  .coverage-chip{
    border:1px solid var(--navy-line); color:#C7CEDC; font-size:.82rem;
    padding:7px 14px; border-radius:20px;
  }

  /* ---- Stats ---- */
  .stats-band{ background:var(--paper); padding:70px 6%; border-top:1px solid #E5DFCF; border-bottom:1px solid #E5DFCF; }
  .stats-grid{ max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
  .stat-block .big-num{ font-family:'Fraunces',serif; font-size:clamp(2.2rem,4vw,3rem); font-weight:600; color:var(--navy-deep); }
  .stat-block .big-num span{ color:var(--gold); }
  .stat-block .stat-caption{ margin-top:8px; font-size:.88rem; color:#5B6579; }

  /* ---- FAQ ---- */
  .faq-list{ max-width:820px; }
  .faq-item{ border-top:1px solid #DDD7C8; }
  .faq-item:last-child{ border-bottom:1px solid #DDD7C8; }
  .faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    padding:22px 0; display:flex; justify-content:space-between; align-items:center;
    font-family:'Inter',sans-serif; font-size:1rem; font-weight:600; color:var(--navy-deep);
  }
  .faq-q .plus{ color:var(--gold); font-size:1.3rem; transition:transform .25s ease; }
  .faq-item.open .plus{ transform:rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .faq-a p{ padding-bottom:22px; font-size:.93rem; line-height:1.6; color:#5B6579; max-width:65ch; }
  .faq-item.open .faq-a{ max-height:220px; }

  /* ---- Testimonial slider ---- */
  .testimonials{ background:var(--navy-mid); }
  .testimonials .section-head h2{ color:var(--white); }
  .testimonials .section-head p{ color:#B9C2D4; }
  .slider{ position:relative; max-width:760px; margin:0 auto; }
  .slide{
    display:none; background:var(--navy-deep); border:1px solid var(--navy-line);
    padding:40px; border-radius:2px;
  }
  .slide.active{ display:block; }
  .slide p.quote{ color:#DCE1EC; font-size:1.05rem; line-height:1.7; font-family:'Fraunces',serif; }
  .slide .who{ margin-top:20px; color:var(--gold); font-size:.9rem; font-weight:600; }
  .slide .loc{ color:#8892A6; font-size:.8rem; }
  .slider-dots{ display:flex; gap:8px; justify-content:center; margin-top:22px; }
  .slider-dots button{ width:8px; height:8px; border-radius:50%; border:none; background:var(--navy-line); cursor:pointer; }
  .slider-dots button.active{ background:var(--gold); width:22px; border-radius:4px; transition:all .2s; }

  /* ---- OTP form ---- */
  .otp-row{ display:flex; gap:12px; }
  .otp-row input{ flex:1; }
  .btn-otp{
    background:transparent; border:1px solid var(--gold); color:var(--gold);
    padding:0 18px; font-size:.85rem; font-weight:600; border-radius:2px; cursor:pointer; white-space:nowrap;
  }
  .btn-otp:hover{ background:var(--gold); color:var(--navy-deep); }
  .callback-note{ display:flex; gap:10px; align-items:flex-start; margin-top:4px; background:var(--navy-deep); border:1px solid var(--navy-line); padding:14px 16px; border-radius:2px; }
  .callback-note p{ color:#AEB8CB; font-size:.82rem; line-height:1.5; }

  @media (max-width:900px){
    .globe-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:1fr 1fr; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ height:280px; order:-1; }
    .services-grid{ grid-template-columns:1fr; }
    .contact-grid{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr; }
    .nav-links{ display:none; }
    .burger{ display:block; }
    .runner-rail, .runner-icon{ display:none; }
    .partner-row{ flex-direction:column; }
    footer .section-inner > div[style*="grid-template-columns:1.3fr"]{ grid-template-columns:1fr !important; gap:28px !important; }
  }

/* ================= PREMIUM MOTION LAYER ================= */

/* Scroll-reveal: elements start hidden, animate in when visible */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  will-change:opacity, transform;
}
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal.stagger-1{ transition-delay:.06s; }
.reveal.stagger-2{ transition-delay:.12s; }
.reveal.stagger-3{ transition-delay:.18s; }
.reveal.stagger-4{ transition-delay:.24s; }
.reveal.stagger-5{ transition-delay:.30s; }

/* Hero entrance (loads immediately, not scroll-linked) */
@keyframes heroIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-grid > div:first-child > *{
  opacity:0;
  animation:heroIn .8s cubic-bezier(.16,.84,.44,1) forwards;
}
.hero-grid > div:first-child > *:nth-child(1){ animation-delay:.05s; }
.hero-grid > div:first-child > *:nth-child(2){ animation-delay:.15s; }
.hero-grid > div:first-child > *:nth-child(3){ animation-delay:.25s; }
.hero-grid > div:first-child > *:nth-child(4){ animation-delay:.35s; }
.hero-grid > div:first-child > *:nth-child(5){ animation-delay:.45s; }
.hero-visual{
  opacity:0;
  animation:heroIn 1s cubic-bezier(.16,.84,.44,1) forwards;
  animation-delay:.2s;
}

/* Card hover lift + shadow (service cards, partner cards) */
.service-card, .svc-link-card{
  transition:transform .35s cubic-bezier(.16,.84,.44,1), box-shadow .35s ease, background .25s ease;
}
.service-card:hover, .svc-link-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(14,27,51,0.12);
  z-index:2;
  position:relative;
}
.partner-card{ transition:transform .35s cubic-bezier(.16,.84,.44,1), box-shadow .35s ease; }
.partner-card:hover{ transform:translateY(-4px); box-shadow:0 16px 36px rgba(0,0,0,0.25); }

/* Button micro-interactions */
.btn-primary, .nav-cta, .submit-btn{
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
}
.btn-primary:hover, .nav-cta:hover, .submit-btn:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 14px 28px rgba(198,161,91,0.35);
}
.btn-ghost{ transition:all .25s ease; }
.btn-ghost:hover{ transform:translateY(-3px); }

/* Nav link animated underline */
.nav-links a{ position:relative; }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background:var(--gold); transition:width .3s ease;
}
.nav-links a:hover::after{ width:100%; }

/* Stat number pop-in scale */
.stat-block .big-num{ transition:transform .3s ease; }
.stat-block:hover .big-num{ transform:scale(1.06); }

/* Logo subtle hover */
.logo a{ transition:opacity .25s ease; }
.logo a:hover{ opacity:.8; }

/* Coverage chip hover */
.coverage-chip{ transition:all .25s ease; }
.coverage-chip:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* FAQ item hover */
.faq-q{ transition:color .2s ease; }
.faq-item:hover .faq-q{ color:var(--gold); }

/* Smooth image/icon float for hero visuals */
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.hero-visual svg{ animation:floatY 5s ease-in-out infinite; }

/* Slider slide entrance */
.slide.active{ animation:heroIn .5s ease forwards; }

@media (prefers-reduced-motion: reduce){
  .reveal, .hero-grid > div:first-child > *, .hero-visual, .hero-visual svg, .slide.active{
    animation:none !important; transition:none !important; opacity:1 !important; transform:none !important;
  }
}
