/** Shopify CDN: Minification failed

Line 471:15 Unterminated string token

**/
/* ============================================================
   1. BRAND TOKENS — GrowWithFlows Official CI
   ============================================================ */
:root {
  /* Colors */
  --black: #0B0F14;
  --white: #FFFFFF;
  --teal-primary: #3A958C;
  --teal-accent: #4FB3A8;
  --teal-hover: #2D7770;
  --grey: #6B7280;
  --light-grey: #F5F5F5;

  /* Derived */
  --soft-mint: #EAF4F2;
  --soft-mint-2: #F2F9F7;
  --border: #E7E9EC;
  --border-strong: #D5D8DD;
  --text-muted: #6B7280;
  --text-dim: #9CA3AF;

  /* Type */
  --font-serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
  --font-sans:  'Assistant', system-ui, -apple-system, 'Segoe UI', Roboto, Inter, Arial, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(11,15,20,.06), 0 1px 2px rgba(11,15,20,.04);
  --shadow-md: 0 8px 24px rgba(11,15,20,.08);
  --shadow-lg: 0 18px 48px rgba(11,15,20,.10);
  --shadow-mint: 0 14px 36px rgba(58,149,140,.25);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --section-py: clamp(64px, 9vw, 120px);
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--teal-primary); color: var(--white); }

/* Headlines */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(36px, 7.4vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.8vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p  { margin: 0 0 16px; color: #1f2933; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: #2a3340; line-height: 1.65; }

.italic-accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--teal-primary); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 22px; }
section { padding-block: var(--section-py); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-primary);
  background: var(--soft-mint);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(58,149,140,.18);
}

/* ============================================================
   3. BUTTONS — Pill-shape, Brand-Teal, white text
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-primary);
  color: var(--white);
  box-shadow: var(--shadow-mint);
}
.btn-primary:hover { background: var(--teal-hover); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(58,149,140,.32); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--black); }
.btn-xl { padding: 22px 44px; font-size: 18px; }

/* ============================================================
   4. NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; max-width: var(--container); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 28px; height: 28px; flex-shrink: 0; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--black); }
.brand-name em { font-style: normal; color: var(--teal-primary); }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; padding: 11px 20px; font-size: 14px; } }

/* ============================================================
   5. HERO
   ============================================================ */
.hero { padding-block: clamp(56px, 8vw, 100px) clamp(48px, 7vw, 80px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(79,179,168,.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(58,149,140,.10), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.hero h1 { margin-top: 18px; }
.hero h1 .accent { font-style: italic; color: var(--teal-primary); font-weight: 500; }
.hero-sub { font-size: clamp(17px, 1.5vw, 19px); color: #2a3340; max-width: 600px; line-height: 1.6; margin-bottom: 28px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

/* Partner Badges row (below CTA) — Official Original Logos */
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform .2s ease, filter .2s ease;
}
.partner-logo:hover {
  transform: translateY(-1px);
}
.partner-logo img,
.partner-logo svg {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
}
.partner-logo.shopify img { height: 64px; }
.partner-logo.klaviyo img { height: 56px; }
.partner-logo.reviews svg { height: 56px; width: auto; }
@media (max-width: 520px) {
  .partner-badges { gap: 14px; margin-top: 22px; }
  .partner-logo.shopify img { height: 50px; }
  .partner-logo.klaviyo img { height: 42px; }
  .partner-logo.reviews svg { height: 42px; }
}
.trust-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.trust-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #2a3340; }
.trust-bullets li svg { flex-shrink: 0; margin-top: 4px; color: var(--teal-primary); }

/* Hero mockup */
.hero-mockup {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--border); background: #FAFBFC; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: #E0E3E8; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url { margin-left: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--text-muted); }
.mockup-body { padding: 22px; }
.mockup-headline { font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.flow-diagram { display: flex; flex-direction: column; gap: 10px; }
.flow-node { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r-md); background: #FAFBFC; }
.flow-node.active { background: var(--soft-mint); border-color: var(--teal-primary); }
.flow-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--soft-mint); display: grid; place-items: center; color: var(--teal-primary); flex-shrink: 0; }
.flow-node.active .flow-icon { background: var(--teal-primary); color: var(--white); }
.flow-text { font-size: 14px; font-weight: 600; color: var(--black); }
.flow-text small { display: block; font-weight: 400; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.flow-connector { width: 2px; height: 12px; background: var(--border-strong); margin-left: 28px; }
.mockup-stats { margin-top: 18px; padding: 14px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--teal-primary), var(--teal-accent)); color: var(--white); display: flex; justify-content: space-between; align-items: center; }
.mockup-stats .stat-label { font-size: 12px; opacity: .9; text-transform: uppercase; letter-spacing: .08em; }
.mockup-stats .stat-value { font-family: var(--font-serif); font-size: 26px; font-weight: 600; }

/* ============================================================
   6. LOGO BAR — Trusted by (Dark BG, invert filter → uniform white logos)
   ============================================================ */
.logo-bar {
  padding-block: 56px;
  background: var(--black);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  position: relative;
  overflow: hidden;
}
.logo-bar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 300px at 50% 0%, rgba(58,149,140,.10), transparent 70%);
  pointer-events: none;
}
.logo-bar-title {
  position: relative;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
}
.logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .logo-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1200px) { .logo-grid { grid-template-columns: repeat(9, 1fr); gap: 38px 28px; } }

.logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 48px; width: 100%;
  opacity: .72;
  transition: opacity .25s ease;
}
.logo-item:hover { opacity: 1; }
.logo-item img,
.logo-grid > img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .82;
  transition: opacity .25s ease;
}
.logo-grid > img:hover { opacity: 1; }

/* ============================================================
   7. SECTION VARIANTS / GENERIC
   ============================================================ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .subtitle { font-size: clamp(16px, 1.4vw, 18px); color: var(--text-muted); margin-top: 8px; }

.bg-light { background: var(--light-grey); }
.bg-mint  { background: var(--soft-mint-2); }
.bg-dark  { background: var(--black); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.82); }

/* Problem Agitation */
.problem .lead-text { max-width: 720px; margin: 0 auto; font-size: clamp(17px, 1.55vw, 19px); line-height: 1.7; color: #2a3340; }
.problem .lead-text + .lead-text { margin-top: 18px; }
.problem-pull {
  max-width: 700px;
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--black);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-pull .mint { color: var(--teal-primary); font-weight: 500; }

/* Solution 2-Col */
.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.05fr .95fr; gap: 72px; } }
.two-col.reverse > :first-child { order: 2; }
@media (min-width: 900px) { .two-col.reverse > :first-child { order: 0; } }

.solution-visual {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 28px;
}

/* Module / Deliverables List */
.deliverables { display: grid; gap: 18px; max-width: 780px; margin: 0 auto; }
.deliverable {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.deliverable:hover { border-color: var(--teal-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.deliverable-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--soft-mint);
  color: var(--teal-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.deliverable h3 { font-family: var(--font-sans); font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.005em; }
.deliverable p { color: var(--text-muted); margin: 0; font-size: 15px; line-height: 1.55; }
.deliverable-footer { text-align: center; margin-top: 22px; font-size: 14px; color: var(--text-muted); }
.deliverable-footer span { padding: 0 12px; }
.deliverable-footer span + span { border-left: 1px solid var(--border-strong); }

/* Outcome Cards 2x2 */
.outcome-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 980px; margin: 0 auto; }
@media (min-width: 720px) { .outcome-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.outcome-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-primary); }
.outcome-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--soft-mint); color: var(--teal-primary);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.outcome-card h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.outcome-card p { color: var(--text-muted); margin: 0; font-size: 15px; line-height: 1.6; }

/* Comparison Table */
.compare-wrap { max-width: 1080px; margin: 0 auto; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) {
  .compare-grid { grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
}
.compare-col { background: var(--white); }
@media (min-width: 880px) {
  .compare-col { border-right: 1px solid var(--border); }
  .compare-col:last-child { border-right: none; }
}
.compare-col.featured {
  background: linear-gradient(180deg, var(--soft-mint), var(--white) 70%);
  position: relative;
  border-radius: var(--r-lg);
  border: 2px solid var(--teal-primary);
}
@media (min-width: 880px) {
  .compare-col.featured { border-top: 2px solid var(--teal-primary); border-bottom: 2px solid var(--teal-primary); margin: -2px 0; border-radius: 0; }
  .compare-col.featured.middle-fix { border-left: 2px solid var(--teal-primary); border-right: 2px solid var(--teal-primary); }
}
.compare-col.featured .compare-head { background: var(--teal-primary); color: var(--white); }
.compare-col.muted { background: #FAFBFC; }
.compare-head { padding: 22px 22px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-head .label { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.compare-col.featured .compare-head .label { color: rgba(255,255,255,.85); }
.compare-head h3 { font-family: var(--font-serif); font-size: 22px; margin: 0; }
.compare-col.featured .compare-head h3 { color: var(--white); }
.compare-rows { padding: 8px 0; }
.compare-row { padding: 14px 22px; border-bottom: 1px solid var(--border); font-size: 14.5px; line-height: 1.55; }
.compare-row:last-child { border-bottom: none; }
.compare-row .crit { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.compare-col.featured .compare-row { font-weight: 600; color: var(--black); }
.compare-col.featured .compare-row .crit { color: var(--teal-primary); }

/* 3 Schritte */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 1080px; margin: 0 auto; position: relative; }
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 30px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 52px; line-height: 1; color: var(--teal-primary); margin-bottom: 18px; }
.step h3 { font-family: var(--font-sans); font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.005em; }
.step p { color: var(--text-muted); margin: 0; font-size: 15px; line-height: 1.6; }
.steps-cta { text-align: center; margin-top: 44px; }

/* Social Proof */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px;
  font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.trust-bar .star { color: #F5B400; letter-spacing: 2px; font-size: 16px; }
.trust-bar .sep { color: var(--border-strong); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 820px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial::before {
  content: """;
  position: absolute;
  top: 8px; left: 18px;
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: var(--teal-primary);
  opacity: .14;
}
.testimonial-quote { font-style: italic; font-family: var(--font-serif); font-weight: 400; font-size: 17px; line-height: 1.55; color: #2a3340; margin: 18px 0 22px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-primary), var(--teal-accent)); color: var(--white); display: grid; place-items: center; font-family: var(--font-serif); font-weight: 600; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--black); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* For Whom 2-Spalter */
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
@media (min-width: 820px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 30px; }
.audience-card.positive { border-color: var(--teal-primary); background: linear-gradient(180deg, var(--soft-mint), var(--white) 60%); }
.audience-card h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.audience-card .icon-circ { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.audience-card.positive .icon-circ { background: var(--teal-primary); color: var(--white); }
.audience-card.negative .icon-circ { background: #E7E9EC; color: var(--text-muted); }
.audience-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.audience-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; }
.audience-list svg { flex-shrink: 0; margin-top: 3px; }
.audience-card.positive .audience-list svg { color: var(--teal-primary); }
.audience-card.negative .audience-list svg { color: var(--text-dim); }
.audience-card.negative li { color: var(--text-muted); }

/* Guarantee */
.guarantee {
  max-width: 740px; margin: 0 auto;
  background: var(--soft-mint);
  border: 1px solid rgba(58,149,140,.22);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  text-align: center;
}
.guarantee-shield {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-primary);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-md);
}
.guarantee h2 { max-width: 620px; margin: 0 auto 18px; }
.guarantee p { max-width: 620px; margin: 0 auto 14px; color: #2a3340; }
.guarantee .sub-trust { font-size: 13px; color: var(--text-muted); margin-top: 22px; }
.guarantee .sub-trust span { padding: 0 10px; }
.guarantee .sub-trust span + span { border-left: 1px solid var(--border-strong); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--teal-primary); box-shadow: var(--shadow-sm); }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--soft-mint);
  color: var(--teal-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
  font-size: 18px; font-weight: 400;
}
.faq-item[open] .faq-summary .plus { transform: rotate(45deg); background: var(--teal-primary); color: var(--white); }
.faq-body { padding: 0 24px 22px; color: #1f2933; font-size: 15.5px; line-height: 1.65; max-width: 660px; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--white), var(--soft-mint) 80%); }
.final-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 22px; }
.final-cta .price-anchor { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 18px; margin: 28px 0 14px; }
.price-old { font-family: var(--font-serif); font-size: clamp(22px, 2.4vw, 28px); color: var(--text-muted); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-arrow { color: var(--teal-primary); font-size: 24px; font-weight: 300; }
.price-new { font-family: var(--font-serif); font-weight: 700; font-size: clamp(44px, 5.6vw, 64px); color: var(--teal-primary); line-height: 1; }
.price-suffix { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }
.final-cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; font-size: 13px; color: var(--text-muted); margin-top: 22px; }
.final-cta-trust span { padding: 0 8px; }
.final-cta-trust span + span { border-left: 1px solid var(--border-strong); }

/* Footer */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 56px 0 36px; }
.footer-inner { display: grid; gap: 22px; text-align: center; }
.footer .brand-name { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; font-size: 14px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.5); }

/* Sticky Bar */
.sticky-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(11,15,20,.10);
  z-index: 40;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  padding: 12px 16px;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
}
.sticky-bar-text { display: flex; flex-direction: column; }
.sticky-bar-title { font-weight: 700; font-size: 14px; color: var(--black); }
.sticky-bar-sub { font-size: 12px; color: var(--text-muted); }
.sticky-bar .btn { padding: 12px 22px; font-size: 14px; }
@media (max-width: 540px) {
  .sticky-bar-text { font-size: 12px; }
  .sticky-bar-title { font-size: 13px; }
  .sticky-bar-sub { display: none; }
  .sticky-bar .btn { padding: 10px 16px; font-size: 13px; }
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PRODUCT INTRO — Premium Editorial Section
   ============================================================ */
.product-intro {
  position: relative;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(58,149,140,.06), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(79,179,168,.05), transparent 70%),
    linear-gradient(180deg, #FBFAF7 0%, #F7F5F0 100%);
  padding-block: clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.product-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--teal-primary));
  opacity: .35;
}
.product-intro-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
  position: relative;
}
.product-intro-head .eyebrow { margin-bottom: 22px; }
.product-intro h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}
.product-intro h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-primary);
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .product-intro-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 72px;
  }
}

/* Left column — Narrative */
.intro-narrative { max-width: 620px; }
.intro-narrative p {
  font-size: clamp(16.5px, 1.5vw, 18.5px);
  line-height: 1.7;
  color: #2a3340;
  margin: 0 0 22px;
}
.intro-narrative p strong { color: var(--black); font-weight: 700; }
.intro-pull {
  position: relative;
  margin: 36px 0 0;
  padding: 22px 28px 22px 30px;
  background: var(--white);
  border-radius: 4px 18px 18px 4px;
  box-shadow: 0 6px 24px rgba(11,15,20,.06);
}
.intro-pull::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 4px;
  background: var(--teal-primary);
  border-radius: 2px;
}
.intro-pull p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--black);
}
.intro-pull p strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--teal-primary);
}

/* Right column — Deliverables Card */
.intro-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11,15,20,.06);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 60px -20px rgba(11,15,20,.18),
    0 8px 20px -12px rgba(11,15,20,.10);
}
@media (min-width: 980px) {
  .intro-card { position: sticky; top: 92px; }
}
.intro-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-primary), transparent);
  opacity: .6;
}
.intro-card-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 8px;
}
.intro-card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--black);
}
.intro-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 16px;
}
.intro-deliverables li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15.5px;
  line-height: 1.55;
  color: #1f2933;
}
.intro-deliverables li .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--soft-mint);
  color: var(--teal-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.intro-fuer-wen {
  position: relative;
  margin-top: 4px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--soft-mint), #F2F9F7);
  border-radius: var(--r-md);
  border: 1px solid rgba(58,149,140,.18);
}
.intro-fuer-wen .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 8px;
}
.intro-fuer-wen .label svg { flex-shrink: 0; }
.intro-fuer-wen p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #1f2933;
}

/* ============================================================
   HERO MOCKUP V2 — Before / After Transformation
   ============================================================ */
.hero-kv-flow {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(11,15,20,.30),
    0 16px 40px -16px rgba(11,15,20,.15),
    0 0 0 1px rgba(11,15,20,.05);
}

/* Klaviyo header bar — dark navy */
.kvf-header {
  background: #1A1B2E;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.kvf-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.kvf-logo-img {
  height: 18px;
  width: auto;
  display: block;
}
.kvf-breadcrumb {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kvf-breadcrumb .sep {
  opacity: .5;
  font-weight: 400;
}
.kvf-breadcrumb .current {
  color: #ffffff;
  font-weight: 700;
}
.kvf-header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kvf-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(40,200,64,.15);
  border: 1px solid rgba(40,200,64,.40);
  padding: 4px 10px;
  border-radius: 999px;
}
.kvf-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 0 0 rgba(40,200,64,.5);
  animation: kvf-pulse 2.4s infinite;
}
@keyframes kvf-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,200,64,.45); }
  70% { box-shadow: 0 0 0 6px rgba(40,200,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,200,64,0); }
}
@media (prefers-reduced-motion: reduce) {
  .kvf-status .dot { animation: none; }
}

/* Tab bar */
.kvf-tabs {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(11,15,20,.08);
  padding: 0 18px;
}
.kvf-tab {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.005em;
}
.kvf-tab.active {
  color: var(--black);
  border-bottom-color: #E1394A;
  font-weight: 700;
}

/* Canvas with dotted grid */
.kvf-canvas {
  background:
    radial-gradient(circle, rgba(11,15,20,.10) 1px, transparent 1px);
  background-size: 14px 14px;
  background-color: #F4F5F7;
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Connector line between nodes */
.kvf-line {
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, rgba(11,15,20,.18) 0%, rgba(11,15,20,.28) 100%);
  position: relative;
}
.kvf-line.short { height: 14px; }

/* Generic node */
.kvf-node {
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.10);
  border-radius: 10px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  box-shadow:
    0 1px 2px rgba(11,15,20,.04),
    0 4px 10px -6px rgba(11,15,20,.08);
}
.kvf-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(11,15,20,.06);
  color: var(--black);
}
.kvf-node-text { min-width: 0; }
.kvf-node-title {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.005em;
  line-height: 1.2;
  display: block;
}
.kvf-node-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Trigger node — Klaviyo-red accent */
.kvf-node.trigger {
  border-color: rgba(225,57,74,.30);
  background: linear-gradient(180deg, #FFF7F8 0%, #FFFFFF 100%);
}
.kvf-node.trigger .kvf-node-icon {
  background: rgba(225,57,74,.10);
  color: #E1394A;
}
.kvf-node.trigger .kvf-node-sub { color: #E1394A; }

/* Email node */
.kvf-node.email .kvf-node-icon {
  background: rgba(58,149,140,.10);
  color: var(--teal-primary);
}

/* Time delay */
.kvf-node.delay .kvf-node-icon {
  background: rgba(255,176,32,.12);
  color: #C88B14;
}

/* Conditional split */
.kvf-node.split {
  border-color: rgba(26,27,46,.20);
}
.kvf-node.split .kvf-node-icon {
  background: #EEF0F5;
  color: #1A1B2E;
}

/* Exit node */
.kvf-node.exit .kvf-node-icon {
  background: rgba(11,15,20,.06);
  color: var(--text-muted);
}

/* Smart sending pill */
.kvf-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--soft-mint);
  color: var(--teal-primary);
  margin-top: 4px;
}

/* Branch container — Yes/No split */
.kvf-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  position: relative;
}
.kvf-branch::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: rgba(11,15,20,.18);
}
.kvf-branch-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.kvf-branch-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.kvf-branch-side.no .kvf-branch-label {
  background: var(--soft-mint);
  color: var(--teal-primary);
}
.kvf-branch-side.yes .kvf-branch-label {
  background: rgba(11,15,20,.06);
  color: var(--text-muted);
}
.kvf-branch .kvf-node {
  max-width: 100%;
  padding: 9px 11px;
  grid-template-columns: 26px 1fr;
  gap: 9px;
}
.kvf-branch .kvf-node-icon { width: 26px; height: 26px; }
.kvf-branch .kvf-node-title { font-size: 11.5px; }
.kvf-branch .kvf-node-sub { font-size: 9.5px; }

@media (max-width: 520px) {
  .kvf-header { padding: 10px 14px; }
  .kvf-logo-img { height: 16px; }
  .kvf-breadcrumb { font-size: 10.5px; }
  .kvf-tabs { padding: 0 10px; }
  .kvf-tab { font-size: 10.5px; padding: 9px 10px; }
  .kvf-canvas { padding: 18px 12px 22px; }
  .kvf-node { padding: 10px 12px; max-width: 280px; }
  .kvf-branch { max-width: 100%; gap: 10px; }
}

/* ============================================================
   SOLUTION V2 — Premium Klaviyo Flow Builder Mockup
   ============================================================ */
.solution-v2 {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 60%, #F5F6F8 100%);
  padding-block: clamp(80px, 11vw, 140px);
  overflow: hidden;
}
.solution-v2::before {
  content: "";
  position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,149,140,.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.solution-v2-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .solution-v2-grid { grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
}
.sol-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 18px 0 26px;
}
.sol-text h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-primary);
}
.sol-text p {
  font-size: clamp(16.5px, 1.5vw, 18.5px);
  line-height: 1.7;
  color: #2a3340;
  margin: 0 0 22px;
}
.sol-text p strong { color: var(--black); font-weight: 700; }

/* Klaviyo Flow Builder Mockup */
.kv-mockup {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow:
    0 50px 100px -36px rgba(11,15,20,.28),
    0 24px 50px -24px rgba(11,15,20,.14),
    0 2px 6px rgba(11,15,20,.04);
  overflow: hidden;
}
/* Top toolbar */
.kv-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #1A1B2E;
  color: #fff;
}
.kv-topbar .dots { display: flex; gap: 6px; }
.kv-topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: #3A3B4E; }
.kv-brand {
  display: flex; align-items: center;
  margin-left: 6px;
}
.kv-brand .kv-logo-img {
  height: 18px;
  width: auto;
  display: block;
}
.kv-meta {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 8px;
}
.kv-meta .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #28C840;
  box-shadow: 0 0 0 0 rgba(40,200,64,.5);
  animation: kv-pulse 2.4s infinite;
}
@keyframes kv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,200,64,.5); }
  70% { box-shadow: 0 0 0 8px rgba(40,200,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,200,64,0); }
}
@media (prefers-reduced-motion: reduce) {
  .kv-meta .live-dot { animation: none; }
}

/* Tabs */
.kv-tabs {
  display: flex;
  gap: 0;
  padding: 0 20px;
  background: #1A1B2E;
  border-bottom: 1px solid #2A2B3E;
}
.kv-tab {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 10px 14px;
  color: rgba(255,255,255,.5);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.kv-tab.active {
  color: #ffffff;
  border-bottom-color: #E1394A;
}

/* Canvas */
.kv-canvas {
  position: relative;
  padding: 30px 26px 26px;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(58,149,140,.04), transparent 70%),
    #FAFBFC;
}
.kv-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(11,15,20,.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: .8;
}
.kv-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Connector line */
.kv-line {
  width: 2px; height: 16px;
  background: linear-gradient(180deg, rgba(11,15,20,.14), rgba(11,15,20,.04));
  border-radius: 1px;
}

/* Flow Node */
.kv-node {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  border-radius: 12px;
  padding: 13px 14px;
  box-shadow: 0 2px 4px rgba(11,15,20,.04);
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
}
.kv-node-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(225,57,74,.10);
  color: #E1394A;
  display: grid; place-items: center;
}
.kv-node-content { min-width: 0; }
.kv-node-title {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.25;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kv-node-sub {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 3px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kv-node-badge {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(11,15,20,.05);
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Trigger variant */
.kv-node.trigger {
  background: #1A1B2E;
  border-color: #1A1B2E;
}
.kv-node.trigger .kv-node-title { color: #ffffff; }
.kv-node.trigger .kv-node-sub { color: rgba(255,255,255,.55); }
.kv-node.trigger .kv-node-icon { background: rgba(225,57,74,.20); color: #E1394A; }
.kv-node.trigger .kv-node-badge { background: rgba(255,255,255,.10); color: rgba(255,255,255,.75); }

/* Email variant */
.kv-node.email .kv-node-icon {
  background: rgba(58,149,140,.10);
  color: var(--teal-primary);
}

/* Wait/delay pill */
.kv-wait {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 13px;
  background: #ffffff;
  border: 1px dashed rgba(11,15,20,.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0;
}
.kv-wait svg { color: var(--text-muted); }

/* Conditional split label */
.kv-split {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-primary);
  background: rgba(58,149,140,.08);
  padding: 5px 12px;
  border-radius: 6px;
  margin: 2px 0;
}

/* End / conversion node */
.kv-node.end {
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-accent) 100%);
  border-color: var(--teal-primary);
  box-shadow: 0 6px 20px -8px rgba(58,149,140,.45), 0 2px 4px rgba(58,149,140,.15);
}
.kv-node.end .kv-node-title { color: #ffffff; }
.kv-node.end .kv-node-sub { color: rgba(255,255,255,.82); }
.kv-node.end .kv-node-icon { background: rgba(255,255,255,.18); color: #ffffff; }
.kv-node.end .kv-node-badge { background: rgba(255,255,255,.18); color: #ffffff; }

/* Stats footer */
.kv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(11,15,20,.06);
  background: #ffffff;
}
.kv-stat {
  padding: 18px 14px;
  border-right: 1px solid rgba(11,15,20,.05);
  text-align: center;
}
.kv-stat:last-child { border-right: none; }
.kv-stat-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.kv-stat-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}
.kv-stat-value.accent { color: var(--teal-primary); }
.kv-stat-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 520px) {
  .kv-node { max-width: 100%; padding: 11px 12px; grid-template-columns: 34px 1fr auto; gap: 10px; }
  .kv-node-icon { width: 34px; height: 34px; }
  .kv-node-title { font-size: 12.5px; }
  .kv-node-sub { font-size: 11px; }
  .kv-node-badge { font-size: 9px; padding: 3px 6px; }
  .kv-stat { padding: 14px 8px; }
  .kv-stat-value { font-size: 18px; }
}

/* ============================================================
   PROBLEM V2 — Editorial with Mockup + Stat Comparison
   ============================================================ */
.problem-v2 {
  position: relative;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(58,149,140,.05), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(79,179,168,.04), transparent 70%),
    #F5F6F8;
  padding-block: clamp(80px, 11vw, 140px);
  overflow: hidden;
}
.problem-v2 .section-head { text-align: center; max-width: 860px; margin: 0 auto 64px; }
.problem-v2 .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 18px 0 0;
}
.problem-v2 .section-head h2 em {
  font-style: italic;
  color: var(--teal-primary);
  font-weight: 500;
}

.problem-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 980px) {
  .problem-grid { grid-template-columns: 1.05fr .95fr; gap: 80px; }
}

/* Narrative column */
.problem-narrative p {
  font-size: clamp(16.5px, 1.5vw, 18.5px);
  line-height: 1.7;
  color: #2a3340;
  margin: 0 0 22px;
}
.problem-narrative p strong { color: var(--black); font-weight: 700; }
.narrative-callout {
  position: relative;
  margin-top: 30px;
  padding: 18px 22px 18px 26px;
  background: #ffffff;
  border-radius: 4px 14px 14px 4px;
  box-shadow: 0 4px 18px rgba(11,15,20,.05);
}
.narrative-callout::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 4px;
  background: #D74545;
  border-radius: 2px;
}
.narrative-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #2a3340;
}
.narrative-callout p strong { color: #D74545; }

/* Mockup card — Klaviyo-flow visualization */
.problem-mockup {
  position: relative;
}
.mockup-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(11,15,20,.06);
  box-shadow:
    0 30px 60px -30px rgba(11,15,20,.20),
    0 12px 30px -16px rgba(11,15,20,.10);
  overflow: hidden;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #FAFBFC;
  border-bottom: 1px solid rgba(11,15,20,.06);
}
.mockup-header .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #E1E5EA;
}
.mockup-header .dot:nth-child(1) { background: #FF5F57; }
.mockup-header .dot:nth-child(2) { background: #FEBC2E; }
.mockup-header .dot:nth-child(3) { background: #28C840; }
.mockup-title {
  margin-left: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.mockup-title strong { color: var(--black); }
.mockup-body {
  padding: 20px 22px 18px;
  display: grid;
  gap: 10px;
}
.mail-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}
.mail-day {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}
.mail-card {
  position: relative;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}
.mail-row.sent .mail-card { border-color: rgba(11,15,20,.08); }
.mail-subject {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.mail-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(31,138,110,.10);
  color: #1F8A6E;
  white-space: nowrap;
  flex-shrink: 0;
}
.mail-card.empty {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(215,69,69,.04) 6px,
    rgba(215,69,69,.04) 12px
  );
  border-color: rgba(215,69,69,.18);
  border-style: dashed;
  justify-content: center;
}
.mail-card.empty .empty-label {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #B4847E;
}
.mail-row.empty .mail-day { color: rgba(180,132,126,.7); }
.mockup-footer {
  padding: 14px 22px;
  background: linear-gradient(180deg, #FFF6F4 0%, #FFEFEC 100%);
  border-top: 1px solid rgba(215,69,69,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #8A3A3A;
  font-weight: 600;
}
.mockup-footer .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D74545;
  box-shadow: 0 0 0 0 rgba(215,69,69,.4);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215,69,69,.45); }
  70% { box-shadow: 0 0 0 12px rgba(215,69,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,69,69,0); }
}
@media (prefers-reduced-motion: reduce) {
  .mockup-footer .pulse { animation: none; }
}

/* Stat Comparison */
.stat-comparison {
  margin: 72px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .stat-comparison {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
}
.stat-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(11,15,20,.06);
  box-shadow: 0 10px 30px -16px rgba(11,15,20,.10);
}
.stat-card .stat-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(46px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
}
.stat-card .stat-number .prefix,
.stat-card .stat-number .suffix {
  font-size: 0.5em;
  margin-left: 2px;
  font-weight: 500;
}
.stat-card .stat-number .prefix { margin-right: 4px; margin-left: 0; }
.stat-card .stat-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.stat-card.bad {
  background: linear-gradient(180deg, #FFF6F4 0%, #FFFFFF 100%);
  border-color: rgba(215,69,69,.18);
}
.stat-card.bad .stat-number { color: #D74545; }
.stat-card.bad .stat-label { color: #8A3A3A; }
.stat-card.good {
  background: linear-gradient(180deg, #EAF6F3 0%, #FFFFFF 100%);
  border-color: rgba(58,149,140,.22);
}
.stat-card.good .stat-number { color: var(--teal-primary); }
.stat-card.good .stat-label { color: var(--teal-primary); }
.stat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--text-dim);
  padding: 0 4px;
}

/* Pull-quote (already exists but ensure styling fits) */
.problem-v2 .problem-pull {
  max-width: 820px;
  margin: 56px auto 0;
}

@media (max-width: 720px) {
  .stat-divider { display: none; }
}

/* ============================================================
   COMPARISON V2 — Matrix with vertical pill highlight
   ============================================================ */
.comparison-v2 {
  padding-block: clamp(80px, 10vw, 130px);
  background: #F5F6F8;
}
.comparison-v2 .section-head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
.comparison-v2 .section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.13;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  color: var(--black);
}
.comparison-v2 .section-head .subtitle {
  margin: 22px auto 0;
  max-width: 600px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.cmp-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 32px clamp(16px, 3vw, 44px) 28px;
  box-shadow:
    0 30px 60px -28px rgba(11,15,20,.18),
    0 8px 24px -12px rgba(11,15,20,.08);
}

.cmp-table {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
}
.cmp-featured-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% * (1.7 / 4.7));
  width: calc(100% * (1 / 4.7));
  background: linear-gradient(180deg, #EAF6F3 0%, #DEF2EC 60%, #D7EFE7 100%);
  border: 1.5px solid rgba(58,149,140,.32);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}
.cmp-cell {
  position: relative;
  z-index: 1;
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(11,15,20,.06);
  min-height: 88px;
}
.cmp-cell.criteria {
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 8px;
  padding-right: 24px;
}
.cmp-cell.criteria strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--black);
  display: block;
  margin-bottom: 6px;
}
.cmp-cell.criteria p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
/* Header row */
.cmp-row-head .cmp-cell {
  min-height: 100px;
  padding-top: 32px;
  padding-bottom: 28px;
  border-bottom: none;
}
.cmp-row-head .cmp-cell:not(.featured) {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--black);
}
.cmp-row-head .cmp-cell.featured {
  padding-top: 36px;
}
.cmp-row-head .cmp-cell.featured img.gwf-logo {
  height: 28px;
  width: auto;
  display: block;
}
/* Last data row — remove bottom border */
.cmp-table .cmp-cell.last-row { border-bottom: none; }

/* Icons */
.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.cmp-icon.check { color: #1F8A6E; }
.cmp-icon.x { color: #D74545; }
.cmp-icon.dash {
  color: #B3BAC4;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}
.cmp-cell.featured .cmp-icon.check { color: var(--teal-primary); }

.cmp-footnote {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* Mobile fallback — stack rows; GwF on top as featured */
@media (max-width: 820px) {
  .cmp-card { padding: 20px 14px 18px; }
  .cmp-featured-bg { display: none; }
  .cmp-table {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cmp-row-head { display: none; }
  .cmp-cell {
    border-bottom: 1px solid rgba(11,15,20,.06);
    min-height: 0;
    padding: 18px 14px;
  }
  .cmp-cell.criteria {
    justify-content: flex-start;
    padding: 22px 14px 12px;
  }
  .cmp-cell.criteria strong { font-size: 16px; }
  .cmp-cell:not(.criteria) {
    justify-content: space-between;
    text-align: left;
    padding-block: 12px;
  }
  .cmp-cell:not(.criteria)::before {
    content: attr(data-label);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dim);
  }
  .cmp-cell.featured {
    background: linear-gradient(180deg, #EAF6F3 0%, #DEF2EC 100%);
    border-left: 3px solid var(--teal-primary);
  }
  .cmp-cell.featured::before { color: var(--teal-primary); font-weight: 700; }
  /* Visual group separator */
  .cmp-cell.criteria:not(:first-child) { border-top: 8px solid #F5F6F8; }
}

/* === Multi-Language Flag Pills === */
.lang-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 14px 0 24px 0;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 7px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(11,15,20,.10);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0B0F14;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(11,15,20,.03);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lang-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(11,15,20,.08);
}
.lang-pill .flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(11,15,20,.10);
  flex-shrink: 0;
}
/* Larger variant for Outcome Card */
.lang-pills.lg { gap: 10px; margin: 4px 0 16px 0; }
.lang-pills.lg .lang-pill {
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  background: #F7F9FA;
  border: 1px solid rgba(79,179,168,.18);
}
.lang-pills.lg .lang-pill .flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
}
@media (max-width: 520px) {
  .lang-pills { gap: 10px; margin: 12px 0 20px 0; }
  .lang-pill { padding: 4px 9px 4px 6px; font-size: 11px; }
  .lang-pill .flag { width: 16px; height: 11px; }
}

.flow-branches {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.flow-branches::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #c8cdd5;
}

.branch {
  position: relative;
}

.branch::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 2px;
  height: 24px;
  background: #c8cdd5;
}

.hero-flow {
  transform: scale(1.12);
  transform-origin: center top;
}

.split-node {
  position: relative;
}

.split-node::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 2px;
  height: 26px;
  background: #c8cdd5;
  transform: translateX(-50%);
}
.flow-line,
.kv-line {
  background: #c8cdd5;
  width: 2px;
}