/* ============ TOKENS ============ */
:root{
  --navy: #0F2A4A;
  --navy-2: #123561;
  --navy-3: #16407A;
  --blue: #1877F2;
  --blue-dark: #0F5DD1;
  --blue-light: #63A4FF;
  --yellow: #FFCF00;
  --yellow-2: #F2B900;
  --white: #FFFFFF;
  --ice: #F4F9FF;
  --ice-2: #E9F2FF;
  --ice-yellow: #FFFBEA;
  --ink: #0B1C33;
  --slate: #5B6478;
  --slate-light: #8992A6;
  --line: rgba(15,42,74,0.10);
  --line-dark: rgba(15,42,74,0.12);
  --line-on-dark: rgba(255,255,255,0.18);
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;
  --shadow-soft: 0 20px 50px rgba(24,119,242,0.12), 0 4px 16px rgba(15,42,74,0.06);
  --shadow-lift: 0 30px 70px rgba(24,119,242,0.20), 0 10px 24px rgba(15,42,74,0.10);
  --shadow-glow-blue: 0 20px 50px rgba(24,119,242,0.35);
  --shadow-glow-yellow: 0 16px 40px rgba(255,207,0,0.35);
  --ease: cubic-bezier(.16,.8,.24,1);
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --persp: 1000px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
h1,h2,h3,h4{font-family: var(--font-display); font-weight:600; line-height:1.12; letter-spacing:-0.01em;}
.container{max-width:1240px; margin:0 auto; padding:0 32px;}
section{position:relative;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--blue); font-weight:500; margin-bottom:18px;
}
.eyebrow::before{content:''; width:7px; height:7px; border-radius:50%; background: var(--yellow); box-shadow:0 0 0 4px rgba(255,207,0,0.25);}
.eyebrow.on-dark{color: var(--yellow-2);}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(30px,3.6vw,46px); color: var(--navy); margin-bottom:16px;}
.section-head p{font-size:17px; color: var(--slate); max-width:560px;}
.section-head.center p{margin-left:auto; margin-right:auto;}

@media (max-width:900px){ .container{padding:0 20px;} }

/* ============ SCROLL REVEAL ============ */
.reveal{opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:none;}
.reveal-scale{opacity:0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-scale.in{opacity:1; transform:none;}
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-scale{opacity:1 !important; transform:none !important; transition:none !important;}
  html{scroll-behavior:auto;}
}

/* ============ 3D TILT ============ */
.tilt{ transform-style: preserve-3d; will-change: transform; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
@media (prefers-reduced-motion: reduce){ .tilt{ transition:none !important; } }
@media (hover:none){ .tilt{ transform:none !important; } }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:100px; font-weight:600; font-size:15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-2) 100%);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(255,183,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,183,0,0.45); }
.btn-ghost{
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid var(--line-on-dark);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-outline-navy{
  background: transparent; color:var(--navy); border:1.5px solid rgba(15,42,74,0.18);
}
.btn-outline-navy:hover{ background: var(--navy); color:var(--white); transform: translateY(-3px); border-color:var(--navy);}
.btn-sm{padding:11px 20px; font-size:13.5px;}

/* ============ HEADER ============ */
header{
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 20px 0; transition: all .4s var(--ease);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
}
header.scrolled{
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  box-shadow: 0 12px 34px rgba(15,42,74,0.10);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between;}
.logo{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:21px; color:var(--navy);}
.logo .dot{width:11px; height:11px; border-radius:4px; background: linear-gradient(135deg, var(--yellow), var(--blue)); display:inline-block; box-shadow: var(--shadow-glow-blue);}
nav.links{display:flex; align-items:center; gap:34px;}
nav.links a{font-size:14.5px; font-weight:500; color: var(--slate); transition: color .25s ease; position:relative;}
nav.links a:hover{color: var(--navy);}
nav.links a::after{content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--blue); transition: width .3s var(--ease);}
nav.links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:18px;}
.burger{display:none; width:26px; height:20px; position:relative; flex-direction:column; justify-content:space-between;}
.burger span{width:100%; height:2px; background:var(--navy); border-radius:2px;}
@media (max-width:980px){
  nav.links{display:none;}
  .burger{display:flex;}
}

/* ============ HERO ============ */
.hero{
  background: linear-gradient(180deg, #FFFFFF 0%, var(--ice) 55%, #FFFFFF 100%);
  color: var(--ink);
  padding: 176px 0 100px;
  overflow:hidden;
  position:relative;
  perspective: var(--persp);
}
.hero::before{
  content:''; position:absolute; inset:0; opacity:0.6; pointer-events:none;
  background-image: radial-gradient(rgba(15,42,74,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
}
.blob{position:absolute; border-radius:50%; filter: blur(60px); pointer-events:none; z-index:0;}
.blob-blue{width:520px; height:520px; top:-180px; right:-140px; background: radial-gradient(circle, rgba(24,119,242,0.30), transparent 70%);}
.blob-yellow{width:420px; height:420px; bottom:-160px; left:-120px; background: radial-gradient(circle, rgba(255,207,0,0.28), transparent 70%);}
.hero-grid{display:grid; grid-template-columns: 1.05fr 0.95fr; gap:40px; align-items:center; position:relative; z-index:2;}
.hero-copy h1{font-size:clamp(38px,5vw,64px); letter-spacing:-0.02em; margin-bottom:22px; color:var(--navy);}
.hero-copy h1 .accent{background: linear-gradient(100deg, var(--blue), #0F5DD1); -webkit-background-clip:text; background-clip:text; color:transparent; position:relative;}
.hero-copy h1 .accent::after{content:''; position:absolute; left:0; right:0; bottom:6px; height:12px; background: rgba(255,207,0,0.45); z-index:-1; border-radius:4px;}
.hero-copy p.lead{font-size:18px; color: var(--slate); max-width:520px; margin-bottom:36px;}
.hero-ctas{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px;}
.hero-trust{display:flex; align-items:center; gap:18px; color:var(--slate-light); font-size:13px;}
.avatars{display:flex;}
.avatars span{width:34px; height:34px; border-radius:50%; border:2px solid #fff; margin-left:-10px; background:linear-gradient(135deg,var(--blue),var(--blue-light)); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:11px; color:#fff; box-shadow: 0 4px 14px rgba(24,119,242,0.3);}
.avatars span:first-child{margin-left:0;}

/* Hero visual: orbiting network */
.hero-visual{position:relative; height:520px;}
.orbit-stage{position:absolute; inset:0; display:flex; align-items:center; justify-content:center;}
.orbit-core{
  width:150px; height:150px; border-radius:38px;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 55%, var(--navy) 100%);
  border:1px solid rgba(255,255,255,0.35);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 30px 60px rgba(24,119,242,0.40), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -12px 24px rgba(0,0,0,0.18);
  z-index:5;
  animation: float-core 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.orbit-core svg{width:56px; height:56px;}
@keyframes float-core{ 0%,100%{transform:translateY(0px) rotateX(0deg);} 50%{transform:translateY(-14px) rotateX(6deg);} }
.ring{position:absolute; border-radius:50%; border:1.5px dashed rgba(24,119,242,0.22);}
.ring1{width:300px; height:300px; animation: spin 26s linear infinite;}
.ring2{width:420px; height:420px; animation: spin 40s linear infinite reverse; border-color: rgba(255,207,0,0.35);}
.ring3{width:520px; height:520px; animation: spin 60s linear infinite;}
@keyframes spin{ to{ transform: rotate(360deg); } }
.node-card{
  position:absolute;
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding:11px 14px;
  display:flex; align-items:center; gap:9px;
  font-size:12.5px; font-weight:600; color:var(--navy);
  box-shadow: 0 20px 40px rgba(15,42,74,0.16), 0 4px 10px rgba(24,119,242,0.10);
  animation: float-node 5s ease-in-out infinite;
}
.node-card .ic{width:26px; height:26px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:13px;}
.node-1{ top:6%; left:2%; animation-delay:0s;} 
.node-2{ top:16%; right:0%; animation-delay:1.2s;}
.node-3{ bottom:22%; left:-4%; animation-delay:.6s;}
.node-4{ bottom:2%; right:10%; animation-delay:1.8s;}
.node-5{ top:46%; right:-6%; animation-delay:2.4s;}
@keyframes float-node{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:380px; margin-top:20px;}
  .ring2,.ring3{display:none;}
}

/* ============ MARQUEE / TRUST ============ */
.trust-strip{background:transparent; padding:0 0 70px; position:relative; z-index:2;}
.marquee{overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 0;}
.marquee-track{display:flex; gap:70px; width:max-content; animation: scroll-left 28s linear infinite;}
.marquee-track span{font-family:var(--font-display); font-size:20px; font-weight:600; color:var(--slate-light); letter-spacing:0.02em; white-space:nowrap;}
@keyframes scroll-left{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.stats-row{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:56px;}
.stat-card{
  background: #fff; border:1px solid var(--line); border-radius: var(--radius-m);
  padding:30px 24px; text-align:center; box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat-card:hover{ transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lift); }
.stat-card .num{font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--navy);}
.stat-card .num .yellow{color:var(--yellow-2);}
.stat-card .lbl{font-size:13.5px; color:var(--slate); margin-top:6px;}
@media (max-width:900px){ .stats-row{grid-template-columns:repeat(2,1fr);} }

/* ============ ABOUT ============ */
.about{padding:130px 0; background: var(--white);}
.about-grid{display:grid; grid-template-columns: 0.85fr 1.15fr; gap:70px; align-items:center;}
.about-visual{position:relative; height:440px;}
.about-card{
  position:absolute; border-radius: var(--radius-m); overflow:hidden;
  box-shadow: var(--shadow-lift);
}
.about-card.main{width:88%; height:88%; top:0; left:0; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 130%); padding:34px; color:#fff; transform-style:preserve-3d;}
.about-card.main .k{font-family:var(--font-mono); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:14px; display:block;}
.about-card.main .big{font-family:var(--font-display); font-size:30px; font-weight:600; line-height:1.3;}
.about-card.floaty{
  width:230px; bottom:-6%; right:-8%; background:#fff; padding:22px; border:1px solid var(--line); z-index:3;
  animation: floaty 5.5s ease-in-out infinite;
}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
.about-card.floaty .row{display:flex; align-items:center; gap:12px; margin-bottom:14px;}
.about-card.floaty .row:last-child{margin-bottom:0;}
.about-card.floaty .ic2{width:38px; height:38px; border-radius:11px; display:flex; align-items:center; justify-content:center; background: var(--ice); flex-shrink:0;}
.about-card.floaty .t1{font-size:13px; font-weight:600; color:var(--navy);}
.about-card.floaty .t2{font-size:11.5px; color:var(--slate-light);}
.about-copy .stat-mini-row{display:flex; gap:40px; margin-top:36px;}
.stat-mini .n{font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--navy);}
.stat-mini .l{font-size:13px; color:var(--slate); margin-top:2px;}
@media (max-width:980px){
  .about-grid{grid-template-columns:1fr;}
  .about-visual{margin-bottom:20px;}
}

/* ============ WHY CHOOSE US ============ */
.why{padding:120px 0; background: var(--ice);}
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.why-card{
  background:#fff; border-radius: var(--radius-m); padding:34px 28px;
  border:1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position:relative; overflow:hidden;
}
.why-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.why-card .icon-wrap{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark)); margin-bottom:20px;
  box-shadow: var(--shadow-glow-blue);
}
.why-card h3{font-size:19px; color:var(--navy); margin-bottom:10px;}
.why-card p{font-size:14.5px; color:var(--slate);}
@media (max-width:900px){ .why-grid{grid-template-columns:1fr;} }

/* ============ SERVICES ============ */
.services{padding:130px 0; background: var(--ice);}
.svc-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.svc-card{
  background: #fff;
  border:1px solid var(--line); border-radius: var(--radius-m); padding:28px 24px;
  display:flex; flex-direction:column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  transform-style: preserve-3d;
}
.svc-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: rgba(24,119,242,0.3); }
.svc-ic{
  width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark)); margin-bottom:18px;
  box-shadow: var(--shadow-glow-blue);
}
.svc-card h4{font-size:16.5px; color:var(--navy); margin-bottom:8px;}
.svc-card p{font-size:13.5px; color:var(--slate); flex-grow:1; margin-bottom:18px;}
.svc-link{font-size:13px; font-weight:600; color:var(--blue); display:inline-flex; align-items:center; gap:6px;}
.svc-link svg{transition: transform .3s var(--ease);}
.svc-card:hover .svc-link svg{transform: translateX(4px);}
@media (max-width:1100px){ .svc-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:760px){ .svc-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .svc-grid{grid-template-columns:1fr;} }

/* ============ AI AUTOMATION ============ */
.ai-section{
  padding:130px 0; color:var(--ink); position:relative; overflow:hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--ice-2) 50%, #FFFFFF 100%);
}
.ai-top{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:60px; position:relative; z-index:2;}
.ai-top h2{color:var(--navy);}
.ai-top p{color:var(--slate); font-size:16px;}
.ai-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:18px; position:relative; z-index:2;}
.ai-card{
  background: #fff; border:1px solid var(--line); border-radius: var(--radius-s);
  padding:24px 20px; transition: all .4s var(--ease); box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
}
.ai-card:hover{ transform: translateY(-8px); border-color: rgba(24,119,242,0.35); box-shadow: var(--shadow-lift); }
.ai-card .ai-ic{width:42px; height:42px; border-radius:12px; background: linear-gradient(145deg, var(--yellow), var(--yellow-2)); display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow: var(--shadow-glow-yellow);}
.ai-card h4{font-size:15px; margin-bottom:8px; font-weight:600; color:var(--navy);}
.ai-card p{font-size:12.5px; color:var(--slate);}
@media (max-width:1100px){ .ai-grid{grid-template-columns:repeat(3,1fr);} .ai-top{grid-template-columns:1fr;} }
@media (max-width:600px){ .ai-grid{grid-template-columns:repeat(2,1fr);} }

/* ============ PROCESS ============ */
.process{padding:130px 0; background:#fff;}
.process-row{display:grid; grid-template-columns:repeat(5,1fr); gap:20px; position:relative;}
.process-row::before{
  content:''; position:absolute; top:26px; left:10%; right:10%; height:1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index:0;
}
.p-step{position:relative; z-index:1;}
.p-num{
  width:52px; height:52px; border-radius:16px; background:linear-gradient(145deg, var(--blue), var(--blue-dark)); color:var(--yellow);
  font-family:var(--font-mono); font-weight:600; font-size:16px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; box-shadow: var(--shadow-glow-blue);
}
.p-step h4{font-size:16.5px; color:var(--navy); margin-bottom:8px;}
.p-step p{font-size:13.5px; color:var(--slate);}
@media (max-width:980px){ .process-row{grid-template-columns:repeat(2,1fr); row-gap:40px;} .process-row::before{display:none;} }
@media (max-width:560px){ .process-row{grid-template-columns:1fr;} }

/* ============ CASE STUDIES ============ */
.cases{padding:130px 0; background: var(--ice);}
.case-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.case-card{
  background:#fff; border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.case-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.case-top{padding:30px 26px 0;}
.case-tag{font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--blue); font-weight:500;}
.case-card h3{font-size:21px; color:var(--navy); margin:12px 0 16px;}
.case-metrics{display:flex; gap:18px; padding: 0 26px; margin-bottom:24px;}
.metric{flex:1;}
.metric .n{font-family:var(--font-display); font-size:25px; font-weight:700; color:var(--navy);}
.metric .l{font-size:11.5px; color:var(--slate-light); margin-top:2px;}
.case-foot{
  background: linear-gradient(120deg, var(--blue), var(--blue-dark)); padding:18px 26px; display:flex; align-items:center; justify-content:space-between;
  color:#fff; font-size:13px;
}
.case-foot a{color:var(--yellow); font-weight:600; display:flex; align-items:center; gap:6px;}
@media (max-width:1000px){ .case-grid{grid-template-columns:1fr;} }

/* ============ TESTIMONIALS ============ */
.testi{padding:130px 0; background:#fff;}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.testi-card{
  background: linear-gradient(180deg,#fff,var(--ice)); border:1px solid var(--line); border-radius: var(--radius-m);
  padding:30px 26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.stars{color:var(--yellow-2); font-size:14px; letter-spacing:2px; margin-bottom:16px;}
.testi-card p.quote{font-size:14.5px; color:var(--ink); margin-bottom:24px;}
.testi-person{display:flex; align-items:center; gap:12px;}
.testi-avatar{width:44px; height:44px; border-radius:50%; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--font-display); font-weight:600; font-size:15px; box-shadow: var(--shadow-glow-blue);}
.testi-person .nm{font-size:14px; font-weight:600; color:var(--navy);}
.testi-person .rl{font-size:12px; color:var(--slate-light);}
@media (max-width:980px){ .testi-grid{grid-template-columns:1fr;} }

/* ============ INDUSTRIES ============ */
.industries{padding:110px 0; background: #fff; color:var(--ink);}
.industries .eyebrow.on-dark{color: var(--blue-dark);}
.industries h2{color:var(--navy) !important;}
.ind-grid{display:flex; flex-wrap:wrap; gap:14px; margin-top:10px;}
.ind-chip{
  border:1.5px solid var(--line); background: var(--ice); border-radius:100px; color:var(--navy);
  padding:14px 24px; font-size:14px; font-weight:500; display:flex; align-items:center; gap:10px;
  transition: all .35s var(--ease);
}
.ind-chip:hover{ background: var(--blue); color:#fff; border-color:var(--blue); transform:translateY(-3px); box-shadow: var(--shadow-glow-blue);}
.ind-chip .dot2{width:7px;height:7px;border-radius:50%;background:var(--yellow-2);}
.ind-chip:hover .dot2{background:#fff;}

/* ============ FAQ ============ */
.faq{padding:130px 0; background: var(--ice);}
.faq-list{max-width:820px; margin:0 auto;}
.faq-item{background:#fff; border:1px solid var(--line); border-radius: var(--radius-s); margin-bottom:14px; overflow:hidden;}
.faq-q{padding:22px 26px; display:flex; align-items:center; justify-content:space-between; font-weight:600; font-size:15.5px; color:var(--navy);}
.faq-q .plus{width:26px; height:26px; border-radius:8px; background:var(--ice); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform .35s var(--ease), background .3s ease;}
.faq-item.open .faq-q .plus{transform: rotate(135deg); background: var(--yellow);}
.faq-a{max-height:0; overflow:hidden; transition: max-height .4s var(--ease);}
.faq-a p{padding: 0 26px 22px; font-size:14.5px; color:var(--slate); max-width:680px;}

/* ============ FINAL CTA ============ */
.final-cta{
  padding:110px 0; text-align:center; color:#fff; position:relative; overflow:hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.final-cta::before{
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,207,0,0.30), transparent 70%);
  top:-250px; right:-150px;
}
.final-cta::after{
  content:''; position:absolute; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
  bottom:-220px; left:-100px;
}
.final-cta h2{font-size:clamp(30px,4.4vw,50px); margin-bottom:20px; position:relative;}
.final-cta p{font-size:17px; color:rgba(255,255,255,0.72); max-width:560px; margin:0 auto 38px; position:relative;}
.final-cta .btn-row{display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative;}

/* ============ CONTACT ============ */
.contact{padding:130px 0; background:#fff;}
.contact-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px;}
.contact-info h2{font-size:clamp(28px,3.2vw,38px); color:var(--navy); margin-bottom:18px;}
.contact-info p{color:var(--slate); margin-bottom:32px; font-size:15.5px;}
.info-row{display:flex; align-items:center; gap:16px; margin-bottom:20px;}
.info-ic{width:44px; height:44px; border-radius:13px; background: var(--ice); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.info-row .t1{font-size:14px; font-weight:600; color:var(--navy);}
.info-row .t2{font-size:13px; color:var(--slate-light);}
.contact-form{
  background: var(--ice); border-radius: var(--radius-l); padding:44px; border:1px solid var(--line);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
.field label{display:block; font-size:12.5px; font-weight:600; color:var(--navy); margin-bottom:8px;}
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px; border:1px solid var(--line); background:#fff;
  font-family:inherit; font-size:14px; color:var(--ink); transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(24,119,242,0.12);
}
.field{margin-bottom:16px;}
.field textarea{resize:vertical; min-height:110px;}
@media (max-width:980px){ .contact-grid{grid-template-columns:1fr;} }
@media (max-width:560px){ .form-row{grid-template-columns:1fr;} }

/* ============ FOOTER ============ */
footer{background: var(--navy); color:rgba(255,255,255,0.7); padding:80px 0 30px;}
.foot-grid{display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:60px;}
.foot-brand p{font-size:14px; margin:18px 0 22px; color:rgba(255,255,255,0.5); max-width:280px;}
.foot-social{display:flex; gap:10px;}
.foot-social a{width:38px; height:38px; border-radius:11px; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; border:1px solid var(--line-on-dark); transition: all .3s ease;}
.foot-social a:hover{background: var(--yellow); color:var(--navy);}
.foot-col h5{font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:#fff; margin-bottom:18px; font-weight:600;}
.foot-col a{display:block; font-size:14px; margin-bottom:12px; color:rgba(255,255,255,0.6); transition: color .25s ease;}
.foot-col a:hover{color:var(--yellow);}
.foot-bottom{border-top:1px solid var(--line-on-dark); padding-top:26px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:13px; color:rgba(255,255,255,0.4);}
@media (max-width:980px){ .foot-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .foot-grid{grid-template-columns:1fr;} }

/* Back to top */
.to-top{
  position:fixed; bottom:28px; right:28px; width:50px; height:50px; border-radius:50%;
  background: var(--navy); color:var(--yellow); display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lift); z-index:900; opacity:0; pointer-events:none; transition: opacity .3s ease, transform .3s ease;
}
.to-top.show{opacity:1; pointer-events:auto;}
.to-top:hover{transform: translateY(-4px);}

::selection{background: var(--yellow); color: var(--navy);}
::-webkit-scrollbar{width:10px;}
::-webkit-scrollbar-track{background:var(--ice);}
::-webkit-scrollbar-thumb{background: var(--blue-light); border-radius:10px;}

.skip-link{position:absolute; left:-999px; top:auto; background:#fff; color:#000; padding:10px 16px; z-index:2000;}
.skip-link:focus{left:16px; top:16px;}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{outline:3px solid var(--yellow); outline-offset:2px;}