/* ============ TOKENS ============ */
:root{
  --navy-deep:#082024;
  --navy:#0A2E36;
  --navy-soft:#123c46;
  --aqua:#29C6B7;
  --aqua-bright:#5EE6D6;
  --copper:#C17A48;
  --copper-bright:#E0955F;
  --mineral:#EFF6F5;
  --mineral-dim:#E2EEEC;
  --ink:#0B2E36;
  --ink-soft:#3E5A5F;
  --white:#FFFFFF;
  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Manrope', sans-serif;
  --shadow-soft: 0 20px 50px -20px rgba(8,32,36,0.35);
  --shadow-hard: 0 30px 70px -25px rgba(8,32,36,0.55);
  --radius: 18px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--mineral);
  overflow-x:hidden;
  line-height:1.65;
}
h1,h2,h3,h4,.display{ font-family:var(--font-display); }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

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

/* ============ REVEAL ============ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.15s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.25s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.35s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.45s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.55s; }

/* ============ NAV ============ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 0; transition:padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav.scrolled{ padding:12px 0; background:rgba(8,32,36,0.92); backdrop-filter:blur(10px); box-shadow:0 10px 30px -15px rgba(0,0,0,.4); }
.logo{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.25rem; color:var(--white); letter-spacing:.2px; }
.logo .drop{ width:26px; height:26px; }
.logo b{ color:var(--aqua-bright); }
.nav-links{ display:flex; gap:32px; align-items:center; }
.nav-links a{ color:rgba(255,255,255,.85); font-size:.95rem; font-weight:500; position:relative; padding:4px 0; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--aqua-bright); transition:width .3s ease; }
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  background:linear-gradient(135deg, var(--copper-bright), var(--copper)); color:var(--white); padding:11px 22px; border-radius:10px;
  font-weight:600; font-size:.9rem; display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 10px 25px -8px rgba(193,122,72,.6); transition:transform .25s ease, box-shadow .25s ease;
}
.nav-cta:hover{ transform:translateY(-2px); box-shadow:0 16px 32px -10px rgba(193,122,72,.75); }
.burger{ display:none; flex-direction:column; gap:5px; background:none; padding:6px; transition:opacity .25s ease; }
.burger span{ width:26px; height:2px; background:var(--white); border-radius:2px; transition:.3s; }
.burger.active{ opacity:0; pointer-events:none; }
.menu-backdrop{
  position:fixed; inset:0; background:rgba(4,16,18,.65); backdrop-filter:blur(2px); z-index:1050;
  opacity:0; visibility:hidden; transition:opacity .4s ease, visibility .4s ease;
}
.menu-backdrop.open{ opacity:1; visibility:visible; }
.mobile-menu{
  position:fixed; top:0; right:0; bottom:0; width:84%; max-width:340px; background:var(--navy-deep);
  z-index:1060; display:flex; flex-direction:column; align-items:stretch; gap:0;
  transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.8,.2,1);
  padding:34px 30px 30px; box-shadow:-24px 0 60px -20px rgba(0,0,0,.6); overflow-y:auto;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu .mm-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:34px; }
.mobile-menu .mm-top .logo{ font-size:1.1rem; }
.menu-close{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex:none; transition:background .25s ease, transform .25s ease; }
.menu-close:hover{ background:rgba(255,255,255,.18); transform:rotate(90deg); }
.menu-close svg{ width:16px; height:16px; stroke:var(--white); }
.mm-nav{ display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
.mm-nav a{
  display:flex; align-items:center; gap:14px; color:rgba(255,255,255,.92); font-size:1.02rem;
  font-weight:600; padding:12px; border-radius:14px;
  transition:background .25s ease, color .25s ease, transform .25s ease;
  opacity:0; transform:translateX(24px);
}
.mobile-menu.open .mm-nav a{ animation:mmSlideIn .5s cubic-bezier(.2,.8,.2,1) forwards; animation-delay:calc(var(--d) * 0.06s + .1s); }
@keyframes mmSlideIn{ to{ opacity:1; transform:translateX(0); } }
.mm-nav a:hover{ background:rgba(255,255,255,.06); color:var(--aqua-bright); }
.mm-nav a:active{ transform:scale(.98); }
.mm-icon{
  width:38px; height:38px; border-radius:11px; background:linear-gradient(135deg, rgba(41,198,183,.18), rgba(193,122,72,.14));
  border:1px solid rgba(94,230,214,.2); display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:background .25s ease, transform .25s ease;
}
.mm-nav a:hover .mm-icon{ transform:scale(1.08) rotate(-4deg); background:linear-gradient(135deg, rgba(41,198,183,.3), rgba(193,122,72,.22)); }
.mm-icon svg{ width:18px; height:18px; display:block; fill:none; stroke:var(--aqua-bright); stroke-width:2; }
.mm-text{ flex:1; }
.mm-chevron{ width:15px; height:15px; display:block; fill:none; stroke:rgba(255,255,255,.35); stroke-width:2; flex-shrink:0; transition:transform .25s ease, stroke .25s ease; }
.mm-nav a:hover .mm-chevron{ transform:translateX(4px); stroke:var(--aqua-bright); }
.mobile-menu .mm-actions{ margin-top:auto; padding-top:26px; border-top:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:12px; }
.mobile-menu .mm-actions .btn{ width:100%; justify-content:center; }

/* ============ HERO ============ */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:radial-gradient(1200px 700px at 80% -10%, #123c46 0%, var(--navy) 45%, var(--navy-deep) 100%);
  overflow:hidden; padding-top:110px; padding-bottom:70px;
}
.hero-bubbles{ position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.bubble{
  position:absolute; bottom:-10%; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(94,230,214,.55), rgba(94,230,214,.05) 70%);
  animation:rise linear infinite;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0) scale(1); opacity:0; }
  10%{ opacity:.7; }
  100%{ transform:translateY(-120vh) translateX(var(--drift,20px)) scale(1.4); opacity:0; }
}


.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; color:var(--aqua-bright); font-weight:600; font-size:.85rem;
  letter-spacing:1.5px; text-transform:uppercase; background:rgba(94,230,214,.1); border:1px solid rgba(94,230,214,.35);
  padding:8px 16px; border-radius:999px; margin-bottom:22px;
}
.eyebrow .pulse-dot{ width:8px; height:8px; border-radius:50%; background:var(--aqua-bright); box-shadow:0 0 0 0 rgba(94,230,214,.7); animation:pulseDot 1.8s infinite; }
@keyframes pulseDot{ 0%{ box-shadow:0 0 0 0 rgba(94,230,214,.6);} 70%{ box-shadow:0 0 0 10px rgba(94,230,214,0);} 100%{ box-shadow:0 0 0 0 rgba(94,230,214,0);} }
.hero h1{ color:var(--white); font-size:clamp(2.3rem, 4.6vw, 3.6rem); font-weight:700; line-height:1.18; letter-spacing:-.5px; }
.hero h1 span{ color:var(--aqua-bright); }
.hero p.lead{ color:rgba(255,255,255,.78); font-size:1.12rem; margin-top:22px; max-width:520px; }
.hero-ctas{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:16px 28px; border-radius:12px; font-weight:600;
  font-size:1rem; transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  position:relative; overflow:hidden;
}
.btn svg{ position:relative; z-index:1; }
.btn::before{
  content:''; position:absolute; top:0; left:-75%; width:50%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg); transition:left .6s ease;
}
.btn:hover::before{ left:130%; }
.btn-primary{ background:linear-gradient(135deg, var(--copper-bright), var(--copper)); color:var(--white); box-shadow:0 16px 34px -12px rgba(193,122,72,.65); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 22px 42px -12px rgba(193,122,72,.8); }
.btn-primary:active{ transform:translateY(-1px) scale(.98); }
.btn-ghost{ background:rgba(255,255,255,.08); color:var(--white); border:1px solid rgba(255,255,255,.35); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.55); transform:translateY(-3px); }
.btn-ghost:active{ transform:translateY(-1px) scale(.98); }
.hero-trust{ display:flex; gap:28px; margin-top:42px; flex-wrap:wrap; }
.hero-trust div{ color:var(--white); }
.hero-trust b{ display:block; font-size:1.5rem; color:var(--aqua-bright); font-family:var(--font-display); }
.hero-trust span{ font-size:.82rem; color:rgba(255,255,255,.65); }

/* ---- Signature element: Purity meter ---- */
.purity-card{
  position:relative; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16);
  border-radius:24px; padding:34px; backdrop-filter:blur(6px); box-shadow:var(--shadow-hard);
}
.purity-card h3{ color:var(--white); font-size:1.05rem; font-weight:600; margin-bottom:6px; }
.purity-card p{ color:rgba(255,255,255,.6); font-size:.85rem; margin-bottom:24px; }
.meter-row{ display:flex; align-items:center; gap:22px; }
.meter-ring{ position:relative; width:150px; height:150px; flex:none; }
.meter-ring svg{ width:100%; height:100%; transform:rotate(-90deg); }
.meter-ring circle{ fill:none; stroke-width:10; }
.meter-track{ stroke:rgba(255,255,255,.12); }
.meter-fill{ stroke:url(#meterGrad); stroke-linecap:round; stroke-dasharray:408; stroke-dashoffset:408; transition:stroke-dashoffset 2.2s cubic-bezier(.2,.8,.2,1); }
.meter-center{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.meter-center b{ font-family:var(--font-display); font-size:1.7rem; color:var(--white); }
.meter-center span{ font-size:.72rem; color:var(--aqua-bright); font-weight:600; }
.meter-labels{ display:flex; flex-direction:column; gap:14px; }
.meter-labels .row{ display:flex; align-items:center; gap:10px; }
.meter-labels .dot{ width:10px; height:10px; border-radius:3px; }
.meter-labels .row span{ color:rgba(255,255,255,.75); font-size:.85rem; }
.meter-labels .row b{ color:var(--white); }
.purity-footer{ margin-top:26px; padding-top:20px; border-top:1px dashed rgba(255,255,255,.18); display:flex; justify-content:space-between; align-items:center; }
.purity-footer span{ color:rgba(255,255,255,.6); font-size:.78rem; }
.purity-footer strong{ color:var(--aqua-bright); }

/* ============ SECTION HEADS ============ */
.section{ padding:110px 0; position:relative; }
.section-alt{ background:var(--white); }
.tag{
  display:inline-flex; align-items:center; gap:8px; color:var(--copper); font-weight:700; letter-spacing:1.6px;
  text-transform:uppercase; font-size:.75rem; margin-bottom:16px; padding:7px 16px 7px 12px;
  background:rgba(193,122,72,.08); border:1px solid rgba(193,122,72,.22); border-radius:999px;
}
.tag::before{ content:''; width:6px; height:6px; border-radius:50%; background:currentColor; flex:none; box-shadow:0 0 0 3px currentColor; opacity:.9; }
.section h2{ font-size:clamp(1.85rem, 3.5vw, 2.7rem); font-weight:700; letter-spacing:-.4px; color:var(--navy); max-width:640px; line-height:1.2; }
.section .sub{ color:var(--ink-soft); font-size:1.05rem; margin-top:16px; max-width:600px; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:56px; }

/* ============ ALL BRANDS STRIP ============ */
.brands-strip{ background:var(--mineral); padding:64px 0 72px; overflow:hidden; position:relative; }
.brands-strip::before{ content:''; position:absolute; width:280px; height:280px; border-radius:50%; background:rgba(41,198,183,.14); filter:blur(80px); top:-100px; right:15%; pointer-events:none; }
.brands-head{ text-align:center; margin-bottom:40px; position:relative; z-index:1; }
.brands-head .tag{ display:inline-flex; }
.brands-head h2{ color:var(--navy); font-size:clamp(1.6rem,3.2vw,2.3rem); letter-spacing:-.3px; }
.brands-head h2 span{ color:var(--copper); }
.brands-marquee{
  position:relative; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image:linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track{ display:flex; gap:18px; width:max-content; animation:marqueeScroll 16s linear infinite; }
.brands-marquee:hover .marquee-track{ animation-play-state:paused; }
.brand-pill{
  flex:none; padding:16px 32px; border-radius:14px; background:var(--white);
  border:1px solid rgba(10,46,54,.1); color:var(--navy); font-weight:700; font-family:var(--font-display);
  font-size:1.1rem; white-space:nowrap; box-shadow:var(--shadow-soft); transition:background .3s ease, border-color .3s ease, transform .3s ease;
}
.brand-pill:hover{ background:linear-gradient(135deg, rgba(41,198,183,.1), rgba(193,122,72,.08)); border-color:var(--aqua); transform:translateY(-4px) scale(1.04); }
@keyframes marqueeScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ============ SERVICES ============ */
.services-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; }
.service-card{
  background:var(--white); border-radius:var(--radius); padding:24px 24px 28px; box-shadow:var(--shadow-soft);
  border:1px solid rgba(10,46,54,.06); transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  position:relative; overflow:hidden;
}
.service-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--aqua), var(--copper)); transform:scaleX(0); transform-origin:left;
  transition:transform .4s ease; z-index:2;
}
.service-card:hover::before{ transform:scaleX(1); }
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-hard); }
.service-media{
  border-radius:14px; margin-bottom:22px; overflow:hidden;
  background:linear-gradient(150deg, var(--navy), var(--navy-soft));
  display:flex; align-items:center; justify-content:center; position:relative;
}
.service-media svg{ width:72%; height:72%; transition:transform .5s cubic-bezier(.2,.8,.2,1); position:relative; z-index:1; }
.service-card:hover .service-media svg{ transform:scale(1.08) rotate(-3deg); }
.service-media::after{
  content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(94,230,214,.25), transparent 60%);
}
.service-card h3{ font-size:1.15rem; color:var(--navy); margin-bottom:10px; }
.service-card p{ color:var(--ink-soft); font-size:.92rem; }

/* ============ WHY / STATS ============ */
/* ============ PROMO BANNER ============ */
.promo-banner{
  position:relative; overflow:hidden; padding:90px 0;
  background:linear-gradient(135deg, var(--navy-deep) 40%, var(--navy-soft) 100%);
}
.promo-banner::before, .promo-banner::after{
  content:''; position:absolute; border-radius:50%; filter:blur(70px); z-index:0; pointer-events:none;
}
.promo-banner::before{ width:340px; height:340px; background:rgba(41,198,183,.28); top:-120px; left:8%; }
.promo-banner::after{ width:280px; height:280px; background:rgba(193,122,72,.22); bottom:-100px; left:38%; }
.promo-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; }
.promo-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.promo-illustration{
  position:relative; width:100%; max-width:400px; opacity:.95;
  animation:promoFloat 6s ease-in-out infinite;
}
.promo-illustration svg{ width:100%; height:auto; display:block; filter:drop-shadow(0 30px 40px rgba(0,0,0,.35)); }
@keyframes promoFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
.promo-badge-card{
  position:absolute; right:0; top:8%; z-index:3; background:rgba(255,255,255,.1); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25); border-radius:16px; padding:14px 20px; display:flex; align-items:center; gap:12px;
  box-shadow:0 20px 40px -18px rgba(0,0,0,.5); animation:promoFloat 6s ease-in-out infinite reverse;
}
.promo-badge-card .badge-num{ font-family:var(--font-display); font-size:1.3rem; font-weight:700; color:var(--aqua-bright); }
.promo-badge-card .badge-label{ font-size:.7rem; color:rgba(255,255,255,.7); line-height:1.3; }
.promo-content{ position:relative; z-index:2; }
.promo-content h2{ color:var(--white); font-size:clamp(1.7rem,3.6vw,2.5rem); line-height:1.28; margin:14px 0 18px; letter-spacing:-.3px; }
.promo-content h2 span{ color:var(--aqua-bright); }
.promo-content p{ color:rgba(255,255,255,.75); font-size:1.02rem; margin-bottom:26px; max-width:480px; }
.promo-features{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:32px; }
.promo-features li{ display:flex; align-items:center; gap:9px; color:rgba(255,255,255,.85); font-size:.86rem; font-weight:500; }
.promo-features .feat-icon{
  width:28px; height:28px; border-radius:50%; background:rgba(94,230,214,.15); border:1px solid rgba(94,230,214,.35);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.promo-features svg{ width:14px; height:14px; stroke:var(--aqua-bright); }
@media (max-width: 980px){
  .promo-grid{ grid-template-columns:1fr; text-align:center; }
  .promo-content p{ margin-left:auto; margin-right:auto; }
  .promo-features{ justify-content:center; }
  .promo-visual{ order:-1; max-width:280px; margin:0 auto; }
  .promo-badge-card{ display:none; }
  .promo-banner{ padding:70px 0; }
}

.stats-section{
  background:var(--mineral-dim); color:var(--navy); padding:90px 0;
}
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.stat{
  text-align:center; padding:32px 20px; border-radius:18px; background:var(--white);
  border:1px solid rgba(10,46,54,.06); transition:transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.stat:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:rgba(41,198,183,.3); }
.stat-icon{
  width:52px; height:52px; margin:0 auto 18px; border-radius:14px; background:linear-gradient(135deg, var(--aqua), var(--copper));
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -8px rgba(41,198,183,.5);
  transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.stat:hover .stat-icon{ transform:scale(1.1) rotate(-6deg); }
.stat-icon svg{ width:24px; height:24px; stroke:var(--white); }
.stat b{ display:block; font-family:var(--font-display); font-size:2.4rem; color:var(--navy); }
.stat span{ color:var(--ink-soft); font-size:.88rem; }

/* ============ PROCESS ============ */
.process-timeline{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:22px; padding-top:8px; }
.timeline-line{
  position:absolute; top:28px; left:10%; width:80%; height:3px; z-index:0; border-radius:3px;
  background:linear-gradient(90deg, var(--aqua), var(--copper)); transform:scaleX(0); transform-origin:left;
  transition:transform 1.3s cubic-bezier(.2,.7,.2,1) .2s;
}
.process-timeline.in .timeline-line{ transform:scaleX(1); }
.process-step{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 6px; }
/* Stronger, bouncier entrance for the process steps */
.process-timeline.reveal-stagger > .process-step{
  opacity:0; transform:translateY(55px) scale(.8);
  transition:opacity .6s ease, transform .85s cubic-bezier(.34,1.56,.64,1);
}
.process-timeline.reveal-stagger.in > .process-step{ opacity:1; transform:translateY(0) scale(1); }
.process-timeline.reveal-stagger.in > .process-step:nth-child(2){ transition-delay:.12s; }
.process-timeline.reveal-stagger.in > .process-step:nth-child(3){ transition-delay:.24s; }
.process-timeline.reveal-stagger.in > .process-step:nth-child(4){ transition-delay:.36s; }
.process-timeline.reveal-stagger.in > .process-step:nth-child(5){ transition-delay:.48s; }
.step-node{ position:relative; margin-bottom:22px; }
.step-icon{
  width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg, var(--aqua), var(--copper));
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -8px rgba(41,198,183,.55);
  border:4px solid var(--mineral); transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.process-step:hover .step-icon{ transform:scale(1.14) rotate(-8deg); }
.step-icon svg{ width:22px; height:22px; stroke:var(--white); }
.step-num{
  position:absolute; top:-4px; right:-4px; width:22px; height:22px; border-radius:50%; background:var(--navy);
  color:var(--aqua-bright); font-size:.68rem; font-weight:700; font-family:var(--font-display);
  display:flex; align-items:center; justify-content:center; border:2px solid var(--mineral);
}
.process-step h4{ font-size:1rem; color:var(--navy); margin-bottom:8px; }
.process-step p{ font-size:.85rem; color:var(--ink-soft); max-width:180px; }
.step-body{ min-width:0; }

/* ============ PRICING ============ */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:stretch; }
.price-card{
  background:var(--white); border-radius:22px; padding:38px 32px; box-shadow:var(--shadow-soft);
  border:1px solid rgba(10,46,54,.07); display:flex; flex-direction:column; transition:transform .35s ease, box-shadow .35s ease;
}
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-hard); }
.price-card.featured{ background:linear-gradient(160deg, var(--navy), var(--navy-soft)); color:var(--white); transform:scale(1.04); box-shadow:var(--shadow-hard); }
.price-card.featured:hover{ transform:scale(1.04) translateY(-6px); }
.price-badge{ align-self:flex-start; background:var(--copper); color:var(--white); font-size:.72rem; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:16px; letter-spacing:.5px; }
.price-card h3{ font-size:1.3rem; margin-bottom:18px; }
.price-card .amount{ font-family:var(--font-display); font-size:2.4rem; font-weight:700; margin:14px 0; }
.price-card .amount span{ font-size:.95rem; font-weight:500; opacity:.7; }
.price-card ul{ margin:22px 0; flex:1; }
.price-card li{ display:flex; align-items:center; gap:12px; padding:7px 0; font-size:.92rem; }
.price-card li svg{ width:14px; height:14px; flex:none; stroke:var(--aqua); }
.price-card li .check-badge{
  width:24px; height:24px; border-radius:50%; background:rgba(41,198,183,.12); flex:none;
  display:flex; align-items:center; justify-content:center; transition:transform .3s ease, background .3s ease;
}
.price-card:hover li .check-badge{ background:rgba(41,198,183,.2); }
.price-card.featured li .check-badge{ background:rgba(94,230,214,.14); }
.price-card.featured li svg{ stroke:var(--aqua-bright); }
.price-card .btn{ justify-content:center; width:100%; }
.price-card:not(.featured) .btn{ background:linear-gradient(135deg, var(--navy-soft), var(--navy)); color:var(--white); }
.price-card.featured .btn{ background:linear-gradient(135deg, var(--copper-bright), var(--copper)); }

/* ============ TESTIMONIALS ============ */
.testi-wrap{ position:relative; max-width:780px; margin:0 auto; text-align:center; }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; animation:fadeSlide .6s ease; }
@keyframes fadeSlide{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.testi-stars{ color:var(--copper); font-size:1.3rem; letter-spacing:4px; margin-bottom:18px; }
.testi-slide p{ font-size:1.2rem; color:var(--navy); font-weight:500; line-height:1.7; }
.testi-who{ margin-top:24px; }
.testi-who b{ display:block; color:var(--navy); }
.testi-who span{ font-size:.85rem; color:var(--ink-soft); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:32px; }
.testi-dots button{ width:10px; height:10px; border-radius:50%; background:rgba(10,46,54,.2); transition:.3s; }
.testi-dots button.active{ background:var(--copper); width:26px; border-radius:6px; }

/* ============ AREAS ============ */
.areas-cloud{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
.area-chip{
  background:var(--white); border:1px solid rgba(10,46,54,.1); padding:13px 18px; border-radius:12px;
  font-size:.9rem; color:var(--navy); font-weight:500; transition:transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  display:flex; align-items:center; gap:8px;
}
.area-chip:hover{ background:var(--navy); color:var(--white); transform:translateY(-3px); box-shadow:var(--shadow-soft); }
.pin-icon{ width:15px; height:15px; flex:none; color:var(--copper); animation:pinBounce 1.8s ease-in-out infinite; }
.area-chip:hover .pin-icon{ color:var(--aqua-bright); }
@keyframes pinBounce{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-3px); } }
@media (max-width:980px){ .areas-cloud{ grid-template-columns:repeat(3, 1fr); } }
@media (max-width:680px){ .areas-cloud{ grid-template-columns:repeat(2, 1fr); } }

/* ============ FAQ ============ */
.faq-item{ background:var(--white); border-radius:16px; margin-bottom:14px; box-shadow:var(--shadow-soft); overflow:hidden; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; padding:22px 26px; font-weight:600; color:var(--navy); cursor:pointer; }
.faq-q .plus{ width:22px; height:22px; position:relative; flex:none; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--copper); border-radius:2px; transition:transform .35s ease; }
.faq-q .plus::before{ width:100%; height:2px; top:50%; left:0; transform:translateY(-50%); }
.faq-q .plus::after{ width:2px; height:100%; left:50%; top:0; transform:translateX(-50%); }
.faq-item.open .plus::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a p{ padding:0 26px 22px; color:var(--ink-soft); font-size:.94rem; }

/* ============ BOOKING ============ */
.booking-section{ background:linear-gradient(160deg, var(--navy-deep), var(--navy)); position:relative; overflow:hidden; }
.booking-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:50px; align-items:center; }
.booking-grid .section-copy h2{ color:var(--white); }
.booking-grid .section-copy .sub{ color:rgba(255,255,255,.7); }
.booking-points{ margin-top:28px; display:flex; flex-direction:column; gap:16px; }
.booking-points li{ display:flex; gap:14px; align-items:center; color:rgba(255,255,255,.85); font-size:.95rem; }
.booking-points svg{ width:16px; height:16px; stroke:var(--aqua-bright); flex:none; }
.check-badge-dark{
  width:30px; height:30px; border-radius:50%; background:rgba(94,230,214,.14); border:1px solid rgba(94,230,214,.3);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.booking-form{
  background:var(--white); border-radius:24px; padding:30px; box-shadow:var(--shadow-hard); position:relative;
}
.booking-form h3{ color:var(--navy); font-size:1.25rem; margin-bottom:4px; }
.booking-form .sub2{ color:var(--ink-soft); font-size:.86rem; margin-bottom:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.field{ display:flex; flex-direction:column; gap:5px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:.78rem; font-weight:600; color:var(--navy); }
.field input, .field select, .field textarea{
  border:1.5px solid rgba(10,46,54,.15); border-radius:10px; padding:10px 13px; font-family:inherit;
  font-size:.92rem; color:var(--ink); transition:border-color .25s ease, box-shadow .25s ease; background:var(--mineral);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--aqua); box-shadow:0 0 0 4px rgba(41,198,183,.15);
}
.booking-form .btn{ width:100%; justify-content:center; margin-top:6px; }
.booking-form .btn-primary{ position:relative; overflow:hidden; }
.check-circle{ width:80px; height:80px; margin-bottom:20px; }
.check-circle circle{ fill:none; stroke:var(--aqua); stroke-width:4; stroke-dasharray:220; stroke-dashoffset:220; }
.check-circle path{ fill:none; stroke:var(--aqua); stroke-width:5; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:40; stroke-dashoffset:40; }
.modal-overlay.show .check-circle circle{ animation:drawCircle .6s ease forwards; }
.modal-overlay.show .check-circle path{ animation:drawCheck .4s ease .5s forwards; }
@keyframes drawCircle{ to{ stroke-dashoffset:0; } }
@keyframes drawCheck{ to{ stroke-dashoffset:0; } }

/* form error state */
.form-error{
  display:none; color:#c0392b; background:#fdecea; border:1px solid #f5c6cb;
  border-radius:10px; padding:10px 14px; font-size:.85rem; margin-top:14px; text-align:center;
}
.form-error.show{ display:block; }
.btn-primary[disabled]{ opacity:.65; cursor:not-allowed; }

/* ============ BOOKING CONFIRMATION MODAL POPUP ============ */
.modal-overlay{
  position:fixed; inset:0; background:rgba(8,32,36,0.6); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; z-index:9999;
  opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
  padding:20px;
}
.modal-overlay.show{ opacity:1; visibility:visible; }
.modal-popup{
  position:relative; background:var(--white); border-radius:24px; padding:48px 40px;
  max-width:420px; width:100%; text-align:center; box-shadow:var(--shadow-hard);
  transform:translateY(24px) scale(.96); opacity:0; transition:transform .35s ease, opacity .35s ease;
}
.modal-overlay.show .modal-popup{ transform:translateY(0) scale(1); opacity:1; }
.modal-popup h4{ color:var(--navy); font-size:1.4rem; margin-bottom:10px; font-family:var(--font-display); }
.modal-popup p{ color:var(--ink-soft); font-size:.95rem; line-height:1.6; margin-bottom:26px; }
.modal-close{
  position:absolute; top:14px; right:16px; background:none; border:none; font-size:1.6rem;
  line-height:1; color:var(--ink-soft); cursor:pointer; width:32px; height:32px;
  display:flex; align-items:center; justify-content:center; border-radius:50%; transition:background .2s ease;
}
.modal-close:hover{ background:var(--mineral-dim); }
.modal-ok-btn{ display:inline-block; width:auto; padding:12px 32px; }

/* ============ CTA STRIP ============ */
.cta-strip{
  background:var(--copper); color:var(--white); text-align:center; padding:60px 0; position:relative; overflow:hidden;
}
.cta-strip h3{ font-size:clamp(1.5rem,3vw,2.1rem); margin-bottom:20px; }
.cta-strip .btn-ghost{ border-color:rgba(255,255,255,.6); }

/* ============ FOOTER ============ */
footer{ background:var(--navy-deep); color:rgba(255,255,255,.65); padding:76px 0 32px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px; }
.footer-grid h4{
  color:var(--white); font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:1.4px;
  margin-bottom:24px; position:relative; padding-bottom:14px;
}
.footer-grid h4::after{
  content:''; position:absolute; left:0; bottom:0; width:30px; height:2px;
  background:linear-gradient(90deg, var(--aqua), var(--copper)); border-radius:2px;
}
.footer-grid p{ font-size:.89rem; line-height:1.85; color:rgba(255,255,255,.6); }
.footer-grid ul li{ margin-bottom:12px; font-size:.89rem; }
.footer-grid ul li a{ display:inline-flex; align-items:center; transition:color .25s ease, transform .25s ease; }
.footer-grid ul li a:hover{ color:var(--aqua-bright); transform:translateX(4px); }
.footer-contact{ display:flex; flex-direction:column; gap:16px; }
.footer-contact li{ display:flex; align-items:flex-start; gap:12px; margin-bottom:0; font-size:.87rem; line-height:1.5; color:rgba(255,255,255,.65); }
.fc-icon{
  width:32px; height:32px; border-radius:9px; background:rgba(94,230,214,.08); border:1px solid rgba(94,230,214,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; transition:background .25s ease, transform .25s ease;
}
.footer-contact li:hover .fc-icon{ background:rgba(94,230,214,.18); transform:scale(1.08); }
.fc-icon svg{ width:15px; height:15px; display:block; fill:none; stroke:var(--aqua-bright); stroke-width:2; }
.footer-contact a{ color:rgba(255,255,255,.72); transition:color .25s ease; }
.footer-contact a:hover{ color:var(--aqua-bright); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); margin-top:56px; padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:.8rem; color:rgba(255,255,255,.55); }
.footer-legal{ display:flex; align-items:center; gap:10px; }
.footer-legal a{ color:rgba(255,255,255,.55); transition:color .25s ease; }
.footer-legal a:hover{ color:var(--aqua-bright); }
.footer-legal .dot{ color:rgba(255,255,255,.25); }

/* ============ FLOATING ACTION BUTTONS ============ */
.float-stack{
  position:fixed; bottom:96px; right:22px; z-index:900; display:flex; flex-direction:column; gap:14px;
}
.float-btn{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -8px rgba(0,0,0,.45); transition:transform .25s ease, box-shadow .25s ease;
  animation:floatBob 3s ease-in-out infinite;
}
.float-btn:hover{ transform:translateY(-4px) scale(1.06); }
.float-wa{ background:#25D366; }
.float-wa svg{ width:26px; height:26px; fill:#fff; }
.float-call{ background:linear-gradient(135deg, var(--copper-bright), var(--copper)); animation-delay:.4s; }
.float-call svg{ width:24px; height:24px; stroke:#fff; fill:none; }
@keyframes floatBob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-8px);} }

.scroll-top{
  position:fixed; bottom:26px; right:26px; z-index:900; width:52px; height:52px; border-radius:50%;
  background:var(--navy); border:1px solid rgba(94,230,214,.3); display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -8px rgba(0,0,0,.45); opacity:0; visibility:hidden; transform:translateY(16px);
  transition:opacity .35s ease, visibility .35s ease, transform .35s ease, background .25s ease;
}
.scroll-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover{ background:var(--navy-soft); }
.scroll-top svg{ width:20px; height:20px; stroke:var(--aqua-bright); transition:transform .3s ease; }
.scroll-top:hover svg{ transform:translateY(-3px); }

@media (max-width:680px){
  .float-stack{ right:16px; bottom:70px; gap:12px; }
  .float-btn{ width:50px; height:50px; }
  .scroll-top{ right:16px; bottom:20px; width:46px; height:46px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px; }
  .process-timeline{ grid-template-columns:1fr; gap:0; padding-top:0; }
  .timeline-line{ display:none; }
  .process-step{ flex-direction:row; align-items:flex-start; text-align:left; padding:0; margin-bottom:36px; }
  .process-step:last-child{ margin-bottom:0; }
  .step-node{ margin-bottom:0; margin-right:20px; flex:none; }
  .step-node::after{
    content:''; position:absolute; top:60px; left:50%; transform:translateX(-50%);
    width:3px; height:36px; border-radius:3px; background:linear-gradient(180deg, var(--aqua), var(--copper));
    opacity:.35;
  }
  .process-step:last-child .step-node::after{ display:none; }
  .process-step p{ max-width:none; }
  .step-body{ flex:1; padding-top:6px; }
  .pricing-grid{ grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .price-card.featured{ transform:none; }
  .price-card.featured:hover{ transform:translateY(-6px); }
  .booking-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 680px){
  .nav-links, .nav-cta{ display:none; }
  .burger{ display:flex; }
  .section{ padding:76px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:26px 18px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid > div:nth-child(1){ grid-column:1/-1; }
  .footer-grid > div:nth-child(4){ grid-column:1/-1; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .hero-trust{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px 16px; }
  .stat b{ font-size:2.1rem; }
}
