/* ------------------------------------------------------------------
   Shop Booster — Landing Page
   Modern, conversion-focused LP for aged Shopify store partnerships
-------------------------------------------------------------------*/

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f4;
  --bg-dark: #0a0a0b;
  --bg-dark-2: #111113;
  --text: #0a0a0b;
  --text-soft: #27272a;
  --muted: #6b6b6b;
  --muted-light: #a1a1aa;
  --border: #e7e7e4;
  --border-dark: #27272a;

  --accent: #10b981;
  --accent-2: #059669;
  --accent-hover: #0ea371;
  --accent-soft: #d1fae5;
  --accent-ink: #065f46;

  --danger: #b91c1c;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --max-w: 1180px;
  --narrow-w: 780px;

  --shadow-xs: 0 1px 2px rgba(10, 10, 11, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 10, 11, 0.05);
  --shadow: 0 8px 28px rgba(10, 10, 11, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 10, 11, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* Smooth anchored scrolling below sticky nav */
section[id] { scroll-margin-top: 76px; }

/* Faster taps on buttons/links */
.btn, a, button, summary, .lang-btn { touch-action: manipulation; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--narrow-w); }
.narrow-inline { max-width: var(--narrow-w); margin: 0 auto 32px; }

/* ------------------------------------------------------------------
   Nav
-------------------------------------------------------------------*/
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(231, 231, 228, 0.9);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
  min-width: 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.35));
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: 0;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0.02em;
  border-radius: 999px;
  font-family: inherit;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.lang-btn.active { background: var(--text); color: #fff; }
.lang-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ------------------------------------------------------------------
   Buttons
-------------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.08s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
  line-height: 1;
  font-family: inherit;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 1px rgba(5,150,105,0.4),
    0 12px 24px -8px rgba(16,185,129,0.55),
    0 2px 4px rgba(0,0,0,0.08);
  position: relative;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  opacity: 0;
  transition: opacity 0.18s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 0 0 1px rgba(5,150,105,0.5),
    0 16px 36px -8px rgba(16,185,129,0.65),
    0 2px 4px rgba(0,0,0,0.1);
}
.btn-primary:focus-visible {
  outline: 3px solid rgba(16,185,129,0.45);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-alt); }

/* On dark bg (hero + dark sections) */
.hero .btn-ghost,
.section-dark .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .btn-ghost:hover,
.section-dark .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}

.btn-sm { padding: 9px 14px; font-size: 0.88rem; }
.btn-lg { padding: 16px 22px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ------------------------------------------------------------------
   Typography helpers
-------------------------------------------------------------------*/
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--accent); }
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; }
h1 {
  font-size: clamp(2.1rem, 5.6vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
}
h1 .grad {
  display: block;
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}
h2 .grad {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.5;
}
.lede-sm {
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 0 28px;
}
.muted { color: var(--muted); }
.muted-light { color: var(--muted-light); }
.light { color: #fff; }
.small { font-size: 0.86rem; }

/* ------------------------------------------------------------------
   Sections
-------------------------------------------------------------------*/
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(16,185,129,0.15), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(16,185,129,0.08), transparent 60%);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

/* ------------------------------------------------------------------
   Hero
-------------------------------------------------------------------*/
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 72px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background:
    radial-gradient(40% 40% at 50% 50%, rgba(16,185,129,0.32) 0%, rgba(16,185,129,0) 70%);
  filter: blur(10px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 24px 72px;
}
.hero-copy h1 { color: #fff; }
.hero-copy .lede { color: #d4d4d8; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e4e4e7;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: pulse 2.5s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.05); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-social-avatars {
  display: inline-flex;
}
.hero-social-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid #0a0a0b;
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.hero-social-avatars span:first-child { margin-left: 0; }
.hero-social-avatars span:nth-child(2) { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.hero-social-avatars span:nth-child(3) { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.hero-social-avatars span:nth-child(4) { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.hero-social-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-social-text strong {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-social-text strong::before {
  content: "★★★★★";
  color: #fbbf24;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin-right: 2px;
}
.hero-social-text span { color: var(--muted-light); font-size: 0.75rem; }

.hero-proof {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-proof li { display: flex; flex-direction: column; gap: 4px; }
.hero-proof strong {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-proof span { color: var(--muted-light); font-size: 0.85rem; }

/* Dashboard mock */
.hero-visual {
  position: relative;
  perspective: 1500px;
}
.mock {
  background: linear-gradient(180deg, #18181b 0%, #0f0f11 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(16,185,129,0.08) inset;
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .mock { transform: rotateY(-2deg) rotateX(1deg); }
.mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-dot:first-child { background: #ef4444; }
.mock-dot:nth-child(2) { background: #f59e0b; }
.mock-dot:nth-child(3) { background: #10b981; }
.mock-title { color: var(--muted-light); font-size: 0.82rem; margin-left: 8px; }
.mock-body { padding: 22px; display: grid; gap: 18px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mock-label { color: var(--muted-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.mock-value { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.mock-chart { width: 100%; height: 90px; display: block; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mock-stat { display: flex; flex-direction: column; gap: 4px; }
.mock-stat span { color: var(--muted-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.mock-stat strong { font-size: 1.05rem; color: #fff; letter-spacing: -0.01em; }
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
}

/* Marquee band under hero */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  color: var(--muted-light);
  font-size: 0.85rem;
  padding-left: 28px;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------
   Problem — check list
-------------------------------------------------------------------*/
.check-list, .qual-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li,
.qual-list li {
  padding-left: 36px;
  position: relative;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.check-list li::before,
.qual-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23059669'><path d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6L14 5l1.4 1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* ------------------------------------------------------------------
   Reframe pieces
-------------------------------------------------------------------*/
.pieces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 36px 0 28px;
}
.piece {
  position: relative;
  padding: 22px 22px 22px 64px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
@media (hover: hover) {
  .piece:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
}
.piece strong { display: block; margin-bottom: 3px; font-size: 1rem; }
.piece span:last-child { color: var(--muted); font-size: 0.9rem; }
.piece-num {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}
.piece-you {
  border-color: transparent;
  background: linear-gradient(135deg, #0a0a0b 0%, #18181b 100%);
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(16,185,129,0.35), 0 1px 2px rgba(0,0,0,0.2);
}
.piece-you .piece-num { background: var(--accent); color: #fff; }
.piece-you span:last-child { color: var(--muted-light); }
.reframe-punch {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  margin: 28px 0 0;
  letter-spacing: -0.02em;
  text-align: center;
}

/* ------------------------------------------------------------------
   Offer
-------------------------------------------------------------------*/
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 28px;
}
.offer-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}
.offer-head { margin-bottom: 18px; }
.offer-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.offer-col h3 { font-size: 1.15rem; }
.offer-col-you {
  background: linear-gradient(160deg, #0a0a0b 0%, #18181b 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.4);
}
.offer-tag-you { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.offer-col-you .tick-list li { color: #e4e4e7; }
.offer-col-you .tick-list li::before { color: var(--accent); }
.offer-note {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.9rem;
  color: var(--muted-light);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.tick-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'><path d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6L14 5l1.4 1.4z'/></svg>");
  background-repeat: no-repeat;
}
.tick-you li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236ee7b7'><path d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6L14 5l1.4 1.4z'/></svg>");
}

/* Split card */
.split-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: center;
}
.split-visual { width: 100%; }
.split-bar {
  width: 100%;
  display: flex;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border);
}
.split-us, .split-you {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.split-us { background: linear-gradient(135deg, #0a0a0b 0%, #27272a 100%); }
.split-you { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.split-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.split-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.split-explain { color: var(--text-soft); margin: 0; }

/* ------------------------------------------------------------------
   Timeline
-------------------------------------------------------------------*/
.timeline {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.timeline li {
  position: relative;
  padding: 24px 24px 24px 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  counter-increment: step;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
@media (hover: hover) {
  .timeline li:hover {
    border-color: rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.04);
  }
}
.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 6px 16px -6px rgba(16,185,129,0.6);
}
.tl-day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline h3 { color: #fff; }
.timeline p { margin: 0; color: var(--muted-light); font-size: 0.96rem; }

/* ------------------------------------------------------------------
   Testimonials
-------------------------------------------------------------------*/
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.test-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
@media (hover: hover) {
  .test-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.test-head { display: flex; gap: 12px; align-items: center; }
.test-head strong { display: block; font-size: 0.95rem; }
.test-head .small { display: block; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.test-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  flex-grow: 1;
}
.test-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.test-stats strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-2);
}
.test-stats span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}
.test-disclaimer { margin: 24px 0 0; text-align: center; }

/* ------------------------------------------------------------------
   FAQ
-------------------------------------------------------------------*/
.faq {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 22px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq details[open] {
  border-color: rgba(16,185,129,0.3);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 36px 16px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   Qualification scarcity
-------------------------------------------------------------------*/
.scarcity {
  margin-top: 32px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(5,150,105,0.04) 100%);
  border: 1px solid rgba(16,185,129,0.28);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
}
.scarcity-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.scarcity-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  flex-shrink: 0;
  animation: pulse 2.5s var(--ease) infinite;
}
.spots-bar {
  width: 100%;
  height: 8px;
  background: rgba(16,185,129,0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.spots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(16,185,129,0.4);
  transition: width 1.4s var(--ease);
}
.spots-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.spots-meta strong { color: var(--accent-2); font-weight: 700; }

/* ------------------------------------------------------------------
   Form
-------------------------------------------------------------------*/
.section-apply { background: var(--bg-alt); }
.apply-form {
  margin-top: 28px;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:hover, .field select:hover { border-color: #d4d4d0; }
.field input:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(185,28,28,0.08);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b6b6b'><path d='M5.5 7.5l4.5 4.5 4.5-4.5z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.guarantee-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 4px;
  padding: 16px 4px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.guarantee-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.guarantee-text {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.3;
}
.form-privacy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  margin-top: 28px;
  padding: 36px 28px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-lg);
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px -6px rgba(16,185,129,0.5);
}
.form-success h3 { color: var(--accent-ink); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { margin: 0; color: #047857; }

/* ------------------------------------------------------------------
   Footer
-------------------------------------------------------------------*/
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  background: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand { display: grid; gap: 8px; }
.footer-brand .muted { max-width: 360px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-links a { text-decoration: none; color: var(--muted); transition: color 0.15s var(--ease); }
.footer-links a:hover { color: var(--text); }
.copyright {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------------
   Sticky mobile CTA
-------------------------------------------------------------------*/
.mobile-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  z-index: 40;
  transform: translateY(120%);
  transition: transform 0.35s var(--ease);
  display: none;
}
.mobile-cta.visible { transform: translateY(0); }

/* ------------------------------------------------------------------
   Scroll reveal
-------------------------------------------------------------------*/
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .badge-dot, .scarcity-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------
   Responsive — tablet
-------------------------------------------------------------------*/
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px 56px; }
  .hero-visual { order: 2; max-width: 460px; margin: 0 auto; width: 100%; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
}

/* ------------------------------------------------------------------
   Responsive — mobile (< 720px)
-------------------------------------------------------------------*/
@media (max-width: 720px) {
  /* Base rhythm */
  body { font-size: 16px; line-height: 1.6; padding-bottom: 84px; }
  .container { padding: 0 20px; }
  .container.narrow { padding: 0 20px; }

  /* Section padding: tighter, more even */
  .section { padding: 64px 0; }
  .section-dark { padding: 72px 0; }
  section[id] { scroll-margin-top: 68px; }

  /* Typography */
  h1 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(1.65rem, 6.5vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
  }
  h3 { font-size: 1rem; }
  .lede { font-size: 1.02rem; line-height: 1.55; margin-bottom: 24px; }
  .lede-sm { font-size: 0.98rem; line-height: 1.55; margin-bottom: 22px; }
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; margin-bottom: 12px; }

  /* Nav */
  .nav-inner { height: 58px; gap: 8px; }
  .logo { gap: 8px; font-size: 0.92rem; }
  .logo-mark { width: 22px; height: 22px; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 4px 9px; font-size: 0.72rem; }
  .nav .btn-sm { padding: 8px 12px; font-size: 0.82rem; }

  /* Hero */
  .hero { padding-top: 28px; }
  .hero-inner { padding: 24px 20px 44px; gap: 36px; }
  .hero-glow { width: 600px; height: 600px; }
  .badge {
    font-size: 0.75rem;
    padding: 5px 12px 5px 10px;
    margin-bottom: 18px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-cta .btn { width: 100%; padding: 15px 20px; }
  .hero-social {
    padding: 8px 14px 8px 8px;
    gap: 10px;
    margin-bottom: 26px;
    max-width: 100%;
  }
  .hero-social-avatars span {
    width: 22px;
    height: 22px;
    font-size: 0.58rem;
    border-width: 1.5px;
    margin-left: -6px;
  }
  .hero-social-text strong { font-size: 0.76rem; }
  .hero-social-text strong::before { font-size: 0.66rem; }
  .hero-social-text span { font-size: 0.68rem; }
  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
    margin-top: 28px;
  }
  .hero-proof li { gap: 2px; }
  .hero-proof strong { font-size: 1.15rem; }
  .hero-proof span { font-size: 0.72rem; line-height: 1.25; }

  /* Hero dashboard mock */
  .mock { transform: none; border-radius: 14px; }
  .mock-head { padding: 10px 14px; }
  .mock-title { font-size: 0.76rem; }
  .mock-body { padding: 18px; gap: 14px; }
  .mock-label { font-size: 0.72rem; }
  .mock-value { font-size: 1.5rem; }
  .mock-chart { height: 72px; }
  .mock-grid { gap: 10px; padding-top: 10px; }
  .mock-stat span { font-size: 0.66rem; }
  .mock-stat strong { font-size: 0.95rem; }
  .mock-pill { padding: 7px 11px; font-size: 0.76rem; }

  /* Marquee */
  .marquee { padding: 11px 0; }
  .marquee-track { gap: 22px; font-size: 0.78rem; animation-duration: 34s; }

  /* Check / Tick lists */
  .check-list, .qual-list { gap: 12px; margin-top: 22px; }
  .check-list li, .qual-list li {
    font-size: 0.97rem;
    padding-left: 32px;
    line-height: 1.5;
  }
  .check-list li::before, .qual-list li::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
  .tick-list { gap: 9px; }
  .tick-list li { font-size: 0.93rem; padding-left: 24px; line-height: 1.5; }

  /* Reframe pieces */
  .pieces { gap: 10px; margin: 28px 0 22px; }
  .piece {
    padding: 18px 18px 18px 56px;
    border-radius: 12px;
  }
  .piece-num {
    left: 16px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.84rem;
  }
  .piece strong { font-size: 0.96rem; }
  .piece span:last-child { font-size: 0.85rem; }
  .reframe-punch {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    margin-top: 24px;
    line-height: 1.25;
  }

  /* Offer */
  .offer-grid { grid-template-columns: 1fr; gap: 14px; margin: 26px 0 22px; }
  .offer-col { padding: 22px; border-radius: 14px; }
  .offer-head { margin-bottom: 14px; }
  .offer-col h3 { font-size: 1.05rem; }
  .offer-tag { font-size: 0.68rem; padding: 3px 9px; }
  .offer-note { font-size: 0.85rem; padding-top: 14px; }

  /* Split card */
  .split-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
  }
  .split-bar { height: 44px; }
  .split-us, .split-you { font-size: 0.95rem; }
  .split-value { font-size: clamp(1.9rem, 7vw, 2.4rem); margin-bottom: 10px; }
  .split-explain { font-size: 0.92rem; }

  /* Timeline */
  .timeline { gap: 10px; margin-top: 28px; }
  .timeline li {
    padding: 20px 20px 20px 74px;
    border-radius: 12px;
  }
  .timeline li::before {
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.86rem;
  }
  .tl-day { font-size: 0.68rem; }
  .timeline h3 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
  .timeline p { font-size: 0.92rem; line-height: 1.55; }

  /* Testimonials */
  .test-grid { gap: 14px; margin-top: 10px; }
  .test-card { padding: 22px; border-radius: 14px; gap: 14px; }
  .avatar { width: 40px; height: 40px; font-size: 0.85rem; }
  .test-head strong { font-size: 0.92rem; }
  .test-card p { font-size: 0.94rem; }
  .test-stats { gap: 18px; padding-top: 14px; }
  .test-stats strong { font-size: 1.1rem; }
  .test-stats span { font-size: 0.7rem; }

  /* FAQ */
  .faq { margin-top: 24px; gap: 8px; }
  .faq details { padding: 4px 18px; border-radius: 12px; }
  .faq summary {
    padding: 16px 34px 16px 0;
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .faq summary::after { right: 2px; width: 9px; height: 9px; }
  .faq p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }

  /* Scarcity */
  .scarcity { padding: 18px; margin-top: 26px; }
  .scarcity-head { font-size: 0.9rem; gap: 10px; }
  .spots-bar { height: 7px; }
  .spots-meta {
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
    align-items: flex-start;
  }

  /* Form */
  .section-apply { padding: 64px 0; }
  .apply-form {
    padding: 22px 20px;
    border-radius: 16px;
    gap: 14px;
    margin-top: 24px;
  }
  .field label { font-size: 0.88rem; }
  .field input, .field select {
    padding: 14px 16px;
    font-size: 16px; /* prevent iOS zoom */
    border-radius: 10px;
  }
  .guarantee-row {
    gap: 8px;
    padding: 14px 4px;
    margin: 6px 0 2px;
  }
  .guarantee-item { gap: 5px; }
  .guarantee-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .guarantee-text { font-size: 0.7rem; line-height: 1.25; }
  .form-privacy { font-size: 0.76rem; margin-top: 2px; }
  .form-success { padding: 28px 22px; border-radius: 14px; margin-top: 22px; }
  .success-icon { width: 48px; height: 48px; font-size: 1.5rem; }
  .form-success h3 { font-size: 1.15rem; }
  .form-success p { font-size: 0.95rem; }

  /* Footer */
  footer { padding: 32px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-links { gap: 18px; font-size: 0.88rem; }
  .copyright { font-size: 0.78rem; margin-top: 12px; padding-top: 16px; }

  /* Sticky mobile CTA */
  .mobile-cta {
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -14px 40px -12px rgba(10, 10, 11, 0.15);
    background: rgba(255, 255, 255, 0.94);
  }
  .mobile-cta .btn { padding: 15px 20px; font-size: 0.96rem; }
}

/* ------------------------------------------------------------------
   Responsive — very narrow (< 420px)
-------------------------------------------------------------------*/
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .nav-inner { gap: 6px; }
  .nav .btn-sm { padding: 7px 10px; font-size: 0.78rem; }
  .lang-btn { padding: 4px 7px; font-size: 0.68rem; }
  .logo { gap: 7px; }
  .logo span:not(.logo-mark) { font-size: 0.82rem; letter-spacing: -0.015em; }
  .logo-mark { width: 20px; height: 20px; }

  h1 { font-size: clamp(1.9rem, 10vw, 2.4rem); }
  h2 { font-size: clamp(1.55rem, 7.5vw, 1.8rem); }

  .hero-inner { padding: 20px 18px 40px; }
  .hero-proof strong { font-size: 1.05rem; }
  .hero-proof span { font-size: 0.68rem; }

  .guarantee-text { font-size: 0.66rem; }
  .guarantee-icon { width: 26px; height: 26px; font-size: 0.85rem; }

  .test-stats { gap: 14px; }
  .test-stats strong { font-size: 1rem; }

  .split-bar { height: 40px; }
  .split-us, .split-you { font-size: 0.88rem; }
}
