:root{
  --green-50:#EAFBF1;
  --green-100:#D2F4DD;
  --green-200:#9DE8B5;
  --green-300:#5DD68C;
  --green-400:#2EBE69;
  --green-500:#0FA958;
  --green-600:#0A8E47;
  --green-700:#0A6E39;
  --green-800:#08552B;
  --green-900:#053D1F;
  --ink:#0B1220;
  --ink-2:#28303D;
  --ink-3:#5B667A;
  --ink-4:#8A95A7;
  --paper:#FAFAF7;
  --paper-2:#F2F1EB;
  --paper-3:#E8E6DC;
  --line:#E7E4D8;
  --line-2:#D9D5C4;
  --warm:#FDF7E8;
  --gold:#C99A3F;
  --gold-soft:#FFE08A;
  --coral:#F26B1F;
  --coral-soft:#FFE2CC;
  --red:#D6432F;
  --shadow-card:0 1px 0 rgba(13,30,15,.04), 0 8px 22px -10px rgba(13,30,15,.12);
  --shadow-deep:0 30px 60px -30px rgba(8,55,30,.25), 0 6px 16px -8px rgba(8,55,30,.12);

  --ff-display:'Bricolage Grotesque', serif;
  --ff-body:'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-mono:'JetBrains Mono', monospace;
  --ff-hand:'Caveat', cursive;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0; overflow-x:hidden}
body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font-family:inherit; cursor:pointer; border:none; background:none}

.wrap{max-width:1320px; margin:0 auto; padding:0 28px}

/* ============ ANNOUNCEMENT BAR ============ */
.announce{
  background:var(--ink);
  color:white;
  font-size:12.5px;
  overflow:hidden;
  position:relative;
}
.announce-track{
  display:flex; gap:48px;
  padding:9px 0;
  animation:scroll 40s linear infinite;
  white-space:nowrap;
  width:max-content;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.announce-item{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:500;
}
.announce-item .em{font-size:14px}
.announce-item b{color:var(--gold-soft); font-weight:700}
.announce-dot{
  width:4px; height:4px; border-radius:50%;
  background:rgba(255,255,255,.35);
  align-self:center;
  flex-shrink:0;
}

/* ============ NAV ============ */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(250,250,247,.85);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family:var(--ff-display);
  font-weight:700; font-size:22px;
  letter-spacing:-.02em;
  color:var(--green-700);
}
.logo .mark{
  display:grid; place-items:center;
  flex-shrink:0;
}
.nav-links{
  display:flex; gap:32px; align-items:center;
}
.nav-links a{
  font-size:13.5px; font-weight:600;
  color:var(--ink-2);
}
.nav-links a:hover{color:var(--green-700)}
.nav-cta{
  display:flex; align-items:center; gap:8px;
  background:var(--ink); color:white;
  padding:10px 16px; border-radius:999px;
  font-size:13px; font-weight:700;
}
.nav-cta:hover{background:var(--green-600); color:white}
.nav-cta .pulse{
  width:6px; height:6px; border-radius:50%;
  background:var(--green-400);
  box-shadow:0 0 0 0 rgba(45,190,105,.7);
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  70%{box-shadow:0 0 0 6px rgba(45,190,105,0)}
}
.mobile-menu-btn{display:none}
.mobile-menu{display:none}
@media (max-width:720px){
  .mobile-menu{
    display:flex; flex-direction:column; gap:4px;
    padding:8px 0 16px;
    border-top:1px solid var(--line);
  }
  .mobile-menu a{
    padding:12px 4px;
    font-size:15px; font-weight:600;
    color:var(--ink-2);
    border-bottom:1px solid var(--line);
  }
  .mobile-menu a:last-child{border-bottom:none}
  .mobile-menu .mobile-menu-cta{
    margin-top:8px;
    background:var(--ink); color:white;
    text-align:center; border-radius:12px;
    border-bottom:none;
  }
}

/* ============ HERO ============ */
.hero{
  padding:60px 0 80px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:""; position:absolute;
  top:-100px; right:-150px; width:600px; height:600px;
  background:radial-gradient(circle, rgba(157,232,181,.4), transparent 60%);
  border-radius:50%;
  z-index:0;
}
.hero::after{
  content:""; position:absolute;
  bottom:0; left:-200px; width:500px; height:500px;
  background:radial-gradient(circle, rgba(255,224,138,.3), transparent 60%);
  border-radius:50%;
  z-index:0;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-tag{
  display:inline-flex; align-items:center; gap:10px;
  background:white; border:1px solid var(--line);
  padding:8px 14px; border-radius:999px;
  font-size:12.5px; font-weight:600;
  box-shadow:var(--shadow-card);
  margin-bottom:24px;
}
.hero-tag .dot{
  width:7px; height:7px; border-radius:50%; background:var(--green-500);
  box-shadow:0 0 0 0 rgba(15,169,88,.6);
  animation:pulse 2s infinite;
}
.hero-tag b{color:var(--green-700); font-weight:700}
.hero h1{
  font-family:var(--ff-display);
  font-size:clamp(48px, 6.5vw, 88px);
  line-height:.98;
  letter-spacing:-.035em;
  font-weight:700;
  margin:0;
}
.hero h1 .rot-wrap{
  display:inline-block;
  height:1em; overflow:hidden;
  vertical-align:bottom;
  position:relative;
}
.hero h1 .rotator{
  display:flex; flex-direction:column;
  animation:rotate 12s infinite;
}
.hero h1 .rotator span{
  height:1em;
  display:flex; align-items:center;
  color:var(--green-600);
  background:linear-gradient(180deg, transparent 65%, var(--green-100) 65%);
  padding:0 6px;
  border-radius:4px;
  white-space:nowrap;
}
@keyframes rotate{
  0%, 14%   {transform:translateY(0)}
  20%, 31%  {transform:translateY(-1em)}
  37%, 48%  {transform:translateY(-2em)}
  54%, 65%  {transform:translateY(-3em)}
  71%, 82%  {transform:translateY(-4em)}
  88%, 100% {transform:translateY(-5em)}
}
.hero p.lede{
  font-size:18px;
  color:var(--ink-3);
  line-height:1.55;
  margin:24px 0 32px;
  max-width:520px;
}
.hero p.lede b{color:var(--ink); font-weight:700}
.hero-cta-row{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.btn-primary{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--ink); color:white;
  padding:16px 24px; border-radius:14px;
  font-weight:700; font-size:15px;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 6px 16px -6px rgba(0,0,0,.3);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px -8px rgba(0,0,0,.35);
}
.btn-primary .arr{
  width:28px; height:28px; border-radius:50%;
  background:var(--green-500); display:grid; place-items:center;
  transition:transform .2s ease;
}
.btn-primary:hover .arr{transform:rotate(-45deg)}
.btn-primary .arr svg{width:14px;height:14px}

.btn-secondary{
  display:inline-flex; align-items:center; gap:10px;
  background:white; color:var(--ink);
  padding:15px 22px; border-radius:14px;
  font-weight:700; font-size:14.5px;
  border:1.5px solid var(--line);
}
.btn-secondary:hover{border-color:var(--ink); transform:translateY(-1px)}
.btn-secondary svg{width:16px;height:16px}

.hero-meta{
  display:flex; align-items:center; gap:24px;
  margin-top:36px;
  padding-top:28px;
  border-top:1px dashed var(--line-2);
}
.hero-meta .stat{
  display:flex; flex-direction:column; gap:2px;
}
.hero-meta .stat .n{
  font-family:var(--ff-display);
  font-size:26px; font-weight:700;
  letter-spacing:-.02em; line-height:1;
}
.hero-meta .stat .l{
  font-size:11.5px; color:var(--ink-3);
  text-transform:uppercase; letter-spacing:.06em;
  font-weight:600;
}
.hero-meta .vsep{
  width:1px; height:30px; background:var(--line-2);
}
.hero-meta .stars{
  color:#F5A623; font-size:14px; letter-spacing:1px;
}

/* hero visual */
.hero-visual{
  position:relative;
  aspect-ratio:0.95/1;
  max-width:520px;
  justify-self:end;
  width:100%;
}
.hero-blob{
  position:absolute; inset:0;
  background:linear-gradient(135deg, var(--green-500) 0%, var(--green-800) 100%);
  border-radius:48% 52% 60% 40% / 50% 45% 55% 50%;
  box-shadow:var(--shadow-deep);
  animation:morph 18s ease-in-out infinite;
}
@keyframes morph{
  0%,100%{border-radius:48% 52% 60% 40% / 50% 45% 55% 50%}
  33%{border-radius:60% 40% 45% 55% / 55% 50% 50% 45%}
  66%{border-radius:42% 58% 55% 45% / 60% 55% 45% 40%}
}
.hero-visual .phone-mock{
  position:absolute;
  top:5%; left:50%;
  transform:translateX(-50%);
  width:62%;
  aspect-ratio:9/19.5;
  background:#0B1220;
  border-radius:36px;
  padding:8px;
  box-shadow:
    0 40px 60px -20px rgba(0,0,0,.4),
    0 15px 30px -10px rgba(0,0,0,.25);
  z-index:3;
}
.hero-visual .phone-mock::before{
  content:""; position:absolute;
  top:14px; left:50%; transform:translateX(-50%);
  width:80px; height:22px;
  background:#000; border-radius:14px;
  z-index:5;
}
.hero-visual .phone-screen{
  width:100%; height:100%;
  background:white;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  display:flex; flex-direction:column;
  padding-top:36px;
}
.hero-visual .phone-top{
  padding:8px 14px 10px;
  border-bottom:1px solid var(--line);
}
.hero-visual .phone-addr{
  display:flex; align-items:center; gap:7px;
}
.hero-visual .phone-pin{
  width:24px; height:24px; border-radius:7px;
  background:var(--green-500); color:white;
  display:grid; place-items:center;
  flex-shrink:0;
}
.hero-visual .phone-pin svg{width:11px;height:11px}
.hero-visual .phone-addr-text{flex:1; min-width:0}
.hero-visual .phone-addr-text .l1{font-size:9.5px; font-weight:700; display:flex; align-items:center; gap:4px}
.hero-visual .phone-addr-text .l2{font-size:8px; color:var(--ink-3); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.hero-visual .phone-avatar{
  width:22px; height:22px; border-radius:50%;
  background:linear-gradient(135deg, var(--green-300), var(--green-600));
  color:white; font-size:9px; font-weight:700;
  display:grid; place-items:center;
}
.hero-visual .phone-body{
  flex:1; padding:10px;
  background:var(--paper);
  display:flex; flex-direction:column; gap:10px;
}
.hero-visual .phone-hero{
  background:linear-gradient(115deg, var(--green-900), var(--green-600));
  border-radius:12px;
  padding:10px;
  color:white;
  position:relative;
  overflow:hidden;
}
.hero-visual .phone-hero h4{
  margin:0; font-family:var(--ff-display);
  font-size:13px; line-height:1.05; font-weight:700;
  letter-spacing:-.02em;
}
.hero-visual .phone-hero h4 em{font-style:normal; color:var(--gold-soft)}
.hero-visual .phone-hero p{margin:2px 0 0; font-size:7.5px; opacity:.85}
.hero-visual .phone-hero .bubble{
  position:absolute; right:-6px; bottom:-10px;
  font-size:42px; opacity:.15;
}
.hero-visual .phone-services{
  background:white; border:1px solid var(--line);
  border-radius:10px;
  padding:8px;
}
.hero-visual .phone-services-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:5px; margin-top:6px;
}
.hero-visual .svc-cell{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:7px;
  padding:6px 2px; text-align:center;
}
.hero-visual .svc-cell .em{font-size:14px; line-height:1; display:block; margin-bottom:2px}
.hero-visual .svc-cell .nm{font-size:6.5px; font-weight:700; line-height:1}
.hero-visual .phone-services-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:2px;
}
.hero-visual .phone-services-head h5{margin:0; font-family:var(--ff-display); font-size:10px; font-weight:700}
.hero-visual .phone-cta{
  margin-top:auto;
  background:var(--green-500); color:white;
  border-radius:10px;
  padding:8px 10px;
  display:flex; justify-content:space-between; align-items:center;
  box-shadow:0 6px 14px -5px rgba(15,169,88,.5);
}
.hero-visual .phone-cta .lt .l1{font-size:6.5px; opacity:.85; text-transform:uppercase; letter-spacing:.05em; font-weight:600}
.hero-visual .phone-cta .lt .l2{font-family:var(--ff-display); font-size:9px; font-weight:700; margin-top:1px}
.hero-visual .phone-cta .rt{font-size:8px; font-weight:700; display:flex; align-items:center; gap:3px}
.hero-visual .phone-cta .rt svg{width:8px; height:8px}

/* floating cards */
.float-card{
  position:absolute;
  background:white;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  box-shadow:0 20px 40px -20px rgba(0,0,0,.25), 0 4px 10px rgba(0,0,0,.05);
  z-index:4;
}
.float-card.rating{
  top:14%; left:-3%;
  display:flex; align-items:center; gap:10px;
  animation:bob 6s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.float-card.rating .av{
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg, #FFB37A, #F26B1F);
  color:white; font-weight:700; font-size:14px;
  display:grid; place-items:center;
  font-family:var(--ff-display);
  flex-shrink:0;
}
.float-card.rating .info .stars{color:#F5A623; font-size:11px; letter-spacing:1px}
.float-card.rating .info .n{font-family:var(--ff-display); font-size:14px; font-weight:700; line-height:1.1; margin-top:1px}
.float-card.rating .info .q{font-size:10px; color:var(--ink-3); margin-top:1px}

.float-card.delivered{
  bottom:18%; right:-5%;
  animation:bob 7s ease-in-out infinite;
  animation-delay:-2s;
}
.float-card.delivered .head{
  display:flex; align-items:center; gap:6px;
  font-size:9.5px; font-weight:700;
  color:var(--green-700); margin-bottom:6px;
  text-transform:uppercase; letter-spacing:.06em;
}
.float-card.delivered .head .dot{
  width:6px; height:6px; border-radius:50%; background:var(--green-500);
  box-shadow:0 0 0 0 rgba(15,169,88,.6);
  animation:pulse 1.5s infinite;
}
.float-card.delivered .title{
  font-family:var(--ff-display);
  font-size:13.5px; font-weight:700;
  margin:0; line-height:1.2;
}
.float-card.delivered .sub{font-size:10px; color:var(--ink-3); margin-top:3px}
.float-card.delivered .bar{
  margin-top:8px; display:grid; grid-template-columns:repeat(4,1fr); gap:3px;
}
.float-card.delivered .bar div{height:3px; border-radius:2px; background:var(--green-500)}

.float-card.savings{
  top:46%; right:-10%;
  text-align:center; padding:10px 14px;
  animation:bob 8s ease-in-out infinite;
  animation-delay:-4s;
}
.float-card.savings .em{font-size:22px; display:block; margin-bottom:2px}
.float-card.savings .amt{
  font-family:var(--ff-display);
  font-size:18px; font-weight:800;
  color:var(--green-700);
  letter-spacing:-.02em;
}
.float-card.savings .label{font-size:9px; color:var(--ink-3); font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin-top:2px}

/* ============ TRUST STRIP ============ */
.trust-strip{
  background:white;
  padding:36px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.trust-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:40px;
}
.trust-label{
  font-family:var(--ff-mono);
  font-size:11.5px; font-weight:700;
  color:var(--ink-3);
  text-transform:uppercase; letter-spacing:.12em;
  white-space:nowrap;
  flex-shrink:0;
  max-width:160px;
  line-height:1.4;
}
.trust-logos{
  display:flex; align-items:center; gap:48px;
  flex-wrap:wrap;
  justify-content:center;
  flex:1;
}
.trust-logo{
  font-family:var(--ff-display);
  font-size:18px; font-weight:700;
  color:var(--ink-3);
  letter-spacing:-.01em;
  transition:color .2s ease;
  opacity:.7;
  display:flex; align-items:center; gap:8px;
}
.trust-logo:hover{color:var(--ink); opacity:1}
.trust-logo .em{font-size:18px; opacity:.8}
.trust-logo small{
  font-size:10px; color:var(--ink-4); font-weight:600;
  text-transform:uppercase; letter-spacing:.08em;
  font-family:var(--ff-body);
  display:block; line-height:1;
}
.trust-logo .stack{display:flex; flex-direction:column; gap:2px; line-height:1.1}

/* ============ SECTION COMMON ============ */
section{padding:100px 0; position:relative}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-mono);
  font-size:12px; font-weight:700;
  color:var(--green-700);
  text-transform:uppercase; letter-spacing:.12em;
  background:var(--green-50);
  border:1px solid var(--green-100);
  padding:6px 12px; border-radius:999px;
  margin-bottom:18px;
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--green-500)}
.h-section{
  font-family:var(--ff-display);
  font-size:clamp(34px, 4.5vw, 56px);
  line-height:1.02;
  letter-spacing:-.025em;
  font-weight:700;
  margin:0 0 14px;
  max-width:760px;
}
.h-section em{font-style:normal; color:var(--green-700)}
.h-section .hl{
  background:linear-gradient(180deg, transparent 65%, var(--gold-soft) 65%);
  padding:0 6px; border-radius:4px;
}
.h-sub{
  font-size:17px; color:var(--ink-3);
  max-width:580px; line-height:1.55;
  margin:0;
}
.section-head{margin-bottom:48px}
.section-head.center{text-align:center}
.section-head.center .h-section, .section-head.center .h-sub{margin-left:auto; margin-right:auto}
.section-head .row{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:32px;
}

/* ============ STATS BAND ============ */
.stats-band{
  background:linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
  padding:80px 0;
  color:white;
  position:relative;
  overflow:hidden;
}
.stats-band::before{
  content:""; position:absolute;
  top:-200px; right:-100px;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(255,210,122,.15), transparent 60%);
  border-radius:50%;
}
.stats-band::after{
  content:""; position:absolute;
  bottom:-200px; left:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(157,232,181,.18), transparent 60%);
  border-radius:50%;
}
.stats-inner{
  display:grid; grid-template-columns:1.2fr repeat(4, 1fr);
  gap:48px;
  align-items:center;
  position:relative;
  z-index:2;
}
.stats-band .pre{
  font-family:var(--ff-mono);
  font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  color:var(--gold-soft);
  margin-bottom:10px;
}
.stats-band h3{
  font-family:var(--ff-display);
  font-size:32px; line-height:1.05;
  margin:0; font-weight:700;
  letter-spacing:-.02em;
}
.stats-band h3 em{font-style:italic; color:var(--gold-soft)}
.stat-item{
  border-left:1px solid rgba(255,255,255,.18);
  padding-left:24px;
}
.stat-item .num{
  font-family:var(--ff-display);
  font-size:46px; font-weight:700;
  letter-spacing:-.03em;
  line-height:1;
  background:linear-gradient(135deg, white, var(--gold-soft));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-item .num sup{font-size:24px; vertical-align:top}
.stat-item .lbl{
  font-size:12.5px; font-weight:600;
  margin-top:6px; opacity:.85;
  line-height:1.3;
  white-space:pre-line;
}

/* ============ SERVICES ============ */
.services{
  background:var(--paper);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:8px;
}
.service-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-deep);
  border-color:var(--green-200);
}
.service-card.feature{
  background:linear-gradient(135deg, var(--green-900), var(--green-600));
  color:white;
  border:none;
  grid-row:span 2;
  display:flex; flex-direction:column;
}
.service-card .em-wrap{
  width:64px; height:64px; border-radius:18px;
  background:var(--green-50);
  display:grid; place-items:center;
  font-size:30px;
  margin-bottom:18px;
  position:relative;
}
.service-card.feature .em-wrap{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}
.service-card h3{
  font-family:var(--ff-display);
  font-size:22px; font-weight:700;
  margin:0 0 6px; letter-spacing:-.01em;
}
.service-card.feature h3{font-size:32px; line-height:1.05}
.service-card p{
  font-size:14px; color:var(--ink-3);
  line-height:1.5; margin:0 0 16px;
}
.service-card.feature p{color:rgba(255,255,255,.8); font-size:15px; max-width:340px}
.service-card .price{
  display:flex; align-items:baseline; gap:6px;
  margin-top:auto;
  padding-top:14px;
  border-top:1px dashed var(--line);
}
.service-card.feature .price{border-color:rgba(255,255,255,.2)}
.service-card .price .from{font-size:11.5px; color:var(--ink-4); font-weight:600; text-transform:uppercase; letter-spacing:.05em}
.service-card.feature .price .from{color:rgba(255,255,255,.6)}
.service-card .price .amt{
  font-family:var(--ff-display);
  font-size:22px; font-weight:700;
  color:var(--ink);
}
.service-card.feature .price .amt{color:white}
.service-card .price .unit{font-size:12.5px; color:var(--ink-3); font-weight:500}
.service-card.feature .price .unit{color:rgba(255,255,255,.7)}
.service-card .badge-pop{
  position:absolute; top:18px; right:18px;
  background:var(--coral);
  color:white;
  font-family:var(--ff-mono);
  font-size:9.5px; font-weight:700;
  padding:4px 8px; border-radius:999px;
  letter-spacing:.06em;
}
.service-card.feature .deco{
  position:absolute; right:-30px; bottom:-30px;
  font-size:200px; opacity:.08;
  line-height:1;
}
.service-card.feature .feature-list{
  margin:auto 0 18px;
  display:flex; flex-direction:column; gap:8px;
}
.service-card.feature .feature-list .li{
  display:flex; align-items:center; gap:8px;
  font-size:13px;
}
.service-card.feature .feature-list .li svg{
  width:14px; height:14px;
  color:var(--gold-soft);
  flex-shrink:0;
}

/* ============ HOW IT WORKS ============ */
.how-it-works{
  background:white;
  position:relative;
}
.how-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  margin-top:8px;
  position:relative;
}
.how-step{
  padding:32px 28px;
  border-right:1px solid var(--line);
  position:relative;
}
.how-step:last-child{border-right:none}
.how-step .num-row{
  display:flex; align-items:center; gap:14px;
  margin-bottom:18px;
}
.how-step .step-num{
  font-family:var(--ff-display);
  font-size:42px; font-weight:700;
  letter-spacing:-.03em;
  line-height:1;
  background:linear-gradient(135deg, var(--green-500), var(--green-800));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.how-step .step-icon{
  width:42px; height:42px; border-radius:12px;
  background:var(--paper-2); border:1px solid var(--line);
  display:grid; place-items:center;
  font-size:20px;
  margin-left:auto;
}
.how-step h4{
  font-family:var(--ff-display);
  font-size:20px; font-weight:700;
  margin:0 0 8px; letter-spacing:-.01em;
}
.how-step p{
  font-size:13.5px; color:var(--ink-3);
  margin:0; line-height:1.55;
}
.how-step .time{
  margin-top:16px;
  display:inline-flex; align-items:center; gap:6px;
  background:var(--green-50);
  color:var(--green-700);
  padding:5px 10px; border-radius:999px;
  font-family:var(--ff-mono);
  font-size:10.5px; font-weight:700;
  border:1px solid var(--green-100);
}
.how-step .time svg{width:11px;height:11px}

/* ============ PRICING ============ */
.pricing-band{
  background:var(--paper-2);
  padding:100px 0;
  position:relative;
  overflow:hidden;
}
.pricing-band::before{
  content:""; position:absolute;
  top:-100px; right:-150px; width:500px; height:500px;
  background:radial-gradient(circle, rgba(157,232,181,.3), transparent 60%);
  border-radius:50%;
}
.pricing-inner{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:start;
  position:relative; z-index:2;
}
.pricing-table{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.pricing-section-title{
  background:linear-gradient(90deg, var(--green-50), transparent);
  padding:14px 24px;
  font-family:var(--ff-mono);
  font-size:11.5px; font-weight:700;
  color:var(--green-700);
  text-transform:uppercase; letter-spacing:.12em;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.pricing-section-title .em{font-size:14px}
.pricing-row{
  padding:16px 24px;
  display:grid; grid-template-columns:1.5fr 1fr 1fr;
  gap:12px;
  align-items:center;
  border-bottom:1px solid var(--line);
  transition:background .2s ease;
}
.pricing-row:hover{background:var(--paper)}
.pricing-row:last-child{border-bottom:none}
.pricing-row.head{
  background:var(--paper-2);
  padding:10px 24px;
  font-size:10.5px; font-weight:700;
  color:var(--ink-3);
  text-transform:uppercase; letter-spacing:.06em;
}
.pricing-row .item{
  font-size:14px; font-weight:600;
  display:flex; align-items:center; gap:8px;
}
.pricing-row .item .em{font-size:18px}
.pricing-row .strike{
  font-size:13px; color:var(--ink-4);
  text-decoration:line-through;
  font-family:var(--ff-mono);
}
.pricing-row .now{
  font-family:var(--ff-display);
  font-size:18px; font-weight:700;
  color:var(--green-700);
  letter-spacing:-.01em;
}
.pricing-row .now small{
  font-size:11px; color:var(--ink-3);
  font-family:var(--ff-body);
  font-weight:500;
  margin-left:2px;
}

.pricing-side h2{
  font-family:var(--ff-display);
  font-size:42px; line-height:1.05; margin:0 0 18px;
  letter-spacing:-.025em; font-weight:700;
}
.pricing-side p{
  font-size:16px; color:var(--ink-3);
  line-height:1.55; margin:0 0 24px;
}
.pricing-note{
  background:white;
  border:1.5px solid var(--green-200);
  border-radius:16px;
  padding:18px 20px;
  display:flex; gap:14px;
  margin-bottom:18px;
}
.pricing-note .em-wrap{
  width:42px; height:42px; border-radius:12px;
  background:var(--green-50); display:grid; place-items:center;
  flex-shrink:0; font-size:20px;
}
.pricing-note h5{margin:0; font-size:14px; font-weight:700}
.pricing-note p{margin:3px 0 0; font-size:12.5px; color:var(--ink-3); line-height:1.5}

/* ============ DOORWASH vs TRADITIONAL ============ */
.compare{background:var(--paper)}
.compare-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:20px;
}
.compare-card{
  border-radius:24px;
  padding:32px;
  position:relative;
  overflow:hidden;
}
.compare-card.them{
  background:white;
  border:1px solid var(--line);
}
.compare-card.us{
  background:linear-gradient(135deg, var(--green-900), var(--green-700));
  color:white;
}
.compare-card .tag{
  display:inline-block;
  font-family:var(--ff-mono);
  font-size:10.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
  padding:6px 12px; border-radius:999px;
  margin-bottom:16px;
}
.compare-card.them .tag{
  background:var(--paper-2); color:var(--ink-3);
}
.compare-card.us .tag{
  background:rgba(255,210,122,.18);
  color:var(--gold-soft);
  border:1px solid rgba(255,210,122,.3);
}
.compare-card h3{
  font-family:var(--ff-display);
  font-size:28px; font-weight:700;
  margin:0 0 24px; letter-spacing:-.015em;
}
.compare-card.them h3{color:var(--ink)}
.compare-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:14px;
}
.compare-list li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:14.5px; line-height:1.5;
}
.compare-list li svg{
  width:20px; height:20px; border-radius:50%;
  flex-shrink:0; margin-top:2px;
  padding:3px;
}
.compare-card.them .compare-list li svg{
  background:var(--paper-2); color:var(--ink-3);
}
.compare-card.us .compare-list li svg{
  background:var(--green-500); color:white;
}
.compare-card.us .compare-list li b{color:var(--gold-soft); font-weight:700}
.compare-card.them .compare-list li{color:var(--ink-3)}

/* ============ APP SHOWCASE ============ */
.app-showcase{
  background:linear-gradient(180deg, white 0%, var(--paper) 100%);
  overflow:hidden;
  position:relative;
}
.app-show-inner{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}
.app-features{
  display:grid; grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:32px;
}
.app-feature{
  background:white;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  transition:all .2s ease;
}
.app-feature:hover{
  border-color:var(--green-200);
  transform:translateY(-2px);
  box-shadow:var(--shadow-card);
}
.app-feature .icon{
  width:36px; height:36px; border-radius:10px;
  background:var(--green-50);
  display:grid; place-items:center;
  color:var(--green-700);
  margin-bottom:12px;
}
.app-feature .icon svg{width:18px; height:18px}
.app-feature h4{
  font-family:var(--ff-display);
  font-size:15px; font-weight:700;
  margin:0 0 4px;
}
.app-feature p{font-size:12.5px; color:var(--ink-3); margin:0; line-height:1.5}

.store-row{
  display:flex; gap:10px; margin-top:32px; flex-wrap:wrap;
}
.store-btn{
  background:var(--ink); color:white;
  padding:12px 18px; border-radius:14px;
  display:flex; align-items:center; gap:12px;
  transition:transform .15s ease;
  border:1px solid var(--ink);
}
.store-btn:hover{transform:translateY(-2px)}
.store-btn svg{width:24px; height:24px; flex-shrink:0}
.store-btn .text{display:flex; flex-direction:column; line-height:1}
.store-btn .text small{font-size:9.5px; opacity:.7; font-weight:500; margin-bottom:2px}
.store-btn .text b{font-family:var(--ff-display); font-size:14px; font-weight:700}
.qr-block{
  margin-left:auto;
  background:white; padding:8px; border-radius:14px;
  border:1px solid var(--line);
  display:flex; align-items:center; gap:10px;
  box-shadow:var(--shadow-card);
}
.qr-block .qr{
  width:54px; height:54px; flex-shrink:0;
  background:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
  background-size:8px 8px;
  background-position:0 0, 0 4px, 4px -4px, -4px 0;
  border-radius:6px;
  position:relative;
}
.qr-block .qr::after{
  content:""; position:absolute; inset:30% 30%;
  background:white; border-radius:2px;
  box-shadow:inset 0 0 0 2px var(--ink);
}
.qr-block .qr-text{font-size:10px; line-height:1.3; max-width:80px; color:var(--ink-3); font-weight:600}
.qr-block .qr-text b{display:block; color:var(--ink); font-size:11px; font-family:var(--ff-display)}

/* phone stack visual */
.phone-stack{
  position:relative;
  aspect-ratio:1/1;
  max-width:560px;
  margin-left:auto;
}
.phone-stack .stack-blob{
  position:absolute;
  inset:10% 5%;
  background:
    radial-gradient(circle at 30% 30%, var(--green-300), transparent 50%),
    radial-gradient(circle at 70% 70%, var(--gold-soft), transparent 60%),
    var(--green-100);
  border-radius:40%;
  filter:blur(40px);
  opacity:.5;
}
.stack-phone{
  position:absolute;
  background:#0B1220;
  border-radius:32px;
  padding:7px;
  box-shadow:var(--shadow-deep);
}
.stack-phone::before{
  content:""; position:absolute;
  top:12px; left:50%; transform:translateX(-50%);
  width:65px; height:18px;
  background:#000; border-radius:12px;
  z-index:5;
}
.stack-phone .ss{
  width:100%; height:100%;
  background:white; border-radius:26px;
  overflow:hidden;
  padding-top:30px;
  display:flex; flex-direction:column;
}
.stack-phone.a{
  top:0; left:8%; width:55%; aspect-ratio:9/19.5;
  z-index:2;
  transform:rotate(-6deg);
}
.stack-phone.b{
  top:6%; right:8%; width:55%; aspect-ratio:9/19.5;
  z-index:3;
  transform:rotate(6deg);
}

/* tracking screen content (phone A) */
.ss-track{padding:8px 12px; flex:1; display:flex; flex-direction:column; background:var(--paper)}
.ss-track .head{
  font-family:var(--ff-display);
  font-size:14px; font-weight:700;
  padding-bottom:8px; border-bottom:1px solid var(--line);
}
.ss-track .live{
  margin-top:10px;
  background:linear-gradient(135deg, var(--green-900), var(--green-700));
  color:white; border-radius:12px;
  padding:10px;
}
.ss-track .live .id{font-family:var(--ff-mono); font-size:7px; opacity:.6}
.ss-track .live .title{font-family:var(--ff-display); font-size:11px; font-weight:700; margin-top:2px}
.ss-track .live .status{
  margin-top:8px; padding:6px 8px;
  background:rgba(255,255,255,.1); border-radius:8px;
  display:flex; align-items:center; gap:6px;
  font-size:8.5px; font-weight:700;
}
.ss-track .live .status .d{width:5px; height:5px; border-radius:50%; background:var(--gold-soft)}
.ss-track .live .status .eta{margin-left:auto; opacity:.85; font-size:7.5px; font-family:var(--ff-mono)}
.ss-track .live .progress{margin-top:8px; display:grid; grid-template-columns:repeat(4,1fr); gap:2px}
.ss-track .live .progress div{height:2.5px; border-radius:1px; background:rgba(255,255,255,.18)}
.ss-track .live .progress div.done{background:var(--gold-soft)}

/* home screen content (phone B) */
.ss-home{padding:8px 12px; flex:1; display:flex; flex-direction:column; background:var(--paper)}
.ss-home .addr{
  display:flex; align-items:center; gap:6px;
  padding-bottom:8px; border-bottom:1px solid var(--line);
}
.ss-home .addr .p{
  width:18px; height:18px; border-radius:5px;
  background:var(--green-500); color:white;
  display:grid; place-items:center; font-size:8px;
}
.ss-home .addr .info .h{font-size:9px; font-weight:700}
.ss-home .addr .info .s{font-size:6.5px; color:var(--ink-3)}
.ss-home .promo{
  margin-top:10px;
  background:linear-gradient(115deg, var(--green-900), var(--green-600));
  color:white; border-radius:12px;
  padding:10px; position:relative;
}
.ss-home .promo h4{font-family:var(--ff-display); font-size:13px; margin:0; line-height:1.05; font-weight:700}
.ss-home .promo h4 em{font-style:normal; color:var(--gold-soft)}
.ss-home .promo p{margin:3px 0 0; font-size:7.5px; opacity:.8}
.ss-home .svc{
  margin-top:8px;
  background:white; border:1px solid var(--line);
  border-radius:10px; padding:8px;
}
.ss-home .svc-head{
  display:flex; justify-content:space-between;
  font-family:var(--ff-display);
  font-size:9px; font-weight:700;
  margin-bottom:4px;
}
.ss-home .svc-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:3px;
}
.ss-home .svc-grid > div{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:6px; padding:5px 2px;
  text-align:center; font-size:6px; font-weight:700;
  line-height:1.1;
}
.ss-home .svc-grid > div .em{font-size:11px; display:block; margin-bottom:1px}

/* ============ COVERAGE / SERVICE AREAS ============ */
.coverage{
  background:var(--ink);
  color:white;
  position:relative;
  overflow:hidden;
}
.coverage::before{
  content:""; position:absolute;
  top:-200px; left:50%; transform:translateX(-50%);
  width:800px; height:800px;
  background:radial-gradient(circle, rgba(15,169,88,.15), transparent 60%);
}
.coverage-inner{
  display:grid; grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
  position:relative; z-index:2;
}
.coverage .eyebrow{
  background:rgba(15,169,88,.15);
  border-color:rgba(15,169,88,.3);
  color:var(--green-300);
}
.coverage h2{
  font-family:var(--ff-display);
  font-size:48px; line-height:1.02;
  letter-spacing:-.025em; font-weight:700;
  margin:0 0 18px;
}
.coverage h2 em{font-style:italic; color:var(--gold-soft); font-family:var(--ff-hand); font-weight:500; font-size:1.2em}
.coverage p{font-size:16px; color:rgba(255,255,255,.7); line-height:1.55; margin:0 0 28px}
.coverage .neighborhoods{
  display:flex; flex-wrap:wrap; gap:8px;
}
.nb{
  padding:8px 14px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  font-size:13px; font-weight:600;
  display:inline-flex; align-items:center; gap:6px;
  transition:all .2s ease;
}
.nb:hover{background:rgba(15,169,88,.2); border-color:var(--green-500)}
.nb .dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--green-500);
  box-shadow:0 0 6px var(--green-500);
}
.nb.soon{
  background:transparent; border-style:dashed;
  color:rgba(255,255,255,.5);
}
.nb.soon .dot{background:var(--gold-soft); box-shadow:none}

/* Patna map illustration */
.patna-map{
  position:relative;
  aspect-ratio:1/1;
  max-width:480px;
  margin-left:auto;
  width:100%;
}
.patna-map .ring{
  position:absolute; inset:0;
  border:1px dashed rgba(255,255,255,.12);
  border-radius:50%;
}
.patna-map .ring.r2{inset:8%; opacity:.6}
.patna-map .ring.r3{inset:18%; opacity:.4}
.patna-map .ring.r4{inset:28%; opacity:.3}
.patna-map .center-pin{
  position:absolute; top:50%; left:50%;
  width:56px; height:56px;
  background:linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius:50% 50% 50% 0;
  transform:translate(-50%, -50%) rotate(-45deg);
  box-shadow:0 12px 30px rgba(15,169,88,.5), inset 0 2px 0 rgba(255,255,255,.2);
  z-index:5;
}
.patna-map .center-pin::after{
  content:""; position:absolute;
  top:50%; left:50%;
  width:18px; height:18px; border-radius:50%;
  background:white;
  transform:translate(-50%, -50%);
}
.patna-map .center-label{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%, 28px);
  font-family:var(--ff-mono);
  font-size:11px; font-weight:700;
  color:white; white-space:nowrap;
  background:rgba(11,18,32,.8);
  padding:4px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  z-index:5;
}
.map-dot{
  position:absolute;
  width:12px; height:12px; border-radius:50%;
  background:var(--green-400);
  box-shadow:0 0 0 0 rgba(45,190,105,.5);
  animation:pulse 2s infinite;
}
.map-dot::before{
  content:""; position:absolute; inset:3px;
  background:white; border-radius:50%;
}
.map-dot .label{
  position:absolute; top:-26px; left:50%;
  transform:translateX(-50%);
  font-size:10px; font-weight:700;
  background:white; color:var(--ink);
  padding:3px 8px; border-radius:999px;
  white-space:nowrap;
  box-shadow:0 4px 10px rgba(0,0,0,.2);
}

/* ============ TESTIMONIALS ============ */
.testimonials{background:var(--paper)}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:8px;
}
.testimonial{
  background:white;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  display:flex; flex-direction:column;
  position:relative;
}
.testimonial.feat{
  background:linear-gradient(135deg, var(--warm), white);
  border-color:var(--gold-soft);
}
.testimonial .quote-mark{
  position:absolute; top:18px; right:18px;
  font-family:var(--ff-display);
  font-size:80px; line-height:.7;
  color:var(--green-100);
  z-index:0;
}
.testimonial.feat .quote-mark{color:var(--gold-soft); opacity:.5}
.testimonial .stars{
  color:#F5A623; font-size:14px; letter-spacing:1px;
  margin-bottom:12px;
  position:relative; z-index:1;
}
.testimonial blockquote{
  font-family:var(--ff-display);
  font-size:18px; line-height:1.4;
  letter-spacing:-.005em;
  margin:0 0 22px;
  font-weight:500;
  position:relative; z-index:1;
}
.testimonial.feat blockquote{font-size:22px}
.testimonial blockquote em{color:var(--green-700); font-style:normal; font-weight:600}
.testimonial .footer{
  display:flex; align-items:center; gap:12px;
  margin-top:auto;
  padding-top:18px;
  border-top:1px dashed var(--line);
  position:relative; z-index:1;
}
.testimonial .av{
  width:42px; height:42px; border-radius:50%;
  color:white; font-family:var(--ff-display);
  font-weight:700; font-size:17px;
  display:grid; place-items:center;
  flex-shrink:0;
}
.testimonial .footer .info h5{
  font-size:14px; font-weight:700; margin:0;
}
.testimonial .footer .info p{
  font-size:11.5px; color:var(--ink-3); margin:1px 0 0;
  font-family:var(--ff-mono);
}
.testimonial .verified{
  margin-left:auto;
  display:inline-flex; align-items:center; gap:5px;
  background:var(--green-50); color:var(--green-700);
  padding:4px 8px; border-radius:999px;
  font-size:10px; font-weight:700;
}
.testimonial .verified svg{width:11px; height:11px}

/* ============ FAQ ============ */
.faq{background:white}
.faq-inner{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:60px;
  align-items:start;
}
.faq-side .help-card{
  background:linear-gradient(135deg, var(--green-900), var(--green-700));
  color:white;
  border-radius:24px;
  padding:28px;
  margin-top:32px;
}
.faq-side .help-card .ico{
  width:48px; height:48px; border-radius:14px;
  background:rgba(255,210,122,.15);
  display:grid; place-items:center;
  color:var(--gold-soft);
  margin-bottom:18px;
}
.faq-side .help-card .ico svg{width:22px; height:22px}
.faq-side .help-card h4{
  font-family:var(--ff-display);
  font-size:22px; margin:0 0 6px;
  letter-spacing:-.01em; font-weight:700;
}
.faq-side .help-card p{
  font-size:13.5px; opacity:.8; margin:0 0 20px;
  line-height:1.5;
}
.faq-side .help-card .contact-list{
  display:flex; flex-direction:column; gap:10px;
}
.faq-side .help-card .contact-list a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  font-size:13px; font-weight:600;
  transition:background .2s ease;
}
.faq-side .help-card .contact-list a:hover{background:rgba(255,255,255,.12)}
.faq-side .help-card .contact-list a svg{width:14px; height:14px; opacity:.7}

.faq-list{
  display:flex; flex-direction:column;
  gap:12px;
}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:16px;
  padding:0;
  overflow:hidden;
  transition:border-color .2s ease;
}
.faq-item.open{border-color:var(--green-200); background:white}
.faq-q{
  padding:18px 22px;
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
  font-family:var(--ff-display);
  font-size:17px; font-weight:600;
  letter-spacing:-.005em;
  width:100%;
  text-align:left;
  color:var(--ink);
}
.faq-q .plus{
  width:28px; height:28px; border-radius:50%;
  background:var(--paper-2); display:grid; place-items:center;
  flex-shrink:0; transition:all .25s ease;
  color:var(--ink-2);
}
.faq-q .plus svg{width:14px; height:14px; transition:transform .25s ease}
.faq-item.open .plus{background:var(--green-500); color:white}
.faq-item.open .plus svg{transform:rotate(45deg)}
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
  padding:0 22px;
}
.faq-item.open .faq-a{
  max-height:300px;
  padding-bottom:18px;
}
.faq-a p{
  margin:0; font-size:14.5px; color:var(--ink-3);
  line-height:1.6;
}
.faq-a p b{color:var(--ink-2); font-weight:700}

/* ============ DOWNLOAD CTA ============ */
.cta-band{
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(255,210,122,.18), transparent 60%),
    radial-gradient(800px 400px at 80% 70%, rgba(15,169,88,.18), transparent 60%),
    linear-gradient(135deg, var(--green-900), var(--ink));
  color:white;
  padding:120px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:24px 24px;
}
.cta-inner{
  position:relative; z-index:2;
  text-align:center;
  max-width:880px;
  margin:0 auto;
}
.cta-inner .eyebrow{
  background:rgba(255,210,122,.15);
  border-color:rgba(255,210,122,.3);
  color:var(--gold-soft);
}
.cta-inner h2{
  font-family:var(--ff-display);
  font-size:clamp(40px, 6vw, 76px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:0 0 20px;
  font-weight:700;
}
.cta-inner h2 em{
  font-style:italic; color:var(--gold-soft);
  font-family:var(--ff-hand); font-weight:500;
  font-size:1.1em;
}
.cta-inner p{
  font-size:18px; color:rgba(255,255,255,.75);
  margin:0 auto 40px; max-width:560px;
  line-height:1.55;
}
.cta-store-row{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  margin-bottom:32px;
}
.cta-band .store-btn{
  background:white; color:var(--ink);
  border-color:white;
  padding:14px 22px;
}
.cta-band .store-btn:hover{background:var(--gold-soft); color:var(--ink)}
.cta-trust{
  display:flex; gap:32px; justify-content:center; align-items:center;
  font-size:13px; color:rgba(255,255,255,.6);
  margin-top:32px;
  flex-wrap:wrap;
}
.cta-trust .item{display:flex; align-items:center; gap:8px}
.cta-trust .item svg{width:14px; height:14px; color:var(--green-400)}

/* ============ FOOTER ============ */
footer{
  background:var(--ink);
  color:white;
  padding:80px 0 40px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .logo{
  color:white;
  margin-bottom:18px;
}
.footer-brand p{
  font-size:14px; color:rgba(255,255,255,.6);
  line-height:1.5; margin:0 0 20px; max-width:280px;
}
.footer-contact{
  display:flex; flex-direction:column; gap:8px;
  font-size:13.5px; color:rgba(255,255,255,.75);
}
.footer-contact a{
  display:flex; align-items:center; gap:10px;
  transition:color .2s ease;
}
.footer-contact a:hover{color:white}
.footer-contact a svg{width:14px; height:14px; opacity:.7}
.footer-col h5{
  font-family:var(--ff-display);
  font-size:14px; font-weight:700;
  margin:0 0 16px;
  color:white;
}
.footer-col ul{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:10px;
}
.footer-col li a{
  font-size:13.5px; color:rgba(255,255,255,.6);
  transition:color .2s ease;
  display:inline-flex; align-items:center; gap:6px;
}
.footer-col li a:hover{color:white}
.footer-col li a .badge{
  font-size:9px; padding:2px 6px; border-radius:999px;
  background:var(--green-600); color:white;
  font-weight:700; letter-spacing:.04em;
  font-family:var(--ff-mono);
}
.footer-bottom{
  padding-top:32px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:20px;
}
.footer-bottom .copy{
  font-family:var(--ff-mono);
  font-size:11.5px; color:rgba(255,255,255,.5);
  letter-spacing:.04em;
}
.footer-bottom .copy span{color:var(--gold-soft)}
.footer-bottom .socials{display:flex; gap:8px}
.footer-bottom .socials a{
  width:34px; height:34px; border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:grid; place-items:center;
  color:rgba(255,255,255,.7);
  transition:all .2s ease;
}
.footer-bottom .socials a:hover{
  background:var(--green-500); border-color:var(--green-500); color:white;
}
.footer-bottom .socials svg{width:15px; height:15px}

.footer-curtain{
  text-align:center;
  margin-top:60px;
  padding:0;
  overflow:hidden;
}
.footer-curtain .big{
  font-family:var(--ff-display);
  font-size:clamp(60px, 14vw, 220px);
  font-weight:800;
  letter-spacing:-.05em; line-height:.85;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  white-space:nowrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width:1100px){
  .hero-inner{grid-template-columns:1fr; gap:80px}
  .hero-visual{margin:0 auto; max-width:420px}
  .stats-inner{grid-template-columns:1fr 1fr 1fr; gap:32px}
  .stats-band h3{grid-column:span 3; margin-bottom:12px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .service-card.feature{grid-row:span 1; grid-column:span 2}
  .how-grid{grid-template-columns:1fr 1fr}
  .how-step{border-right:none; border-bottom:1px solid var(--line)}
  .how-step:nth-child(2n){border-right:none}
  .how-step:nth-child(odd){border-right:1px solid var(--line)}
  .pricing-inner{grid-template-columns:1fr; gap:40px}
  .compare-grid{grid-template-columns:1fr}
  .app-show-inner{grid-template-columns:1fr; gap:60px}
  .phone-stack{margin:0 auto}
  .coverage-inner{grid-template-columns:1fr; gap:60px}
  .patna-map{margin:0 auto}
  .testimonials-grid{grid-template-columns:1fr 1fr}
  .testimonial.feat{grid-column:span 2}
  .faq-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr 1fr; gap:32px}
  .footer-brand{grid-column:span 3}
}
@media (max-width:720px){
  .wrap{padding:0 18px}
  section{padding:70px 0}
  .nav-links{display:none}
  .mobile-menu-btn{
    display:grid; place-items:center;
    width:38px; height:38px; border-radius:10px;
    background:white; border:1px solid var(--line);
  }
  .hero{padding:32px 0 60px}
  .hero h1{font-size:46px}
  .hero p.lede{font-size:16px}
  .hero-meta{gap:16px; flex-wrap:wrap}
  .hero-meta .vsep{display:none}
  .stats-inner{grid-template-columns:1fr 1fr}
  .stats-band h3{grid-column:span 2}
  .services-grid{grid-template-columns:1fr}
  .service-card.feature{grid-column:span 1}
  .how-grid{grid-template-columns:1fr}
  .how-step{border-right:none !important; border-bottom:1px solid var(--line)}
  .testimonials-grid{grid-template-columns:1fr}
  .testimonial.feat{grid-column:span 1}
  .footer-top{grid-template-columns:1fr 1fr; gap:24px}
  .footer-brand{grid-column:span 2}
  .pricing-row{grid-template-columns:1.5fr 1fr 1fr; padding:14px 18px}
  .pricing-side h2{font-size:32px}
  .compare-card{padding:24px}
  .float-card.savings{display:none}
  .trust-inner{flex-direction:column; gap:24px}
  .trust-logos{gap:24px}
  .cta-trust{flex-direction:column; gap:12px}
  .qr-block{margin-left:0}
}

/* ============ "SEE HOW IT WORKS" EXPLAINER MODAL ============ */
/* Vertical 9:16 animated explainer played inside a popup. All scene
   internals are namespaced under .dw-vid so they never collide with
   the rest of the site. Keyframes are dw-prefixed for the same reason. */

.dw-modal-overlay{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  background:rgba(8,20,12,.72);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  overflow:hidden;
  animation:dwOverlayIn .25s ease both;
}
@keyframes dwOverlayIn{from{opacity:0}to{opacity:1}}

.dw-modal-inner{
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  animation:dwModalIn .35s cubic-bezier(.2,.9,.25,1.1) both;
}
@keyframes dwModalIn{from{opacity:0; transform:translateY(18px) scale(.96)}to{opacity:1; transform:translateY(0) scale(1)}}

.dw-modal-close{
  position:absolute; top:10px; right:10px; z-index:30;
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18); cursor:pointer;
  background:rgba(11,18,32,.55); color:#fff;
  display:grid; place-items:center;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  box-shadow:0 4px 14px -4px rgba(0,0,0,.5);
  transition:background .15s ease, transform .15s ease;
}
.dw-modal-close:hover{background:rgba(11,18,32,.78); transform:scale(1.06)}

.dw-modal-controls{
  display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; justify-content:center;
}
.dw-ctrl{
  border:none; cursor:pointer; font-family:inherit;
  border-radius:999px; padding:11px 20px;
  font-size:14px; font-weight:700;
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none; transition:transform .15s ease, filter .15s ease, background .15s ease;
}
.dw-ctrl svg{width:15px; height:15px}
.dw-ctrl.primary{background:var(--green-500); color:#fff; box-shadow:0 10px 22px -10px rgba(15,169,88,.7)}
.dw-ctrl.primary:hover{filter:brightness(1.05); transform:translateY(-1px)}
.dw-ctrl.ghost{background:rgba(255,255,255,.12); color:#fff}
.dw-ctrl.ghost:hover{background:rgba(255,255,255,.2)}

/* ===== The stage (9:16) ===== */
.dw-vid{
  width:405px; height:720px;
  border-radius:28px; overflow:hidden; position:relative;
  font-family:'Plus Jakarta Sans', system-ui, sans-serif;
  color:var(--ink); -webkit-font-smoothing:antialiased;
  transform-origin:center center;
  transform:scale(min((100vw - 40px)/405, (100vh - 130px)/720, 1));
  background:
    radial-gradient(700px 400px at 50% -5%, #C8F0D6 0%, transparent 55%),
    radial-gradient(500px 400px at 110% 100%, #FFE8B8 0%, transparent 55%),
    var(--paper);
  box-shadow:0 40px 80px -30px rgba(0,0,0,.6);
}
.dw-vid::after{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(10,110,57,.05) 1px, transparent 1px);
  background-size:22px 22px; pointer-events:none;
}

.dw-vid .stage-brand{
  position:absolute; top:26px; left:0; right:0;
  display:flex; align-items:center; justify-content:center; gap:9px; z-index:20;
}
.dw-vid .stage-brand .mark{
  display:grid; place-items:center; flex-shrink:0;
}
.dw-vid .stage-brand .mark img{width:30px; height:30px; object-fit:contain; display:block}
.dw-vid .stage-brand .name{
  font-family:'Bricolage Grotesque',serif; font-weight:700; font-size:19px;
  letter-spacing:-.02em; color:var(--green-700);
}

.dw-vid .progress-dots{
  position:absolute; top:70px; left:0; right:0;
  display:flex; justify-content:center; gap:6px; z-index:20;
}
.dw-vid .pd{width:22px; height:4px; border-radius:2px; background:var(--line); overflow:hidden; position:relative}
.dw-vid .pd .fill{position:absolute; inset:0; background:var(--green-500); transform:scaleX(0); transform-origin:left}

.dw-vid .scene{
  position:absolute; inset:0; padding:120px 30px 110px;
  display:flex; flex-direction:column; align-items:center; opacity:0; z-index:5;
}
.dw-vid .scene-art{flex:1; width:100%; display:flex; align-items:center; justify-content:center; position:relative}
.dw-vid .scene-caption{text-align:center; width:100%}
.dw-vid .scene-caption .step-no{
  display:inline-block; font-family:'JetBrains Mono',monospace;
  font-size:11px; font-weight:700; color:var(--green-700);
  background:var(--green-50); border:1px solid var(--green-100);
  padding:4px 11px; border-radius:999px; letter-spacing:.08em; margin-bottom:12px;
}
.dw-vid .scene-caption h2{
  font-family:'Bricolage Grotesque',serif; font-size:30px; line-height:1.05;
  font-weight:700; letter-spacing:-.025em; margin:0;
}
.dw-vid .scene-caption h2 em{font-style:normal; color:var(--green-600)}
.dw-vid .scene-caption p{
  font-size:14px; color:var(--ink-3); margin:10px auto 0;
  line-height:1.45; max-width:280px;
}

/* SCENE 1 phone */
.dw-vid .mini-phone{
  width:170px; height:340px; background:var(--ink);
  border-radius:30px; padding:7px;
  box-shadow:0 30px 50px -20px rgba(8,55,30,.4); position:relative;
}
.dw-vid .mini-phone::before{
  content:""; position:absolute; top:11px; left:50%; transform:translateX(-50%);
  width:54px; height:15px; background:#000; border-radius:10px; z-index:5;
}
.dw-vid .mini-screen{
  width:100%; height:100%; background:var(--paper); border-radius:24px;
  overflow:hidden; padding:26px 10px 10px; display:flex; flex-direction:column; gap:7px;
}
.dw-vid .ms-addr{display:flex; align-items:center; gap:5px; background:#fff; border:1px solid var(--line); border-radius:9px; padding:6px 8px}
.dw-vid .ms-addr .p{width:16px; height:16px; border-radius:4px; background:var(--green-500); flex-shrink:0}
.dw-vid .ms-addr .lines{flex:1}
.dw-vid .ms-addr .lines .l1{height:4px; width:60%; background:var(--ink); border-radius:2px; opacity:.8}
.dw-vid .ms-addr .lines .l2{height:3px; width:85%; background:var(--ink-3); border-radius:2px; margin-top:3px; opacity:.4}
.dw-vid .ms-promo{background:linear-gradient(115deg,var(--green-900),var(--green-600)); border-radius:10px; padding:10px; color:#fff; position:relative; overflow:hidden}
.dw-vid .ms-promo .pt{font-family:'Bricolage Grotesque',serif; font-size:13px; font-weight:700; line-height:1.1}
.dw-vid .ms-promo .pt em{color:var(--gold-soft); font-style:normal}
.dw-vid .ms-promo .ps{font-size:7px; opacity:.8; margin-top:3px}
.dw-vid .ms-svc{display:grid; grid-template-columns:repeat(4,1fr); gap:4px}
.dw-vid .ms-svc > div{background:#fff; border:1px solid var(--line); border-radius:7px; padding:7px 2px; text-align:center; font-size:13px}
.dw-vid .ms-cta{
  margin-top:auto; background:var(--green-500); color:#fff; border-radius:10px; padding:9px;
  display:flex; align-items:center; justify-content:center; gap:4px; font-size:10px; font-weight:700; position:relative;
}
.dw-vid .ms-cta svg{width:9px; height:9px}
.dw-vid .tap-finger{position:absolute; width:34px; height:34px; z-index:10; bottom:34px; right:30px; opacity:0}
.dw-vid .tap-finger .ring{position:absolute; inset:0; border:2.5px solid var(--green-600); border-radius:50%; opacity:0}
.dw-vid .tap-finger .dot{position:absolute; inset:9px; background:rgba(10,142,71,.4); border-radius:50%}

/* SCENE 2 pickup */
.dw-vid .pickup-scene{position:relative; width:100%; height:100%}
.dw-vid .road{position:absolute; bottom:30px; left:0; right:0; height:3px; background:repeating-linear-gradient(90deg, var(--ink-3) 0 14px, transparent 14px 28px); opacity:.25}
.dw-vid .door-frame{
  position:absolute; bottom:33px; left:24px; width:66px; height:104px;
  background:linear-gradient(180deg, #fff, #f2f1eb);
  border:2.5px solid var(--green-700); border-bottom:none; border-radius:8px 8px 0 0;
}
.dw-vid .door-frame::before{content:""; position:absolute; top:48px; right:9px; width:6px; height:6px; border-radius:50%; background:var(--gold)}
.dw-vid .door-frame::after{content:"🏠"; position:absolute; top:-30px; left:50%; transform:translateX(-50%); font-size:20px}
.dw-vid .scooter{position:absolute; bottom:30px; left:140px; font-size:62px; line-height:1; transform:translateX(180px)}
.dw-vid .scooter .bag{
  position:absolute; top:8px; left:-10px; width:26px; height:24px;
  background:var(--green-500); border-radius:5px; border:2px solid #fff;
  box-shadow:0 3px 6px rgba(0,0,0,.2); display:grid; place-items:center;
  font-size:7px; color:#fff; font-weight:800; font-family:'Bricolage Grotesque',serif;
}
.dw-vid .knock{position:absolute; bottom:130px; left:74px; font-size:22px; opacity:0}
.dw-vid .speed-line{position:absolute; height:2px; border-radius:2px; background:var(--green-400); opacity:0}

/* SCENE 3 washer */
.dw-vid .washer{
  width:180px; height:200px; background:linear-gradient(180deg, #fff, #f4f3ed);
  border:3px solid var(--ink); border-radius:22px; position:relative;
  box-shadow:0 24px 44px -22px rgba(8,55,30,.35);
}
.dw-vid .washer .panel{position:absolute; top:14px; left:14px; right:14px; height:22px; border-radius:8px; background:var(--green-900); display:flex; align-items:center; padding:0 9px; gap:6px}
.dw-vid .washer .panel .knob{width:11px; height:11px; border-radius:50%; background:var(--gold-soft)}
.dw-vid .washer .panel .led{width:5px; height:5px; border-radius:50%; background:var(--green-400); margin-left:auto; box-shadow:0 0 6px var(--green-400)}
.dw-vid .washer .panel .led.b{background:var(--coral); box-shadow:0 0 6px var(--coral)}
.dw-vid .porthole{
  position:absolute; top:54px; left:50%; transform:translateX(-50%);
  width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle at 38% 32%, #eaf6ff, #bfe0f5 60%, #9fcde8);
  border:9px solid #d8d5c8; box-shadow:inset 0 4px 10px rgba(0,0,0,.15); overflow:hidden;
}
.dw-vid .porthole .water{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 70%, rgba(15,169,88,.25), transparent 40%),
    linear-gradient(180deg, rgba(140,205,235,.3), rgba(110,180,215,.5));
}
.dw-vid .tumble{position:absolute; top:50%; left:50%; width:60px; height:60px; transform-origin:center}
.dw-vid .tumble .cloth{position:absolute; width:24px; height:18px; border-radius:5px}
.dw-vid .tumble .c1{background:var(--green-400); top:0; left:6px}
.dw-vid .tumble .c2{background:var(--gold-soft); top:18px; left:-12px; width:20px}
.dw-vid .tumble .c3{background:#7BAFE0; top:14px; left:30px; width:18px; height:15px}
.dw-vid .tumble .c4{background:#FF9E7A; top:34px; left:14px; width:16px; height:14px}
.dw-vid .bubble{
  position:absolute; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(255,255,255,.35));
  border:1px solid rgba(255,255,255,.6); opacity:0;
}
.dw-vid .care-tags{position:absolute; inset:0; pointer-events:none}
.dw-vid .care-tag{
  position:absolute; background:#fff; border:1px solid var(--green-200); border-radius:999px;
  padding:5px 11px; font-size:10.5px; font-weight:700; color:var(--green-700);
  display:flex; align-items:center; gap:5px;
  box-shadow:0 6px 14px -6px rgba(8,55,30,.25); opacity:0; white-space:nowrap;
}
.dw-vid .care-tag .em{font-size:12px}
.dw-vid .care-tag.t1{top:24px; left:-6px}
.dw-vid .care-tag.t2{top:96px; right:-14px}
.dw-vid .care-tag.t3{bottom:20px; left:0px}

/* SCENE 4 delivered */
.dw-vid .delivered-scene{position:relative; width:100%; height:100%; display:flex; align-items:center; justify-content:center}
.dw-vid .fresh-bag{width:140px; height:150px; position:relative}
.dw-vid .fresh-bag .bag-body{
  position:absolute; inset:0 0 0 0; top:24px;
  background:linear-gradient(160deg, var(--green-500), var(--green-700));
  border-radius:14px 14px 18px 18px;
  box-shadow:0 24px 44px -20px rgba(8,55,30,.5), inset 0 2px 0 rgba(255,255,255,.2);
}
.dw-vid .fresh-bag .handle{
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:64px; height:54px; border:7px solid var(--green-700); border-bottom:none; border-radius:32px 32px 0 0;
}
.dw-vid .fresh-bag .logo-badge{
  position:absolute; top:60px; left:50%; transform:translateX(-50%);
  width:44px; height:44px; border-radius:12px;
  background:rgba(255,255,255,.18); border:1.5px solid rgba(255,255,255,.4);
  display:grid; place-items:center;
}
.dw-vid .fresh-bag .logo-badge svg{width:24px; height:24px; color:#fff}
.dw-vid .fresh-bag .shirt{position:absolute; bottom:-6px; left:50%; transform:translateX(-50%); font-size:30px}
.dw-vid .sparkle{position:absolute; color:var(--gold); font-size:20px; opacity:0}
.dw-vid .sparkle.k1{top:6px; left:30px}
.dw-vid .sparkle.k2{top:40px; right:24px; font-size:15px}
.dw-vid .sparkle.k3{bottom:30px; left:22px; font-size:17px}
.dw-vid .sparkle.k4{top:70px; left:8px; font-size:12px}
.dw-vid .badge-24{
  position:absolute; top:18px; right:6px; background:var(--ink); color:#fff;
  border-radius:12px; padding:7px 11px; text-align:center;
  box-shadow:0 10px 20px -8px rgba(0,0,0,.4); transform:scale(0) rotate(-12deg);
}
.dw-vid .badge-24 .big{font-family:'Bricolage Grotesque',serif; font-size:18px; font-weight:800; line-height:1; color:var(--gold-soft)}
.dw-vid .badge-24 .small{font-size:7px; font-weight:700; letter-spacing:.08em; margin-top:1px; opacity:.8}

/* SCENE 5 outro */
.dw-vid .outro{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 380px at 50% 20%, rgba(255,210,122,.18), transparent 60%),
    linear-gradient(150deg, var(--green-900), var(--ink));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:40px 34px; text-align:center; opacity:0; z-index:8;
}
.dw-vid .outro .o-mark{
  width:64px; height:64px; border-radius:18px;
  background:#fff;
  display:grid; place-items:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.6);
  margin-bottom:22px; transform:scale(0);
}
.dw-vid .outro .o-mark img{width:42px; height:42px; object-fit:contain; display:block}
.dw-vid .outro h2{font-family:'Bricolage Grotesque',serif; font-size:34px; line-height:1.02; font-weight:700; letter-spacing:-.03em; color:#fff; margin:0}
.dw-vid .outro h2 em{font-style:normal; color:var(--gold-soft)}
.dw-vid .outro .o-offer{
  margin-top:18px; display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,210,122,.15); border:1px solid rgba(255,210,122,.35);
  color:var(--gold-soft); padding:9px 16px; border-radius:999px; font-size:14px; font-weight:700;
}
.dw-vid .outro .o-url{margin-top:24px; font-family:'JetBrains Mono',monospace; font-size:12px; color:rgba(255,255,255,.6); letter-spacing:.04em}

/* ===== Animation timeline (one loop = 24s) ===== */
.dw-vid .scene.s1{animation:dwSceneShow 24s infinite; animation-delay:0s}
.dw-vid .scene.s2{animation:dwSceneShow 24s infinite; animation-delay:4.5s}
.dw-vid .scene.s3{animation:dwSceneShowLong 24s infinite; animation-delay:9s}
.dw-vid .scene.s4{animation:dwSceneShow 24s infinite; animation-delay:15s}
@keyframes dwSceneShow{
  0%{opacity:0; transform:translateY(12px)}
  3%{opacity:1; transform:translateY(0)}
  16%{opacity:1; transform:translateY(0)}
  19%{opacity:0; transform:translateY(-12px)}
  100%{opacity:0; transform:translateY(-12px)}
}
@keyframes dwSceneShowLong{
  0%{opacity:0; transform:translateY(12px)}
  2.5%{opacity:1; transform:translateY(0)}
  22%{opacity:1; transform:translateY(0)}
  25%{opacity:0; transform:translateY(-12px)}
  100%{opacity:0; transform:translateY(-12px)}
}
.dw-vid .pd.d1 .fill{animation:dwPdFill 24s infinite; animation-delay:0s}
.dw-vid .pd.d2 .fill{animation:dwPdFill 24s infinite; animation-delay:4.5s}
.dw-vid .pd.d3 .fill{animation:dwPdFillLong 24s infinite; animation-delay:9s}
.dw-vid .pd.d4 .fill{animation:dwPdFill 24s infinite; animation-delay:15s}
.dw-vid .pd.d5 .fill{animation:dwPdFillOutro 24s infinite; animation-delay:19.5s}
@keyframes dwPdFill{0%{transform:scaleX(0)}3%{transform:scaleX(.1)}18%{transform:scaleX(1)}100%{transform:scaleX(1)}}
@keyframes dwPdFillLong{0%{transform:scaleX(0)}25%{transform:scaleX(1)}100%{transform:scaleX(1)}}
@keyframes dwPdFillOutro{0%{transform:scaleX(0)}8%{transform:scaleX(1)}100%{transform:scaleX(1)}}

.dw-vid .tap-finger{animation:dwTapShow 24s infinite; animation-delay:1.6s}
@keyframes dwTapShow{
  0%{opacity:0; transform:translate(20px,20px) scale(.6)}
  4%{opacity:1; transform:translate(0,0) scale(1)}
  7%{transform:translate(0,0) scale(.82)}
  9%{transform:translate(0,0) scale(1)}
  14%{opacity:1}17%{opacity:0}100%{opacity:0}
}
.dw-vid .tap-finger .ring{animation:dwTapRing 24s infinite; animation-delay:1.9s}
@keyframes dwTapRing{0%,5%{opacity:.7; transform:scale(.4)}9%{opacity:0; transform:scale(1.6)}100%{opacity:0}}
.dw-vid .ms-cta{animation:dwCtaFlash 24s infinite; animation-delay:1.9s}
@keyframes dwCtaFlash{0%,7%{background:var(--green-500)}8%{background:var(--green-700); transform:scale(.96)}10%{background:var(--green-500); transform:scale(1)}100%{background:var(--green-500)}}

.dw-vid .scooter{animation:dwScooterMove 24s infinite; animation-delay:4.5s}
@keyframes dwScooterMove{
  0%{transform:translateX(180px)}4%{transform:translateX(180px)}
  9%{transform:translateX(0)}15%{transform:translateX(0)}
  18%{transform:translateX(-220px)}100%{transform:translateX(-220px)}
}
.dw-vid .knock{animation:dwKnockShow 24s infinite; animation-delay:5.8s}
@keyframes dwKnockShow{0%,2%{opacity:0; transform:scale(.5)}4%{opacity:1; transform:scale(1.1)}6%{opacity:1; transform:scale(1)}9%{opacity:1}11%{opacity:0}100%{opacity:0}}
.dw-vid .door-frame{animation:dwDoorPulse 24s infinite; animation-delay:5.9s}
@keyframes dwDoorPulse{0%,4%{transform:scale(1)}5%{transform:scale(1.04)}7%{transform:scale(1)}100%{transform:scale(1)}}
.dw-vid .speed-line.sl1{top:42%; left:50%; width:24px; animation:dwSpeed 24s infinite; animation-delay:5.0s}
.dw-vid .speed-line.sl2{top:52%; left:46%; width:18px; animation:dwSpeed 24s infinite; animation-delay:5.15s}
.dw-vid .speed-line.sl3{top:60%; left:52%; width:14px; animation:dwSpeed 24s infinite; animation-delay:5.3s}
@keyframes dwSpeed{0%,4%{opacity:0; transform:translateX(40px)}6%{opacity:.7; transform:translateX(0)}8%{opacity:0; transform:translateX(-30px)}100%{opacity:0}}

.dw-vid .tumble{animation:dwTumble 2.5s linear infinite; animation-delay:9s}
@keyframes dwTumble{from{transform:translate(-50%,-50%) rotate(0deg)}to{transform:translate(-50%,-50%) rotate(360deg)}}
.dw-vid .porthole .water{animation:dwSlosh 2.2s ease-in-out infinite; animation-delay:9s}
@keyframes dwSlosh{0%,100%{transform:translateX(-3px) rotate(-1deg)}50%{transform:translateX(3px) rotate(1deg)}}
.dw-vid .b1{width:12px;height:12px; top:30%; left:25%; animation:dwRise 2.6s ease-in infinite; animation-delay:9.2s}
.dw-vid .b2{width:8px;height:8px; top:50%; left:60%; animation:dwRise 2.2s ease-in infinite; animation-delay:9.6s}
.dw-vid .b3{width:15px;height:15px; top:60%; left:35%; animation:dwRise 3s ease-in infinite; animation-delay:9.9s}
.dw-vid .b4{width:7px;height:7px; top:45%; left:48%; animation:dwRise 2.4s ease-in infinite; animation-delay:10.4s}
.dw-vid .b5{width:10px;height:10px; top:55%; left:70%; animation:dwRise 2.7s ease-in infinite; animation-delay:10.1s}
@keyframes dwRise{0%{opacity:0; transform:translateY(10px) scale(.4)}20%{opacity:.95}100%{opacity:0; transform:translateY(-55px) scale(1)}}
.dw-vid .care-tag.t1{animation:dwTagPop 24s infinite; animation-delay:10.4s}
.dw-vid .care-tag.t2{animation:dwTagPop 24s infinite; animation-delay:11.4s}
.dw-vid .care-tag.t3{animation:dwTagPop 24s infinite; animation-delay:12.4s}
@keyframes dwTagPop{0%{opacity:0; transform:translateY(8px) scale(.8)}3%{opacity:1; transform:translateY(0) scale(1)}20%{opacity:1; transform:translateY(0) scale(1)}24%{opacity:0; transform:translateY(-6px)}100%{opacity:0}}

.dw-vid .fresh-bag{animation:dwBagPop 24s infinite; animation-delay:15s}
@keyframes dwBagPop{
  0%{transform:scale(0) translateY(30px); opacity:0}
  3%{transform:scale(1.08) translateY(0); opacity:1}
  5%{transform:scale(1) translateY(0)}
  8%,18%{transform:scale(1) translateY(0)}
  8.5%{transform:translateY(-6px)}
  100%{transform:scale(1) translateY(0); opacity:1}
}
.dw-vid .sparkle.k1{animation:dwTwinkle 1.6s ease-in-out infinite; animation-delay:15.4s}
.dw-vid .sparkle.k2{animation:dwTwinkle 1.6s ease-in-out infinite; animation-delay:15.7s}
.dw-vid .sparkle.k3{animation:dwTwinkle 1.6s ease-in-out infinite; animation-delay:16.0s}
.dw-vid .sparkle.k4{animation:dwTwinkle 1.6s ease-in-out infinite; animation-delay:16.3s}
@keyframes dwTwinkle{0%{opacity:0; transform:scale(.4) rotate(0deg)}30%{opacity:1; transform:scale(1.2) rotate(20deg)}60%{opacity:.7; transform:scale(1) rotate(0deg)}100%{opacity:0; transform:scale(.4)}}
.dw-vid .badge-24{animation:dwBadgePop 24s infinite; animation-delay:15.9s}
@keyframes dwBadgePop{0%{transform:scale(0) rotate(-12deg)}4%{transform:scale(1.15) rotate(6deg)}6%{transform:scale(1) rotate(-6deg)}18%{transform:scale(1) rotate(-6deg)}100%{transform:scale(1) rotate(-6deg)}}

.dw-vid .outro{animation:dwOutroShow 24s infinite; animation-delay:19.5s}
@keyframes dwOutroShow{0%{opacity:0}3%{opacity:1}18%{opacity:1}20%{opacity:0}100%{opacity:0}}
.dw-vid .outro .o-mark{animation:dwMarkPop 24s infinite; animation-delay:19.7s}
@keyframes dwMarkPop{0%{transform:scale(0) rotate(-20deg)}4%{transform:scale(1.15) rotate(5deg)}6%{transform:scale(1) rotate(0)}18%{transform:scale(1)}100%{transform:scale(1)}}

@media (prefers-reduced-motion: reduce){
  .dw-vid .scene, .dw-vid .outro{opacity:1; animation:none}
  .dw-vid .scene.s1{opacity:1}
  .dw-vid .scene.s2, .dw-vid .scene.s3, .dw-vid .scene.s4, .dw-vid .outro{display:none}
}


/* Legal pages */
.legal-page{padding:48px 28px 80px;max-width:800px}
.legal-back{display:inline-block;margin-bottom:32px;font-weight:600;color:var(--green-600)}
.legal-back:hover{text-decoration:underline}
.legal-content h1,.legal-content h2,.legal-content h3{font-family:var(--ff-display);color:var(--ink);margin:1.5em 0 .5em}
.legal-content h1{font-size:2rem;margin-top:0}
.legal-content p,.legal-content li{color:var(--ink-2);line-height:1.7}
.legal-content ul,.legal-content ol{padding-left:1.25em;margin:.75em 0}
.legal-content a{color:var(--green-600)}
[hidden]{display:none !important}
.mobile-menu:not([hidden]){display:none}
@media (max-width:720px){
  .mobile-menu:not([hidden]){display:flex;flex-direction:column;gap:4px;padding:8px 0 16px;border-top:1px solid var(--line)}
}
