/* ============================================================
   SALESPROPEL — Design tokens
   ============================================================ */
:root{
  --navy-950:#060B1A;
  --navy-900:#0A1330;
  --navy-800:#101C42;
  --navy-700:#172959;
  --blue-500:#2F6FFF;
  --blue-400:#4E8AFF;
  --blue-300:#7FA8FF;
  --silver-050:#F7F9FC;
  --silver-100:#F4F6FA;
  --silver-300:#C7CEDB;
  --silver-500:#8C97AD;
  --ink-900:#0B1226;
  --ink-700:#3A445E;

  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;

  --shadow-card: 0 24px 60px -30px rgba(6,11,26,0.35);
  --shadow-glow: 0 0 0 1px rgba(47,111,255,0.12), 0 20px 60px -20px rgba(47,111,255,0.35);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--silver-100);
  color:var(--ink-900);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink-900);
  margin:0;
  letter-spacing:-0.01em;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; }
.mono{ font-family:var(--font-mono); }

::selection{ background:var(--blue-500); color:#fff; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 32px; }
@media (max-width:640px){ .wrap{ padding:0 22px; } }

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid var(--blue-500); outline-offset:3px; border-radius:4px;
}
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--blue-500); color:#fff;
  padding:12px 20px; z-index:200; border-radius:0 0 8px 0; font-weight:600; font-size:14px;
}
.skip-link:focus{ left:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ============================================================
   Scroll progress rail (signature motif, echoes hero line)
   ============================================================ */
#scrollRail{
  position:fixed; left:0; top:0; bottom:0; width:3px; z-index:90;
  background:linear-gradient(var(--blue-500), var(--blue-300));
  transform-origin:top; transform:scaleY(0);
}
@media (max-width:900px){ #scrollRail{ display:none; } }

/* ============================================================
   Header / Nav
   ============================================================ */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(10,19,48,0.72);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:background .3s var(--ease), padding .3s var(--ease);
}
header.scrolled{ background:rgba(6,11,26,0.92); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:20px 0; transition:padding .3s var(--ease); }
header.scrolled .nav{ padding:13px 0; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ width:34px; height:34px; flex-shrink:0; }
.brand-name{ font-family:var(--font-display); font-weight:700; font-size:17px; letter-spacing:0.02em; color:#fff; }
.brand-name .accent{ color:var(--blue-400); }

nav.links{ display:flex; gap:34px; }
nav.links a{
  font-size:14px; font-weight:500; color:rgba(255,255,255,0.72); position:relative; padding:6px 0;
  transition:color .2s;
}
nav.links a:hover, nav.links a.active{ color:#fff; }
nav.links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--blue-500); border-radius:2px;
}
.header-actions{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.btn-cta{
  background:var(--blue-500); color:#fff; padding:11px 22px; border-radius:100px;
  font-size:13.5px; font-weight:600; border:1px solid var(--blue-500);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  display:inline-block;
}
.btn-cta:hover{ background:var(--blue-400); box-shadow:0 10px 30px -8px rgba(47,111,255,0.6); transform:translateY(-1px); }

.menu-btn{
  display:none; background:none; border:1px solid rgba(255,255,255,0.25); border-radius:8px;
  width:40px; height:40px; align-items:center; justify-content:center; color:#fff;
}
@media (max-width:920px){
  nav.links{ display:none; }
  .menu-btn{ display:flex; }
}
@media (max-width:560px){
  .header-actions .btn-cta{ display:none; }
}
#mobileNav{
  display:none; flex-direction:column; background:var(--navy-950); border-top:1px solid rgba(255,255,255,0.08);
}
#mobileNav.open{ display:flex; }
#mobileNav a{ padding:16px 32px; font-size:15px; font-weight:500; color:rgba(255,255,255,0.8); border-bottom:1px solid rgba(255,255,255,0.06); }
#mobileNav a.mobile-nav-cta{ color:var(--blue-400); font-weight:600; border-bottom:none; }
#mobileNav a.active{ color:var(--blue-300); }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position:relative; background:var(--navy-950); color:#fff;
  padding:168px 0 110px; overflow:hidden;
  isolation:isolate;
}
.hero-bg{ position:absolute; inset:0; z-index:-1; }
.hero-mesh{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 400px at 12% 15%, rgba(47,111,255,0.28), transparent 60%),
    radial-gradient(500px 500px at 88% 78%, rgba(127,168,255,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-950));
}
.hero-grid-lines{
  position:absolute; inset:0; opacity:0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 90%);
}
.orb{
  position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none;
  will-change:transform;
}
.orb-1{ width:340px; height:340px; background:rgba(47,111,255,0.35); top:8%; left:6%; }
.orb-2{ width:260px; height:260px; background:rgba(127,168,255,0.25); bottom:6%; right:10%; }

.hero-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center; }
.hero-inner > *,
.services-grid > *, .about-grid > *, .why-grid > *, .journey-track > *,
.contact-grid > *, .field-row > *, .footer-grid > *, .approach-flow > *,
.testimonial-grid > *, .placements-grid > *, .deposit-wrap > *{ min-width:0; }
@media (max-width:960px){ .hero-inner{ grid-template-columns:1fr; gap:56px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--blue-300); font-weight:500; margin-bottom:22px;
  border:1px solid rgba(127,168,255,0.3); padding:7px 14px 7px 10px; border-radius:100px;
  background:rgba(47,111,255,0.08);
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-400); box-shadow:0 0 0 3px rgba(47,111,255,0.25); flex-shrink:0; }

h1.hero-title{ font-size:clamp(36px,5.4vw,58px); line-height:1.08; margin-bottom:24px; font-weight:600; color:#fff; }
h1.hero-title .grad{
  background:linear-gradient(100deg, var(--blue-300), var(--blue-500));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ font-size:17.5px; line-height:1.7; color:rgba(247,249,252,0.72); max-width:520px; margin-bottom:34px; }

.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }
.btn-primary{
  background:var(--blue-500); color:#fff; padding:16px 28px; border-radius:100px; font-weight:600; font-size:15px;
  border:1px solid var(--blue-500); display:inline-flex; align-items:center; gap:8px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn-primary:hover{ background:var(--blue-400); box-shadow:0 16px 40px -12px rgba(47,111,255,0.7); transform:translateY(-2px); }
.btn-outline{
  padding:16px 26px; border-radius:100px; font-weight:600; font-size:15px; border:1px solid rgba(255,255,255,0.28); color:#fff;
  display:inline-flex; align-items:center; gap:8px; transition:border-color .2s, background .2s, transform .2s var(--ease);
}
.btn-outline:hover{ border-color:var(--blue-300); background:rgba(127,168,255,0.08); transform:translateY(-2px); }

.trust-strip{ display:flex; gap:0; border-top:1px solid rgba(255,255,255,0.12); padding-top:26px; max-width:540px; flex-wrap:wrap; }
.trust-item{ flex:1; min-width:140px; padding-right:20px; }
.trust-item b{
  display:block; font-family:var(--font-mono); font-size:26px; color:#fff; font-weight:600;
  background:linear-gradient(100deg,#fff,var(--blue-300)); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.trust-item span{ font-size:12.5px; color:rgba(247,249,252,0.55); }

/* Propel line graphic — signature element */
.propel-graphic{ position:relative; }
.propel-graphic svg{ width:100%; height:auto; overflow:visible; }
.propel-path{
  fill:none; stroke:url(#lineGrad); stroke-width:3; stroke-linecap:round;
  stroke-dasharray:900; stroke-dashoffset:900;
  animation:drawLine 2.2s var(--ease) 0.4s forwards;
}
@keyframes drawLine{ to{ stroke-dashoffset:0; } }
.propel-node{ opacity:0; transform-origin:center; animation:popIn .5s var(--ease) forwards; }
.propel-node:nth-of-type(1){ animation-delay:0.9s; }
.propel-node:nth-of-type(2){ animation-delay:1.5s; }
.propel-node:nth-of-type(3){ animation-delay:2.1s; }
@keyframes popIn{ from{ opacity:0; transform:scale(0.3); } to{ opacity:1; transform:scale(1); } }
.propel-pulse{ animation:pulse 2.4s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity:0.5; r:14; } 50%{ opacity:0; r:26; } }
.propel-label{ font-family:var(--font-mono); font-size:11px; fill:rgba(247,249,252,0.65); letter-spacing:0.05em; }
.propel-label-strong{ font-family:var(--font-mono); font-size:12px; fill:#fff; font-weight:600; letter-spacing:0.04em; }

@media (prefers-reduced-motion: reduce){
  .propel-path{ stroke-dashoffset:0; animation:none; }
  .propel-node{ opacity:1; transform:scale(1); animation:none; }
}

/* ============================================================
   Sections — shared
   ============================================================ */
main section{ padding:120px 0; position:relative; }
@media (max-width:720px){ main section{ padding:84px 0; } }

.section-band-dark{ background:var(--navy-950); color:#fff; }
.section-band-dark h2, .section-band-dark h3{ color:#fff; }

.section-head{ max-width:640px; margin-bottom:56px; }
.section-head .eyebrow{ color:var(--blue-500); border-color:rgba(47,111,255,0.25); background:rgba(47,111,255,0.06); }
.section-band-dark .section-head .eyebrow{ color:var(--blue-300); border-color:rgba(127,168,255,0.3); background:rgba(47,111,255,0.08); }
.section-head h2{ font-size:clamp(30px,3.8vw,42px); line-height:1.15; margin-bottom:18px; font-weight:600; }
.section-head p{ font-size:16.5px; color:var(--ink-700); line-height:1.65; }
.section-band-dark .section-head p{ color:rgba(247,249,252,0.68); }

/* ============================================================
   Services
   ============================================================ */
.services-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
@media (max-width:800px){ .services-grid{ grid-template-columns:1fr; } }

.service-card{
  background:#fff; border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-lg);
  padding:36px 32px; position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before{
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1px;
  background:linear-gradient(135deg, var(--blue-400), transparent 40%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .35s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-glow); border-color:transparent; }
.service-card:hover::before{ opacity:1; }
.service-card .icon{
  width:52px; height:52px; border-radius:14px; background:var(--navy-900);
  display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  transition:transform .35s var(--ease), background .35s var(--ease);
}
.service-card:hover .icon{ transform:rotate(-6deg) scale(1.06); background:var(--blue-500); }
.service-card .icon svg{ width:24px; height:24px; }
.service-card h3{ font-size:20px; margin-bottom:12px; }
.service-card p{ font-size:14.5px; line-height:1.65; color:var(--ink-700); }
.service-card .tag{
  display:inline-block; margin-top:18px; font-family:var(--font-mono); font-size:11px;
  color:var(--blue-500); letter-spacing:0.06em; text-transform:uppercase;
}

/* ============================================================
   About / Mission
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; gap:44px; } }
.mission-quote{
  font-family:var(--font-display); font-size:clamp(22px,2.6vw,28px); line-height:1.4; color:#fff;
  border-left:2px solid var(--blue-500); padding-left:24px; margin-bottom:28px;
}
.about-copy p{ font-size:15.5px; line-height:1.75; color:rgba(247,249,252,0.7); margin-bottom:18px; }
.founder-strip{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.founder-chip{
  display:flex; align-items:center; gap:10px; background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1); border-radius:100px; padding:8px 16px 8px 8px;
}
.founder-chip .av{
  width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--blue-400),var(--blue-500));
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:11px; color:#fff; font-weight:600;
}
.founder-chip span{ font-size:13px; color:rgba(255,255,255,0.85); }

.value-list{ display:flex; flex-direction:column; gap:0; }
.value-item{ display:flex; gap:20px; padding:24px 0; border-bottom:1px solid rgba(255,255,255,0.08); }
.value-item:first-child{ padding-top:0; }
.value-item .vi-mark{ font-family:var(--font-mono); color:var(--blue-400); font-size:13px; flex-shrink:0; padding-top:3px; }
.value-item h4{ font-size:16.5px; color:#fff; margin-bottom:6px; }
.value-item p{ font-size:14px; color:rgba(247,249,252,0.62); line-height:1.6; }

.location-note{
  margin-top:32px; display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:12.5px;
  color:rgba(127,168,255,0.85);
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(11,18,38,0.08); border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-lg); overflow:hidden; }
@media (max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }
.why-card{ background:#fff; padding:34px 28px; transition:background .3s; }
.why-card:hover{ background:var(--silver-050); }
.why-card .num{ font-family:var(--font-mono); color:var(--blue-500); font-size:12.5px; margin-bottom:18px; display:block; letter-spacing:0.05em; }
.why-card h4{ font-size:17.5px; margin-bottom:10px; line-height:1.3; }
.why-card p{ font-size:14px; line-height:1.6; color:var(--ink-700); }

/* ============================================================
   Journey / Success Stories
   ============================================================ */
.journey{ position:relative; }
.journey-track{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media (max-width:820px){ .journey-track{ grid-template-columns:1fr; gap:20px; } }
.journey-track::before{
  content:""; position:absolute; top:38px; left:8%; right:8%; height:2px;
  background:linear-gradient(90deg, rgba(47,111,255,0.15), var(--blue-500), rgba(47,111,255,0.15));
}
@media (max-width:820px){ .journey-track::before{ display:none; } }
.journey-step{ position:relative; background:#fff; border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-lg); padding:32px 26px; }
.journey-step .jnum{
  width:44px; height:44px; border-radius:50%; background:var(--navy-900); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:14px; font-weight:600;
  margin-bottom:20px; position:relative; z-index:1;
  box-shadow:0 0 0 6px var(--silver-100);
}
.journey-step h4{ font-size:17px; margin-bottom:10px; }
.journey-step p{ font-size:14px; color:var(--ink-700); line-height:1.6; }
.journey-step .jtag{ font-family:var(--font-mono); font-size:11px; color:var(--blue-500); text-transform:uppercase; letter-spacing:0.06em; display:block; margin-bottom:10px; }

.journey-note{
  margin-top:40px; text-align:center; font-size:14px; color:var(--ink-700);
  background:var(--silver-050); border:1px dashed var(--silver-300); border-radius:var(--radius-md);
  padding:20px 24px;
}
.journey-note a{ color:var(--blue-500); font-weight:600; }
.journey-note a:hover{ text-decoration:underline; }

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band{
  background:linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius:var(--radius-lg); padding:64px 48px; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(500px 300px at 50% 0%, rgba(47,111,255,0.28), transparent 70%);
}
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; font-size:clamp(26px,3.6vw,38px); margin-bottom:16px; }
.cta-band p{ color:rgba(247,249,252,0.7); font-size:16px; margin-bottom:32px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-band .hero-actions{ justify-content:center; margin-bottom:0; }
@media (max-width:640px){ .cta-band{ padding:48px 26px; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:40px; } }

.contact-item{ display:flex; gap:16px; margin-bottom:24px; }
.contact-icon{
  width:42px; height:42px; border-radius:12px; background:rgba(47,111,255,0.08); border:1px solid rgba(47,111,255,0.2);
  flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--blue-500);
}
.contact-item h4{ font-size:14px; color:var(--ink-900); margin-bottom:3px; font-weight:600; }
.contact-item p, .contact-item a{ font-size:14.5px; color:var(--ink-700); line-height:1.5; }
.contact-item a:hover{ color:var(--blue-500); }

.social-row{ display:flex; gap:12px; margin-top:32px; }
.social-icon{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(11,18,38,0.12);
  display:flex; align-items:center; justify-content:center; color:var(--ink-700);
  transition:border-color .2s, color .2s, transform .2s var(--ease);
}
.social-icon:hover{ border-color:var(--blue-500); color:var(--blue-500); transform:translateY(-2px); }

form.enquiry{
  background:#fff; border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-lg); padding:36px;
  box-shadow:var(--shadow-card);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:12px; font-weight:600; color:var(--ink-700); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.05em; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1px solid rgba(11,18,38,0.14); border-radius:10px;
  font-family:var(--font-body); font-size:14.5px; background:var(--silver-050); color:var(--ink-900);
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--blue-500); box-shadow:0 0 0 4px rgba(47,111,255,0.12); outline:none;
}
.field textarea{ resize:vertical; min-height:100px; }
.submit-btn{
  width:100%; background:var(--blue-500); color:#fff; padding:15px; border:none; border-radius:10px;
  font-weight:600; font-size:15px; transition:background .2s, transform .2s var(--ease);
}
.submit-btn:hover{ background:var(--blue-400); transform:translateY(-1px); }
.form-note{ font-size:12.5px; color:var(--ink-700); margin-top:14px; text-align:center; }

/* ============================================================
   Footer
   ============================================================ */
footer{ background:var(--navy-950); color:rgba(247,249,252,0.6); padding-top:72px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08); }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand-name{ margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; line-height:1.6; color:rgba(247,249,252,0.5); max-width:260px; margin-bottom:20px; }
.footer-col h5{ font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.08em; color:rgba(247,249,252,0.4); margin-bottom:18px; }
.footer-col a, .footer-col p{ display:block; font-size:14px; color:rgba(247,249,252,0.68); margin-bottom:12px; }
.footer-col a:hover{ color:var(--blue-300); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding:26px 0; font-size:12.5px; color:rgba(247,249,252,0.4); }
.back-to-top{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); color:#fff;
  display:flex; align-items:center; justify-content:center; transition:border-color .2s, transform .2s var(--ease);
}
.back-to-top:hover{ border-color:var(--blue-400); transform:translateY(-3px); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal{ opacity:0; transform:translateY(20px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in .stagger-child{ opacity:1; transform:translateY(0); }
.stagger-child{ opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.stagger-child:nth-child(1){ transition-delay:0.05s; }
.stagger-child:nth-child(2){ transition-delay:0.15s; }
.stagger-child:nth-child(3){ transition-delay:0.25s; }
.stagger-child:nth-child(4){ transition-delay:0.35s; }

/* ============================================================
   Logo images (header/footer)
   ============================================================ */
.brand-logo-img{ height:38px; width:auto; display:block; }
@media (max-width:640px){ .brand-logo-img{ height:30px; } }
@media (max-width:400px){ .brand-logo-img{ height:26px; } }
.brand{ min-width:0; flex-shrink:1; }
.footer-logo-img{ margin-bottom:16px; }

/* ============================================================
   About copy paragraph spacing
   ============================================================ */
.about-copy p{ font-size:15.5px; line-height:1.75; color:rgba(247,249,252,0.7); margin-bottom:18px; }
.about-copy p:last-child{ margin-bottom:0; }

/* ============================================================
   Unique Approach — 8-step flow
   ============================================================ */
.approach-flow{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); overflow:hidden; }
@media (max-width:900px){ .approach-flow{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .approach-flow{ grid-template-columns:1fr; } }
.approach-step{ background:var(--navy-900); padding:28px 24px; transition:background .3s; }
.approach-step:hover{ background:var(--navy-800); }
.astep-idx{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.08em; color:var(--blue-300); margin-bottom:14px; }
.approach-step h4{ font-size:16px; color:#fff; margin-bottom:8px; line-height:1.3; }
.approach-step p{ font-size:13.5px; color:rgba(247,249,252,0.6); line-height:1.55; margin:0; }

/* ============================================================
   Curriculum — day-by-day topic chips
   ============================================================ */
.curriculum{ display:flex; flex-direction:column; gap:14px; }
.curr-row{
  display:grid; grid-template-columns:180px 1fr; gap:24px; align-items:start;
  background:#fff; border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-md); padding:24px 28px;
}
@media (max-width:700px){ .curr-row{ grid-template-columns:1fr; gap:12px; } }
.curr-row .day{
  font-family:var(--font-mono); font-weight:600; font-size:15px; color:var(--blue-500);
  display:flex; flex-direction:column; gap:4px;
}
.curr-row .day span{ font-family:var(--font-body); font-weight:500; font-size:12.5px; color:var(--ink-700); text-transform:none; letter-spacing:0; }
.curr-topics{ display:flex; flex-wrap:wrap; gap:8px; }
.curr-topic{
  font-size:13px; color:var(--ink-900); background:var(--silver-050); border:1px solid rgba(11,18,38,0.08);
  border-radius:100px; padding:7px 14px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
@media (max-width:800px){ .testimonial-grid{ grid-template-columns:1fr; } }
.testimonial-card{
  background:var(--navy-900); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg);
  padding:28px 26px;
}
.testimonial-stars{ color:var(--blue-400); letter-spacing:2px; font-size:14px; margin-bottom:14px; }
.testimonial-card p{ font-size:14.5px; line-height:1.65; color:rgba(247,249,252,0.78); margin-bottom:20px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.testimonial-avatar{
  width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--blue-400),var(--blue-500));
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:12px; color:#fff; font-weight:600; flex-shrink:0;
}
.testimonial-author b{ display:block; font-size:14px; color:#fff; font-weight:600; }
.testimonial-author span{ font-size:12px; color:rgba(247,249,252,0.5); }

/* ============================================================
   Placements / success stories
   ============================================================ */
.placements-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:800px){ .placements-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .placements-grid{ grid-template-columns:1fr 1fr; gap:14px; } }
.placement-card{ text-align:center; }
.placement-card img{
  width:88px; height:88px; border-radius:50%; object-fit:cover; margin:0 auto 14px;
  border:2px solid rgba(127,168,255,0.35); display:block;
}
.placement-card h5{ font-family:var(--font-display); font-size:15px; color:#fff; margin:0 0 4px; font-weight:600; }
.placement-card .p-company{ font-size:12.5px; color:rgba(247,249,252,0.6); margin-bottom:6px; }
.placement-card .p-ctc{
  display:inline-block; font-family:var(--font-mono); font-size:11px; color:var(--blue-300);
  background:rgba(47,111,255,0.1); border:1px solid rgba(127,168,255,0.25); border-radius:100px; padding:4px 12px;
}

/* ============================================================
   Placement partners strip
   ============================================================ */
.partners-strip{ display:flex; flex-wrap:wrap; gap:12px; }
.partner-chip{
  font-family:var(--font-mono); font-size:12.5px; padding:10px 18px; border-radius:100px;
  border:1px solid rgba(11,18,38,0.12); color:var(--ink-700); background:#fff;
}
.partner-chip.light{ background:var(--silver-050); }

/* ============================================================
   Enrollment — eligibility list + admissions + deposit slip
   ============================================================ */
.deposit-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:900px){ .deposit-wrap{ grid-template-columns:1fr; gap:36px; } }
.elig-list{ list-style:none; padding:0; margin:0 0 28px; }
.elig-list li{
  font-size:14.5px; color:var(--ink-700); line-height:1.6; padding:12px 0 12px 26px; position:relative;
  border-bottom:1px solid rgba(11,18,38,0.08);
}
.elig-list li:first-child{ padding-top:0; }
.elig-list li::before{ content:"→"; position:absolute; left:0; color:var(--blue-500); font-weight:700; }
.admissions-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.admissions-chip{
  font-size:13px; color:var(--ink-700); background:var(--silver-050); border:1px solid rgba(11,18,38,0.08);
  border-radius:100px; padding:8px 16px;
}
.admissions-chip b{ color:var(--ink-900); font-weight:600; }
.slip{
  background:var(--silver-050); border:1px solid rgba(11,18,38,0.08); border-radius:var(--radius-lg); padding:34px;
}
.slip-row{ display:flex; justify-content:space-between; padding:13px 0; border-bottom:1px dashed rgba(11,18,38,0.14); font-size:14.5px; }
.slip-row:last-child{ border-bottom:none; }
.slip-row span:first-child{ color:var(--ink-700); }
.slip-row span:last-child{ font-family:var(--font-mono); color:var(--ink-900); font-weight:600; }
.slip-total{ display:flex; justify-content:space-between; align-items:center; margin-top:18px; padding-top:18px; border-top:2px solid var(--navy-900); }
.slip-total span:first-child{ font-family:var(--font-display); font-size:17px; color:var(--ink-900); }
.slip-total span:last-child{ font-family:var(--font-mono); font-size:28px; color:var(--blue-500); font-weight:600; }
