/* ═══════════════════════════════════════════
   WASHLY — Lime porcelain brand stylesheet
   White base · ink type · electric lime accent
   ═══════════════════════════════════════════ */

:root {
  --lime:   #C9F53C;
  --lime-soft: #EEF3E4;
  --lime-deep: #7A9A1E;
  --olive:  #3E4A14;
  --ink:    #15181A;
  --ink-2:  #15181A;
  --ink-3:  #1E2224;
  --mint:   #F6F8F0;
  --bg:     #FFFFFF;
  --white:  #ffffff;
  --text:   #15181A;
  --muted:  #5A6157;
  --line:   #E7EAE0;
  --radius: 18px;
  --shadow-soft: 0 8px 30px rgba(21, 24, 26, 0.06);
  --shadow-lift: 0 20px 50px rgba(21, 24, 26, 0.12);
  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { width: min(1160px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; color: var(--ink); }
h3 { font-size: 1.3rem; font-weight: 700; }

/* Signature highlighter swipe */
.grad-text {
  color: var(--ink);
  background: var(--lime);
  padding: 0 0.18em;
  border-radius: 0.18em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 0;
  text-decoration: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(201, 245, 60, 0.5);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(201, 245, 60, 0.65); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--lime); transform: translateY(-3px); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--line);
}
.btn-outline:hover { background: var(--lime-soft); border-color: var(--lime); transform: translateY(-3px); }

.btn-invert {
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 14px 34px rgba(21,24,26,.25);
}
.btn-invert:hover { transform: translateY(-3px) scale(1.02); }

/* ── Navbar ──────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(21,24,26,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-badge {
  width: 46px; height: 46px; border-radius: 14px; overflow: hidden;
  background: var(--lime);
  display: grid; place-items: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.08); }
.brand-badge img { width: 100%; height: 100%; object-fit: cover; }
.brand-badge-fallback {
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  color: var(--ink); display: grid; place-items: center; width: 100%; height: 100%;
}
.brand-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-name em { font-style: normal; color: var(--lime-deep); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
  position: relative; transition: color .2s ease;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
  background: var(--lime); border-radius: 2px; transition: width .28s ease;
}
.nav-links a:not(.btn):hover { color: var(--lime-deep); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; font-size: .95rem; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  padding: 170px 0 130px;
  color: var(--text);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: glowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-glow-a { width: 480px; height: 480px; background: var(--lime-soft); top: -160px; right: -80px; }
.hero-glow-b { width: 380px; height: 380px; background: var(--lime-soft); bottom: -140px; left: -100px; opacity: .4; animation-delay: -7s; }
@keyframes glowDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.15); }
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--lime-soft); border: 1px solid var(--line);
  font-weight: 700; font-size: .88rem; color: var(--olive);
}
.pill-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--lime-deep);
  box-shadow: 0 0 0 0 rgba(201,245,60,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,245,60,.6); }
  70% { box-shadow: 0 0 0 11px rgba(201,245,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,245,60,0); }
}

.hero h1 { margin: 22px 0 18px; color: var(--ink); }
.hero-sub { font-size: 1.18rem; max-width: 520px; color: var(--muted); }
.hero-sub strong { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 18px;
  margin-top: 38px; font-size: .93rem; font-weight: 600; color: var(--muted);
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-stars { color: var(--lime-deep); letter-spacing: 2px; }
.trust-sep { width: 1px; height: 22px; background: var(--line); }

/* Hero visual / mascot */
.hero-visual { display: grid; place-items: center; }
.mascot-stage { position: relative; width: min(430px, 100%); aspect-ratio: 1; display: grid; place-items: center; }

.mascot-ring {
  position: absolute; inset: 6%;
  border-radius: 50%;
  border: 2px dashed rgba(122,154,30,.35);
  animation: spin 40s linear infinite;
}
.mascot-ring.ring-2 { inset: 15%; border-color: var(--line); animation-direction: reverse; animation-duration: 55s; }
@keyframes spin { to { transform: rotate(360deg); } }

.mascot-float {
  position: relative; z-index: 2; width: 78%;
  animation: floaty 5.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 30px rgba(21,24,26,.18));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-22px) rotate(1.5deg); }
}
.mascot-img { filter: none; }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px; border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  font-size: .82rem; line-height: 1.25;
  animation: floaty 6s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.float-card small { color: var(--muted); font-weight: 600; }
.fc-emoji { font-size: 1.5rem; }
.float-card-a { top: 8%; left: -4%; animation-delay: -1.2s; }
.float-card-b { bottom: 14%; right: -6%; animation-delay: -3s; }
.float-card-c { bottom: -2%; left: 6%; animation-delay: -4.5s; }

.hero-wave { display: none; }

/* ── Bubbles (JS generated) ──────────────── */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(201,245,60,.35), rgba(201,245,60,.08) 48%, transparent 72%);
  border: 1px solid rgba(122,154,30,.18);
  animation: bubbleRise linear infinite;
  opacity: 0;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  8%   { opacity: .8; }
  85%  { opacity: .4; }
  100% { transform: translateY(-110vh) translateX(var(--sway, 30px)) scale(1.05); opacity: 0; }
}
.bubbles-soft .bubble { opacity: 0; }

/* ── Marquee ─────────────────────────────── */
.marquee {
  background: var(--lime);
  overflow: hidden; padding: 15px 0;
  transform: rotate(-1.1deg) scale(1.02);
  position: relative; z-index: 4; margin-top: -10px;
}
.marquee-track {
  display: flex; gap: 34px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink);
  white-space: nowrap; align-items: center;
}
.marquee-track i { font-style: normal; opacity: .45; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-mint { background: var(--mint); }
.section-dark {
  background: var(--mint);
  color: var(--text); overflow: hidden;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.on-dark { color: var(--ink); }
.on-dark-sub { color: var(--muted) !important; }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--olive); background: var(--lime-soft);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow-light { color: var(--olive); background: rgba(201,245,60,.35); }

/* ── How it works ────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps-4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-mascot {
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--mint); margin-bottom: 20px;
  border: 2px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .35s ease;
}
.step-card:hover .step-mascot {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--lime);
}
.step-mascot img { width: 92%; height: 92%; object-fit: contain; }

.included { margin-top: 64px; text-align: center; }
.included h3 { color: var(--ink); margin-bottom: 22px; }
.included-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.included-chips span {
  font-weight: 600; font-size: .92rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.step-card {
  position: relative; background: var(--white);
  border-radius: var(--radius); padding: 44px 32px 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.step-num {
  position: absolute; top: -20px; left: 30px;
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  transform: rotate(-6deg);
}
.step-icon { width: 58px; height: 58px; color: var(--lime-deep); margin-bottom: 20px; }
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 { color: var(--ink); margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: .98rem; }

/* ── Services bento ──────────────────────── */
.bento {
  display: grid; gap: 22px;
  grid-template-columns: repeat(6, 1fr);
  position: relative; z-index: 2;
}
.bento-card {
  grid-column: span 2;
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  transform-style: preserve-3d;
}
.bento-lg { grid-column: span 4; grid-row: span 1; }
.bento-card:hover { border-color: var(--lime); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bento-icon { font-size: 2.3rem; margin-bottom: 16px; }
.bento-card h3 { color: var(--ink); margin-bottom: 10px; }
.bento-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.bento-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  color: var(--olive); background: var(--lime-soft);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
.bento-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(201,245,60,.18), transparent 45%);
  opacity: 0; transition: opacity .3s ease;
}
.bento-card:hover .bento-shine { opacity: 1; }

.services-note {
  position: relative; z-index: 2;
  text-align: center; margin-top: 40px;
  color: var(--muted); font-weight: 600; font-size: .93rem;
  max-width: 640px; margin-inline: auto;
}

/* ── Stats band ──────────────────────────── */
.stats-band {
  background: var(--lime);
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat small { display: block; font-weight: 600; color: rgba(21,24,26,.7); margin-top: 4px; font-size: .95rem; }
.stat-num, .stat-plus {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink);
}

/* ── Trust section ───────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.trust-copy > p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; max-width: 520px; }
.trust-copy h2 { margin-top: 4px; }
.trust-list { list-style: none; margin-top: 34px; display: grid; gap: 22px; }
.trust-list li { display: flex; gap: 16px; align-items: flex-start; }
.tl-icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 16px;
  background: var(--lime-soft);
  display: grid; place-items: center; font-size: 1.5rem;
  border: 1px solid var(--line);
}
.trust-list strong { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.trust-list p { color: var(--muted); font-size: .94rem; margin-top: 2px; }

/* live-tracking mock card */
.trust-card-stack { position: relative; }
.tc {
  background: var(--white); border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--line);
}
.tc-ghost {
  position: absolute; inset: 0;
  transform: rotate(4deg) translate(14px, 10px); z-index: -1;
  opacity: .6; background: var(--lime-soft);
}
.tc-ghost-2 { transform: rotate(-3.5deg) translate(-12px, 16px); opacity: .4; }
.tc-main { position: relative; z-index: 2; animation: floaty 7s ease-in-out infinite; }
.tc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 13px; background: var(--lime);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--ink);
}
.tc-head strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); display: block; }
.tc-head small { color: var(--muted); font-weight: 600; }
.tc-badge {
  margin-left: auto; font-size: .75rem; font-weight: 700;
  color: var(--olive); background: var(--lime-soft);
  padding: 5px 12px; border-radius: 999px;
}
.tc-timeline { display: grid; gap: 14px; margin-bottom: 22px; }
.tc-step { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .9rem; color: var(--muted); }
.tc-step i {
  width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto;
  border: 2.5px solid var(--line); position: relative;
}
.tc-step.done i { background: var(--lime); border-color: transparent; }
.tc-step.done i::after {
  content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: .7rem; color: var(--ink); font-weight: 900;
}
.tc-step.done { color: var(--ink); }
.tc-step.active { color: var(--olive); }
.tc-step.active i { border-color: var(--lime-deep); animation: pulse 1.8s infinite; }
.tc-bar { height: 9px; border-radius: 9px; background: var(--lime-soft); overflow: hidden; }
.tc-bar-fill {
  height: 100%; width: 82%; border-radius: 9px;
  background: var(--lime);
  animation: barShimmer 2.4s ease-in-out infinite alternate;
}
@keyframes barShimmer { from { width: 78%; } to { width: 86%; } }

/* ── Pricing ─────────────────────────────── */
.pricing-subhead {
  text-align: center; color: var(--ink);
  font-size: 1.4rem; margin: 54px 0 30px;
}
.pricing-subhead:first-of-type { margin-top: 0; }
.bag-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 860px; margin: 0 auto;
}
.bag-card {
  position: relative; display: flex; gap: 22px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.bag-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.bag-featured { border: 2px solid var(--lime); }
.bag-img { flex: 0 0 92px; }
.bag-img-lg { flex-basis: 116px; }
.bag-img img { width: 100%; }
.bag-info { flex: 1; }
.bag-info h3 { color: var(--ink); }
.bag-weight { color: var(--lime-deep); font-weight: 700; font-size: .9rem; margin: 2px 0 6px; }
.bag-desc { color: var(--muted); font-size: .93rem; margin-bottom: 14px; }
.bag-breakdown { display: grid; gap: 6px; }
.bag-breakdown > div { display: flex; justify-content: space-between; font-size: .9rem; font-weight: 600; color: var(--muted); }
.bag-total {
  padding-top: 8px; border-top: 1.5px solid var(--line);
  font-family: var(--font-display); color: var(--ink) !important;
}
.bag-total span:last-child { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.pricing-fineprint {
  text-align: center; color: var(--muted); font-weight: 600; font-size: .9rem;
  margin-top: 26px; max-width: 620px; margin-inline: auto;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 34px; text-align: left;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  position: relative;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.price-card h3 { color: var(--ink); }
.price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 3rem; color: var(--ink); margin: 14px 0 2px; line-height: 1;
}
.price sup { font-size: 1.4rem; vertical-align: super; color: var(--lime-deep); }
.price span { font-size: 1.05rem; color: var(--muted); font-weight: 600; }
.price-sub { color: var(--muted); font-weight: 600; font-size: .92rem; margin-bottom: 22px; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; flex: 1; }
.price-card li { padding-left: 28px; position: relative; font-size: .96rem; color: var(--text); font-weight: 500; }
.price-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime-soft); color: var(--olive);
  display: grid; place-items: center; font-size: .7rem; font-weight: 900;
}
.price-featured {
  background: var(--ink);
  border: 1.5px solid var(--ink);
  transform: scale(1.045);
  box-shadow: 0 30px 70px rgba(21,24,26,.3);
}
.price-featured:hover { transform: scale(1.045) translateY(-10px); }
.price-featured h3, .price-featured .price { color: var(--white); }
.price-featured .price sup { color: var(--lime); }
.price-featured .price-sub, .price-featured .price span { color: #9AA29B; }
.price-featured li { color: #E8EAE5; }
.price-featured li::before { background: rgba(201,245,60,.2); color: var(--lime); }
.price-flag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  padding: 7px 20px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(201,245,60,.5);
}

/* ── Testimonials ────────────────────────── */
.slider { max-width: 780px; margin: 0 auto; overflow: hidden; position: relative; z-index: 2; }
.slider-track { display: flex; transition: transform .65s cubic-bezier(.65,0,.35,1); }
.quote-card {
  flex: 0 0 100%; padding: 44px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow-soft);
}
.quote-stars { color: var(--lime-deep); letter-spacing: 4px; font-size: 1.15rem; margin-bottom: 20px; }
.quote-card blockquote { font-size: 1.18rem; color: var(--ink); font-style: italic; line-height: 1.7; }
.quote-card figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; text-align: left; }
.q-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem;
}
.quote-card figcaption strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); display: block; }
.quote-card figcaption small { color: var(--muted); font-weight: 600; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.slider-dots button {
  width: 11px; height: 11px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--line); transition: width .3s ease, background .3s ease;
}
.slider-dots button.active { width: 32px; background: var(--lime); }

/* ── Coverage ────────────────────────────── */
.areas { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; max-width: 820px; margin: 0 auto; }
.area-chip {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line);
  padding: 11px 22px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s ease, color .25s ease;
  cursor: default;
}
.area-chip:hover { transform: translateY(-4px) scale(1.05) rotate(-1deg); background: var(--lime); color: var(--ink); border-color: transparent; }
.area-chip-more { background: var(--ink); color: var(--lime); border-color: transparent; }

/* ── Booking ─────────────────────────────── */
.booking {
  background: var(--ink);
  overflow: hidden;
}
.booking .on-dark { color: var(--white); }
.booking .on-dark-sub { color: #B7BDB2 !important; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.booking-copy h2 { margin-bottom: 16px; }
.booking-copy p { font-size: 1.1rem; }
.promo {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  background: var(--lime); padding: 3px 12px; border-radius: 8px;
  display: inline-block; transform: rotate(-1.5deg);
}
.booking-perks { display: grid; gap: 10px; margin-top: 28px; font-weight: 600; color: #D5DACF; }

.store-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1.5px solid rgba(201,245,60,.4);
  padding: 11px 20px; border-radius: 15px; text-decoration: none;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .25s ease, border-color .25s ease;
}
.store-btn:hover { transform: translateY(-3px) scale(1.03); background: rgba(201,245,60,.15); border-color: var(--lime); }
.store-btn small { display: block; font-size: .68rem; font-weight: 700; color: #9AA29B; line-height: 1.1; }
.store-btn strong { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.2; }

.download-visual { display: grid; place-items: center; }
.download-visual .mascot-float { width: min(430px, 90%); }
.download-visual img { width: 100%; }

/* ── FAQ ─────────────────────────────────── */
.faq-container { max-width: 760px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-lift); border-color: var(--lime); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--lime-soft); position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.faq-chev::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-right: 2.5px solid var(--olive); border-bottom: 2.5px solid var(--olive);
  transform: translate(-50%, -65%) rotate(45deg);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--lime); }
.faq-item p { padding: 0 26px 24px; color: var(--muted); font-size: .98rem; }

/* ── Policies ────────────────────────────── */
.scam-note {
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: 34px; padding: 30px 32px;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.scam-note-icon { font-size: 2.2rem; line-height: 1; }
.scam-note h3 { color: var(--lime); margin-bottom: 8px; font-size: 1.2rem; }
.scam-note p { color: #D5DACF; font-size: .95rem; }
.scam-note strong { color: var(--white); }

/* ── Contact ─────────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.contact-cards-single { grid-template-columns: 1fr; max-width: 420px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border-radius: var(--radius); padding: 34px 24px;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  text-decoration: none; text-align: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .3s ease;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--lime); }
.cc-icon { font-size: 2rem; margin-bottom: 6px; }
.contact-card strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.cc-value { color: var(--olive); font-weight: 700; font-size: .98rem; }

/* ── B2B section ─────────────────────────── */
.b2b-audiences {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 13px;
  max-width: 760px; margin: 0 auto 54px;
  position: relative; z-index: 2;
}
.b2b-section .area-chip {
  background: var(--white); color: var(--ink);
  border-color: var(--line); box-shadow: var(--shadow-soft);
}
.b2b-section .area-chip:hover { background: var(--lime); color: var(--ink); }
.b2b-perks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative; z-index: 2;
}
.b2b-perk {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: border-color .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.b2b-perk:hover { border-color: var(--lime); transform: translateY(-8px); }
.b2b-perk-icon { font-size: 2.1rem; display: block; margin-bottom: 14px; }
.b2b-perk h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.15rem; }
.b2b-perk p { color: var(--muted); font-size: .93rem; }
.b2b-cta {
  position: relative; z-index: 2;
  margin-top: 54px; text-align: center;
  background: var(--white);
  border: 2px solid var(--lime);
  border-radius: var(--radius); padding: 46px 36px;
}
.b2b-cta h3 { color: var(--ink); font-size: 1.6rem; margin-bottom: 10px; }
.b2b-cta p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.b2b-email {
  color: var(--olive); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--lime);
  transition: border-color .2s ease;
}
.b2b-email:hover { border-color: var(--olive); }

/* ── Final CTA ───────────────────────────── */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--lime);
  padding: 100px 0;
}
.final-cta h2 { color: var(--ink); font-size: clamp(2rem, 4.6vw, 3.4rem); }
.final-cta p { color: rgba(21,24,26,.72); font-size: 1.15rem; font-weight: 600; margin: 14px 0 34px; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta .bubble {
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(255,255,255,.25) 45%, transparent 75%);
  border-color: rgba(255,255,255,.5);
}

/* ── Footer ──────────────────────────────── */
.footer { background: var(--ink); color: #9AA29B; padding: 70px 0 30px; }
.footer .brand-name { color: var(--white); }
.footer .brand-name em { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid rgba(201,245,60,.15); }
.footer-brand p { margin: 16px 0 10px; font-size: .95rem; max-width: 300px; }
.footer-brand small { color: #6E756E; font-weight: 600; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col a { display: block; color: #9AA29B; text-decoration: none; font-weight: 500; font-size: .93rem; padding: 5px 0; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: var(--lime); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: .85rem; font-weight: 500; color: #6E756E; }

/* ── Floating CTA ────────────────────────── */
.floating-cta {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  background: var(--ink); color: var(--lime);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: 14px 24px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 16px 40px rgba(21,24,26,.35);
  transform: translateY(120px); opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}
.floating-cta.show { transform: translateY(0); opacity: 1; }
.floating-cta:hover { transform: translateY(-4px) scale(1.04); }

/* ── Reveal animations ───────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }
.d5 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid, .trust-grid, .booking-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 140px 0 110px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .steps, .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps-4 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .bag-grid { grid-template-columns: 1fr; max-width: 520px; }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; }
  .price-featured { transform: scale(1); }
  .price-featured:hover { transform: translateY(-10px); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-lg { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-visual { max-width: 460px; margin-inline: auto; width: 100%; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
    background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
    box-shadow: -20px 0 60px rgba(21,24,26,.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1.15rem; }
  .nav-burger { display: flex; position: relative; z-index: 101; }
  .bento { grid-template-columns: 1fr; }
  .float-card-a { left: 0; }
  .float-card-b { right: 0; }
  .quote-card { padding: 34px 26px; }
  .section { padding: 80px 0; }
  .b2b-perks { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .scam-note { flex-direction: column; gap: 12px; padding: 26px 22px; }
  .steps-4 { grid-template-columns: 1fr; max-width: 420px; }
  .bag-card { flex-direction: column; text-align: center; }
  .bag-img, .bag-img-lg { width: 120px; flex-basis: auto; }
  .bag-breakdown > div { text-align: left; }
  .b2b-card { justify-content: center; text-align: center; }
  .store-btns { justify-content: flex-start; }
}
