/* ============================================================
   Branchenseite Gastronomie — page-specific styles
   ============================================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--fg-1);
  overflow-x: hidden;
}

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

/* Mobile safety: prevent any rogue wide element from causing horizontal scroll */
body { overflow-x: hidden; }
/* Allow long unbreakable words (URLs, etc.) to wrap inside copy blocks */
h1, h2, h3, h4, p { overflow-wrap: anywhere; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); opacity: 0.92; }

.btn-primary {
  background: var(--ha-gradient);
  color: var(--ha-white);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover {
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--ha-white);
  color: var(--ha-ink);
  border: 1px solid var(--ha-line);
}
.btn-secondary:hover {
  background: var(--ha-surface-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-ghost {
  color: var(--ha-ink);
  padding: 12px 18px;
}
.btn-ghost:hover { background: var(--ha-surface-2); }

.btn-dark {
  background: var(--ha-ink);
  color: var(--ha-white);
}
.btn-dark:hover {
  background: #1a1f25;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-lg { padding: 18px 28px; font-size: var(--fs-body-lg); }
.btn-sm { padding: 10px 16px; font-size: var(--fs-body-sm); }

/* ---------- Pill / Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--ha-smart-mid);
  font-weight: 400;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ha-gradient);
  display: inline-block;
}
.eyebrow.no-dot::before { display: none; }
.eyebrow.on-dark { color: #9CCFE0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-body-sm);
  background: var(--ha-surface-3);
  color: var(--ha-ink);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ha-line);
}
.badge-gradient {
  background: var(--ha-gradient-soft);
  border: 1px solid rgba(0, 167, 225, 0.25);
  color: var(--ha-ink);
}

/* ---------- Section helpers ---------- */
.section { padding: var(--sp-20) 0; }
.section-tight { padding: var(--sp-16) 0; }
.section-dark {
  background: var(--ha-ink);
  color: var(--ha-white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--ha-white);
}
.section-dark p { color: rgba(255,255,255,0.78); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-12);
}
.section-head .eyebrow { justify-content: center; margin-bottom: var(--sp-4); }
.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.section-head p {
  font-size: var(--fs-body-lg);
  color: var(--fg-2);
  line-height: var(--lh-loose);
}
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.nav.scrolled {
  border-bottom-color: var(--ha-line);
  background: rgba(255,255,255,0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-6);
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: none;
  gap: var(--sp-8);
  align-items: center;
}
.nav-links a {
  font-size: var(--fs-body-sm);
  color: var(--fg-2);
  transition: color var(--dur-base);
  position: relative;
}
.nav-links a:hover { color: var(--ha-ink); }
.nav-links a::after {
  content:'';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--ha-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-ctas {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 120px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -200px;
  top: -260px;
  background: radial-gradient(closest-side, rgba(0,167,225,0.18), rgba(139,199,83,0.05) 60%, transparent 75%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-blob.left {
  left: -300px;
  right: auto;
  top: 30%;
  background: radial-gradient(closest-side, rgba(139,199,83,0.18), transparent 70%);
  width: 600px; height: 600px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--sp-16); }
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: var(--sp-5) 0 var(--sp-5);
}
.hero h1 .ha-accent { display: inline; }

.hero-sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: var(--fg-2);
  max-width: 540px;
  margin-bottom: var(--sp-8);
}
.hero-visual-wrap { display: block; }
@media (max-width: 760px) {
  .hero { padding: clamp(32px, 6vw, 64px) 0 clamp(32px, 6vw, 56px); }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); margin: var(--sp-3) 0 var(--sp-3); }
  .hero-sub { font-size: 16px; line-height: 1.55; margin-bottom: var(--sp-5); }
  .hero-ctas { margin-bottom: var(--sp-4); }
  .trust-row { font-size: 12.5px; gap: var(--sp-3); }
}

.hero-ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  font-size: var(--fs-body-sm);
  color: var(--fg-3);
}
.trust-row .item { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .check {
  width: 16px; height: 16px;
  background: var(--ha-gradient);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

/* HERO visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   HERO STAGE — The Loyalty Loop
   Food-stamp ring around a central member counter.
   ============================================================ */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.hero-stage-bg {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.hero-orb-1 {
  width: 70%; height: 70%;
  top: 5%; left: 0;
  background: radial-gradient(circle, rgba(0,167,225,0.28), transparent 70%);
}
.hero-orb-2 {
  width: 70%; height: 70%;
  bottom: 0; right: 0;
  background: radial-gradient(circle, rgba(139,199,83,0.24), transparent 70%);
}

.loop-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* ---- Food stamps positioned absolutely around the ring ---- */
.loop-stamp {
  position: absolute;
  width: 16%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ha-white);
  border: 1.5px solid var(--ha-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3.4vw, 28px);
  box-shadow: var(--shadow-1);
  z-index: 3;
  transition:
    background 360ms var(--ease-out),
    border-color 360ms var(--ease-out),
    transform 360ms var(--ease-out),
    box-shadow 360ms var(--ease-out);
}
.loop-stamp-emoji {
  filter: grayscale(0.7) opacity(0.65);
  transition: filter 360ms var(--ease-out), opacity 360ms var(--ease-out);
  line-height: 1;
}
.loop-stamp-tick {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ha-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
  box-shadow: 0 4px 10px rgba(0, 167, 225, 0.3);
}
.loop-stamp-tick svg { width: 50%; height: 50%; }

.loop-stamp.is-filled {
  background: var(--ha-white);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 8px 24px -8px rgba(0, 167, 225, 0.45),
    inset 0 0 0 2px rgba(0, 167, 225, 0.15);
}
.loop-stamp.is-filled .loop-stamp-emoji {
  filter: none;
  opacity: 1;
}
.loop-stamp.is-filled .loop-stamp-tick {
  opacity: 1;
  transform: scale(1);
}

/* ---- Central counter ---- */
.loop-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ha-white);
  box-shadow:
    0 24px 50px -16px rgba(38, 45, 53, 0.22),
    0 4px 12px rgba(38, 45, 53, 0.06),
    inset 0 0 0 1px var(--ha-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6%;
  text-align: center;
  z-index: 4;
  transition: box-shadow var(--dur-slow) var(--ease-out);
}
.loop-center.is-complete {
  box-shadow:
    0 0 0 4px rgba(139, 199, 83, 0.15),
    0 24px 50px -16px rgba(0, 167, 225, 0.35),
    0 4px 12px rgba(38, 45, 53, 0.06);
}
.loop-center-eyebrow {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
  margin-bottom: 4px;
}
.loop-center-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loop-center-label {
  font-size: clamp(10px, 1.3vw, 12px);
  color: var(--ha-ink-2);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.loop-center-progress {
  margin-top: 12px;
  width: 70%;
  height: 4px;
  background: var(--ha-surface-3);
  border-radius: 4px;
  overflow: hidden;
}
.loop-center-progress-fill {
  display: block;
  height: 100%;
  background: var(--ha-gradient);
  border-radius: 4px;
  transition: width 700ms var(--ease-out);
}
.loop-center-meta {
  margin-top: 8px;
  font-size: clamp(9px, 1.1vw, 11px);
  color: var(--ha-ink-3);
  letter-spacing: 0.04em;
}

/* ---- Reward unlocked pill ---- */
.loop-reward {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translate(-50%, 20px);
  background: var(--ha-ink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
  z-index: 5;
  white-space: nowrap;
}
.loop-reward.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}
.loop-reward-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ha-loyal);
  box-shadow: 0 0 0 0 rgba(139,199,83,0.5);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139,199,83, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(139,199,83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139,199,83, 0); }
}

/* ---- Member card ---- */
.hero-card {
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 14%;
  width: 76%;
  aspect-ratio: 1.58 / 1; /* credit-card-ish */
  border-radius: 22px;
  padding: 22px;
  background: var(--ha-gradient);
  color: white;
  box-shadow:
    0 30px 60px -20px rgba(0, 70, 100, 0.45),
    0 12px 24px -10px rgba(0,167,225, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  transform: rotate(-6deg);
  transition: transform 700ms var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.hero-card::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px at 100% 0%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(300px at 0% 100%, rgba(0,0,0,0.15), transparent 60%);
  z-index: -1;
}
.hero-card::after {
  /* subtle texture line */
  content:'';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0px, transparent 12px, rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 13px);
  z-index: -1;
}
.hero-card:hover { transform: rotate(-3deg) translateY(-4px); }

.card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-brand { display: flex; align-items: center; gap: 8px; }
.card-brand-mark {
  width: 28px; height: 28px;
  background: white;
  color: var(--ha-smart);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.04em;
}
.card-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}
.card-tier {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.card-points-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 14px;
}
.card-points-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.card-points-label {
  font-size: 11px;
  line-height: 1.3;
  padding-bottom: 6px;
  opacity: 0.92;
}
.card-points-label span {
  font-size: 10px;
  opacity: 0.75;
}

.card-progress {
  margin-top: 10px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
  overflow: hidden;
}
.card-progress-fill {
  height: 100%;
  background: white;
  border-radius: 4px;
  transition: width var(--dur-slow) var(--ease-out);
}

.card-stamps-section {
  margin-top: 16px;
}
.card-stamps-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.card-stamps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}
.card-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--ha-smart);
  transition: all 320ms var(--ease-out);
}
.card-stamp.filled {
  background: white;
  transform: scale(1);
  border-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card-stamp:not(.filled) { transform: scale(0.92); }

.card-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
}
.card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.card-since { font-size: 10px; opacity: 0.75; letter-spacing: 0.04em; }
.card-chip {
  width: 32px; height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
}
.card-chip::before, .card-chip::after {
  content:'';
  position: absolute;
  background: rgba(255,255,255,0.3);
}
.card-chip::before { top: 6px; left: 4px; right: 4px; height: 1px; }
.card-chip::after { top: 12px; left: 4px; right: 4px; height: 1px; }

/* ---- Receipt behind card ---- */
.hero-receipt {
  position: absolute;
  right: 0;
  top: 4%;
  width: 50%;
  max-width: 240px;
  background: white;
  color: var(--ha-ink);
  padding: 18px 18px 14px;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(38,45,53,0.28),
    0 6px 16px rgba(38,45,53,0.10);
  transform: rotate(7deg);
  z-index: 2;
  font-size: 12px;
  /* Torn-bottom edge */
  -webkit-mask:
    linear-gradient(#000, #000) padding-box,
    radial-gradient(circle at 6px 0, transparent 4px, #000 5px) bottom/12px 6px repeat-x;
          mask:
    linear-gradient(#000, #000) padding-box,
    radial-gradient(circle at 6px 0, transparent 4px, #000 5px) bottom/12px 6px repeat-x;
  -webkit-mask-composite: source-over;
  padding-bottom: 18px;
  transition: transform 700ms var(--ease-out);
}
.hero-receipt:hover { transform: rotate(4deg) translateY(-3px); }
.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--ha-line);
  margin-bottom: 8px;
}
.receipt-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.receipt-time { font-size: 10px; color: var(--ha-ink-3); margin-top: 1px; }
.receipt-scan {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--ha-ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  position: relative;
}
.receipt-scan::before {
  content:'';
  position: absolute;
  inset: 4px;
  background:
    linear-gradient(white 1.5px, transparent 1.5px) 0 0 / 4px 4px,
    linear-gradient(90deg, white 1.5px, transparent 1.5px) 0 0 / 4px 4px;
  opacity: 0.4;
}
.receipt-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ha-ink-2);
  padding: 3px 0;
}
.receipt-dash {
  height: 1px;
  background-image: linear-gradient(90deg, var(--ha-line) 60%, transparent 60%);
  background-size: 6px 1px;
  margin: 6px 0 4px;
}
.receipt-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.receipt-stamp {
  margin-top: 12px;
  padding: 8px 10px;
  background: var(--ha-gradient-soft);
  border: 1px solid rgba(0,167,225,0.25);
  border-radius: 8px;
  font-size: 10.5px;
  color: var(--ha-smart-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.receipt-stamp strong {
  color: var(--ha-smart);
  font-family: var(--font-display);
  font-weight: 700;
}
.receipt-stamp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(91,174,60, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(91,174,60, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(91,174,60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91,174,60, 0); }
}

/* ---- Push notification ---- */
.hero-push {
  position: absolute;
  right: -10px;
  bottom: 18%;
  width: 64%;
  max-width: 320px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow:
    0 20px 50px -16px rgba(38,45,53,0.22),
    0 4px 10px rgba(38,45,53,0.08);
  z-index: 4;
  animation: floatBob 7s ease-in-out infinite;
}
.hero-push-app {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-push-logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ha-ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.hero-push-from {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--ha-ink);
}
.hero-push-time { font-size: 10px; color: var(--ha-ink-3); }
.hero-push-body {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ha-ink-2);
}
.hero-push-body strong { color: var(--ha-ink); font-family: var(--font-display); font-weight: 700; }

.phone-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(38,45,53,0.18));
}
.phone-frame {
  width: 78%;
  aspect-ratio: 9 / 19;
  background: #1a1e24;
  border-radius: 44px;
  padding: 10px;
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--ha-white);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0a0d10;
  border-radius: 999px;
  z-index: 2;
}

.app-header {
  height: 110px;
  background: var(--ha-gradient);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 20px 16px;
  color: white;
}
.app-header .tier {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-family: var(--font-body);
}
.app-header .points {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  margin-top: 4px;
}
.app-header .label {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 2px;
}
.app-card-stack {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--ha-surface-1);
}
.app-stamp-card {
  background: white;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-stamp-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.app-stamp-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.app-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ha-surface-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  color: var(--ha-ink-3);
}
.app-stamp.filled {
  background: var(--ha-gradient);
  color: white;
}
.app-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.app-tile {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 4px;
}
.app-tile .tile-icon {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--ha-gradient-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--ha-smart);
}
.app-tile .tile-title { font-size: 10px; font-weight: 700; font-family: var(--font-display); }
.app-tile .tile-meta { font-size: 8.5px; color: var(--ha-ink-3); }
.app-nav {
  height: 50px;
  background: white;
  border-top: 1px solid var(--ha-line);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.app-nav-item {
  width: 22px; height: 22px;
  color: var(--ha-ink-3);
}
.app-nav-item.active { color: var(--ha-smart); }

/* Floating metric badges around phone */
.hero-floating {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatBob 6s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur-base) var(--ease-out),
              outline-color var(--dur-base) var(--ease-out);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hero-floating:hover {
  box-shadow: 0 18px 40px rgba(38, 45, 53, 0.18),
              0 4px 10px rgba(38, 45, 53, 0.08);
  outline-color: rgba(0, 167, 225, 0.35);
}
.hero-floating:focus-visible {
  outline-color: var(--ha-smart);
}
.hero-floating.metric-1 {
  top: 12%;
  left: -10px;
  animation-delay: 0s;
}
.hero-floating.metric-2 {
  bottom: 14%;
  right: -20px;
  animation-delay: -3s;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-floating .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ha-gradient-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--ha-smart);
}
.hero-floating .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--ha-ink);
}
.hero-floating .lbl {
  font-size: 11px;
  color: var(--ha-ink-3);
  margin-top: 2px;
}

/* Sparkline */
.spark-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
}

/* ---------- LOGO BAR ---------- */
.logos-section {
  padding: var(--sp-16) 0;
  background: var(--ha-white);
  border-top: 1px solid var(--ha-line);
  border-bottom: 1px solid var(--ha-line);
}
.logos-label {
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--fg-3);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.02em;
}
.logos-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logos-marquee {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.logos-marquee > * { margin-right: var(--sp-12); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ha-ink-3);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity var(--dur-base), color var(--dur-base);
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo-item:hover { opacity: 1; color: var(--ha-ink); }
.logo-item .glyph {
  font-style: italic;
}
/* Image logos: grayscale by default, full color on hover */
.logo-item-img {
  opacity: 1;
  height: 60px;
  padding: 0 var(--sp-4);
}
.logo-item-img img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.logo-item-img:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- PAIN POINTS ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 760px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}
.pain-card {
  background: var(--ha-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid var(--ha-line);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.pain-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ha-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
}
.pain-card h3 {
  font-size: 22px;
  line-height: 1.25;
}
.pain-card p {
  flex: 1;
  color: var(--fg-2);
  line-height: 1.6;
}
.pain-solution {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-body-sm);
  color: var(--ha-smart-mid);
  font-weight: 400;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--ha-line);
}
.pain-solution::after {
  content: '→';
  transition: transform var(--dur-base);
}
.pain-card:hover .pain-solution::after { transform: translateX(4px); }

/* ---------- METRICS ---------- */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.metrics-grid > * { min-width: 0; }
@media (min-width: 560px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}
@media (min-width: 880px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}
.metric-card {
  text-align: left;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.metric-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ha-white);
  margin-bottom: var(--sp-3);
}
.metric-label {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
}

/* ---------- REPORT BANNER ---------- */
.report-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ha-ink);
  color: white;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 900px) {
  .report-banner { grid-template-columns: 1.1fr 1fr; gap: var(--sp-12); }
}
.report-banner::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px at 90% -10%, rgba(0,167,225,0.35), transparent 60%),
    radial-gradient(500px at 0% 110%, rgba(139,199,83,0.28), transparent 60%);
  pointer-events: none;
}
.report-banner > * { position: relative; z-index: 1; }

.report-banner .eyebrow.on-dark::before { background: var(--ha-loyal); }

.report-banner h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: var(--sp-4) 0;
}
.report-banner p { color: rgba(255,255,255,0.78); font-size: var(--fs-body-lg); line-height: 1.6; }
.report-points {
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.report-points li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  color: rgba(255,255,255,0.86);
  font-size: var(--fs-body);
  list-style: none;
  line-height: 1.5;
}
.report-points li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238BC753' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Report cover visual — crossfade between cover and highlights page */
.report-cover-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.report-book {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.report-page {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.2);
}
.report-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.report-page-back {
  z-index: 1;
}
.report-page-front {
  z-index: 2;
  transition: opacity 500ms var(--ease-out);
}
.report-book:hover .report-page-front,
.report-book:focus-within .report-page-front {
  opacity: 0;
}
/* Spine no longer used in crossfade mode */
.report-book-spine { display: none; }

.report-book-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-weight: 700;
  pointer-events: none;
  transition: color var(--dur-base);
  margin-top: 2px;
}
.report-book-hint svg { opacity: 0.7; }
.report-cover-wrap:hover .report-book-hint {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 760px) {
  .report-cover-wrap { max-width: 280px; }
}

/* Mobile: center the report banner text content (book is already centered) */
@media (max-width: 899px) {
  /* Grid items default to min-width: auto; force shrinking so long
     bullets / headlines don't push the column past the viewport. */
  .report-banner > * { min-width: 0; }
  .report-banner > div:first-child { text-align: center; }
  .report-banner .report-points {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  /* Button is inline-flex with white-space:nowrap — center it explicitly */
  .report-banner > div:first-child > .btn {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- FEATURES ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
  margin-bottom: var(--sp-16);
}
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-visual { order: 1; }
}
.feature-row:last-child { margin-bottom: 0; }
.feature-text .eyebrow { margin-bottom: var(--sp-4); }
.feature-text h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.feature-text p {
  color: var(--fg-2);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ha-smart);
  font-weight: 400;
  font-size: var(--fs-body);
  transition: gap var(--dur-base);
}
.feature-link:hover { gap: 14px; }
.feature-link::after { content: '→'; transition: transform var(--dur-base); }

.feature-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  background: var(--ha-surface-2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

/* ---------- CASE STUDY ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: stretch;
}
@media (min-width: 900px) {
  .case-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.case-content { padding-right: var(--sp-4); }
.case-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: var(--sp-4) 0;
}
.case-content p { color: var(--fg-2); font-size: var(--fs-body-lg); line-height: 1.6; }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: var(--sp-8) 0;
}
@media (min-width: 540px) {
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
}
.case-metric {
  background: var(--ha-white);
  border: 1px solid var(--ha-line);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
}
.case-metric .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--ha-ink);
  letter-spacing: -0.02em;
}
.case-metric .k {
  font-size: 12px;
  color: var(--ha-ink-3);
  margin-top: 4px;
}

.case-quote {
  background: var(--ha-ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-quote::before {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at 100% 0%, rgba(0,167,225,0.3), transparent 70%);
}
.case-quote-photo {
  position: relative;
  margin: var(--sp-8) calc(-1 * var(--sp-10)) calc(-1 * var(--sp-10));
  height: 220px;
  overflow: hidden;
  /* Match the bottom corners of the parent card */
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.case-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms var(--ease-out);
}
.case-quote:hover .case-quote-photo img {
  transform: scale(1.04);
}
.case-quote-photo::after {
  /* Top gradient lets the dark card fade into the photo seamlessly */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 45, 53, 0.6) 0%, transparent 40%),
    linear-gradient(0deg,  rgba(38, 45, 53, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.case-quote-photo-caption {
  position: absolute;
  left: var(--sp-6);
  bottom: var(--sp-4);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 760px) {
  .case-quote-photo { height: 180px; }
}
.case-quote .mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.6;
  color: var(--ha-loyal);
  margin-bottom: var(--sp-4);
  opacity: 0.85;
}
.case-quote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-6);
}
.case-quote .attribution {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  margin-top: auto;
}
.case-quote .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ha-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 16px;
}
.case-quote .who { font-size: 14px; }
.case-quote .who strong { font-family: var(--font-display); display: block; color: white; }
.case-quote .who span { color: rgba(255,255,255,0.6); }
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-5);
  color: var(--ha-smart);
  font-weight: 400;
}
.case-link::after { content: '→'; transition: transform var(--dur-base); }
.case-link:hover::after { transform: translateX(4px); }

/* ---------- ROI CALCULATOR ---------- */
.roi-wrap {
  background: var(--ha-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--ha-line);
}
@media (min-width: 900px) {
  .roi-wrap { grid-template-columns: 1.05fr 1fr; }
}
.roi-inputs { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: var(--sp-6); }
.roi-output {
  background: var(--ha-ink);
  color: white;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roi-output::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px at 100% 0%, rgba(139,199,83,0.30), transparent 70%),
    radial-gradient(400px at 0% 100%, rgba(0,167,225,0.22), transparent 70%);
}
.roi-output > * { position: relative; z-index: 1; }

.roi-intro p { color: var(--fg-2); line-height: 1.6; }
.roi-presets { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.roi-preset {
  font-size: var(--fs-body-sm);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--ha-surface-2);
  color: var(--ha-ink);
  border: 1px solid transparent;
  transition: all var(--dur-base);
}
.roi-preset.active {
  background: var(--ha-gradient-soft);
  border-color: var(--ha-smart);
  color: var(--ha-smart-mid);
}
.roi-preset:hover { transform: translateY(-1px); }

.roi-field { display: flex; flex-direction: column; gap: var(--sp-3); }
.roi-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.roi-field-label { font-size: var(--fs-body-sm); color: var(--fg-2); }
.roi-field-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ha-ink);
  letter-spacing: -0.01em;
}
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--ha-surface-3);
  outline: none;
  cursor: grab;
}
.roi-slider:active { cursor: grabbing; }
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ha-gradient);
  border: 3px solid white;
  box-shadow: var(--shadow-2);
  cursor: grab;
  transition: transform var(--dur-base);
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00A7E1, #8BC753);
  border: 3px solid white;
  box-shadow: var(--shadow-2);
  cursor: grab;
}
.roi-range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ha-ink-3);
}

.roi-result-label {
  text-transform: uppercase;
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.roi-result-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 0%, #c8eaf3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--sp-2);
}
.roi-period { font-size: var(--fs-body); color: rgba(255,255,255,0.7); }
.roi-breakdown {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.7);
}
.roi-breakdown .row { display: flex; justify-content: space-between; }
.roi-breakdown .row strong { color: white; font-family: var(--font-display); }
.roi-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: var(--sp-5);
}

/* ---------- TESTIMONIALS ---------- */
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 760px) {
  .test-grid { grid-template-columns: repeat(3, 1fr); }
}
.test-card {
  background: var(--ha-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ha-line);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.test-stars {
  display: flex;
  gap: 2px;
  color: #F5B643;
  margin-bottom: var(--sp-4);
  font-size: 14px;
}
.test-card blockquote {
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--ha-ink);
  margin: 0 0 var(--sp-5);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.test-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--ha-gradient-soft);
  color: var(--ha-smart-mid);
  font-size: var(--fs-body-sm);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}
.test-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--ha-line);
}
.test-author .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ha-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 14px;
}
.test-author .who { display: flex; flex-direction: column; }
.test-author strong { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ha-ink); }
.test-author span { font-size: 12px; color: var(--ha-ink-3); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--ha-line);
}
.faq-item:first-child { border-top: 1px solid var(--ha-line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--sp-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ha-ink);
}
.faq-q:hover { color: var(--ha-smart); }
.faq-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ha-surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-out);
  color: var(--ha-ink);
}
.faq-item.open .faq-icon {
  background: var(--ha-gradient);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}
.faq-a-inner {
  padding: 0 0 var(--sp-6);
  color: var(--fg-2);
  line-height: 1.65;
  font-size: var(--fs-body);
  max-width: 720px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  background: var(--ha-ink);
  color: white;
  padding: clamp(60px, 8vw, 120px) 0;
  overflow: hidden;
}
.final-cta::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px at 50% -100px, rgba(0,167,225,0.32), transparent 60%),
    radial-gradient(500px at 100% 100%, rgba(139,199,83,0.28), transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .section-head h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.final-cta .section-head p { color: rgba(255,255,255,0.7); }
.final-ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-8);
}

/* ---------- RESOURCES ---------- */
.res-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 800px) {
  .res-grid { grid-template-columns: repeat(3, 1fr); }
}
.res-card {
  background: var(--ha-white);
  border: 1px solid var(--ha-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.res-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.res-img {
  aspect-ratio: 16 / 10;
  background: var(--ha-surface-2);
  position: relative;
  overflow: hidden;
}
.res-tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: rgba(255,255,255,0.95);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--ha-ink);
  z-index: 2;
  font-weight: 400;
}
.res-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.res-body h3 {
  font-size: 20px;
  line-height: 1.3;
}
.res-body p { color: var(--fg-2); font-size: var(--fs-body-sm); line-height: 1.55; flex: 1; }
.res-link {
  color: var(--ha-smart);
  font-weight: 400;
  font-size: var(--fs-body-sm);
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-base);
}
.res-link:hover { gap: 12px; }
.res-link::after { content: '→'; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ha-ink);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}
.footer-brand img { height: 44px; width: auto; margin-bottom: var(--sp-5); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: var(--fs-body-sm); max-width: 280px; line-height: 1.55; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a { color: rgba(255,255,255,0.6); font-size: var(--fs-body-sm); transition: color var(--dur-base); }
.footer-col a:hover { color: white; }

@media (max-width: 760px) {
  .footer-col {
    display: none;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-locales {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 12px;
}

/* ---------- MOBILE STICKY ---------- */
.mobile-sticky {
  position: fixed;
  bottom: 12px;
  left: 12px; right: 12px;
  z-index: 60;
  background: var(--ha-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-3);
  padding: 8px;
  display: none;
  gap: 8px;
  border: 1px solid var(--ha-line);
}
.mobile-sticky .btn { flex: 1; padding: 12px; font-size: 14px; }
@media (max-width: 760px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 90px; }
}

/* ---------- Misc helpers ---------- */
.row { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

/* Tweak: theme variant for hero accent intensity */
body[data-theme="vivid"] .hero-bg-blob {
  opacity: 1.4;
  filter: blur(10px);
}
body[data-theme="quiet"] .hero-bg-blob {
  opacity: 0.4;
}

/* ============================================================
   FEATURE VISUALS v2 — simple, single-motif per panel
   ============================================================ */
.feature-visual { padding: 0; }
.feature-visual > * { width: 100%; height: 100%; }

.fv2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5%, 56px);
  position: relative;
  overflow: hidden;
}

/* ---- 1. Loyalty ---- */
.fv2-loyalty {
  background: var(--ha-surface-3);
  align-items: center;
  justify-content: center;
}
.fv2-loyalty::before,
.fv2-loyalty::after {
  display: none;
}
.fv2-loyalty-card {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 18px;
  padding: clamp(20px, 3.2%, 32px);
  width: min(100%, 380px);
  box-shadow:
    0 24px 48px -20px rgba(38, 45, 53, 0.18),
    0 2px 8px rgba(38, 45, 53, 0.04),
    inset 0 0 0 1px rgba(38, 45, 53, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.fv2-loyalty-card.is-celebrate {
  box-shadow:
    0 0 0 4px rgba(139, 199, 83, 0.18),
    0 30px 60px -20px rgba(0, 167, 225, 0.45),
    0 4px 12px rgba(38, 45, 53, 0.06);
  transform: translateY(-4px);
}
.fv2-loyalty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv2-loyalty-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
}
.fv2-loyalty-tier {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ha-gradient-soft);
  color: var(--ha-smart-mid);
  font-family: var(--font-display);
  font-weight: 700;
}
.fv2-loyalty-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ha-ink);
  /* Smoother weight transition during count-up */
  font-variant-numeric: tabular-nums;
}
.fv2-loyalty-count span {
  font-size: 0.34em;
  letter-spacing: 0.06em;
  color: var(--ha-ink-3);
  -webkit-text-fill-color: var(--ha-ink-3);
  margin-left: 6px;
  font-weight: 400;
  font-family: var(--font-body);
}
.fv2-loyalty-progress {
  height: 4px;
  background: var(--ha-surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.fv2-loyalty-progress-fill {
  height: 100%;
  background: var(--ha-smart);
  border-radius: 999px;
  transition: width 650ms var(--ease-out);
}
.fv2-loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.fv2-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ha-surface-3);
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: scale(0.88);
  transition: background 500ms var(--ease-out),
              transform 500ms var(--ease-out),
              box-shadow 500ms var(--ease-out);
}
.fv2-stamp svg { width: 50%; height: 50%; }
.fv2-stamp.is-on {
  transform: scale(1);
  box-shadow: 0 4px 10px -2px rgba(38, 45, 53, 0.18);
}
.fv2-loyalty-meta {
  font-size: 12px;
  color: var(--ha-ink-3);
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 320ms var(--ease-out);
}
.fv2-loyalty-meta.is-complete {
  color: var(--ok);
}
.fv2-loyalty-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ha-ink);
}
.fv2-loyalty-meta-emoji { font-size: 14px; }

/* Confetti burst — 14 little bits flying outward */
.fv2-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.fv2-confetti-bit {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--col, #00A7E1);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.fv2-confetti.is-on .fv2-confetti-bit {
  animation: confetti 1.2s var(--ease-out) var(--delay, 0ms) forwards;
}
@keyframes confetti {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--ang)) translateY(0) rotate(0deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--ang)) translateY(120px) rotate(360deg);
  }
}

/* ---- 2. Push ---- */
.fv2-push {
  background: var(--ha-ink);
  color: white;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.fv2-push::before {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px at 50% 30%, rgba(0,167,225,0.18), transparent 70%);
  pointer-events: none;
}
.fv2-push-card {
  position: relative;
  z-index: 1;
  width: min(86%, 360px);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
  animation: pushSlideIn 700ms cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes pushSlideIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.88) rotate(-2deg); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  80%  { transform: translateY(-3px) scale(1.02) rotate(0.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}
.fv2-push-card::after {
  content:'';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,167,225,0.5), rgba(139,199,83,0.5));
  opacity: 0;
  z-index: -1;
  filter: blur(14px);
  animation: pushGlow 700ms ease-out both;
}
@keyframes pushGlow {
  0% { opacity: 0; }
  30% { opacity: 0.55; }
  100% { opacity: 0; }
}
.fv2-push-tag-icon {
  display: inline-block;
  margin-right: 4px;
  animation: pushIconBounce 700ms cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes pushIconBounce {
  0%   { transform: scale(0.4) rotate(-30deg); }
  60%  { transform: scale(1.25) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.fv2-push-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ha-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: white;
  flex-shrink: 0;
  animation: pushLogoNudge 700ms var(--ease-out) both;
}
@keyframes pushLogoNudge {
  0% { transform: scale(0.7) rotate(-8deg); }
  60% { transform: scale(1.08) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.fv2-push-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fv2-push-meta {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.fv2-push-tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.fv2-push-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.fv2-push-body {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.fv2-push-dots {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.fv2-push-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 320ms, width 320ms;
}
.fv2-push-dot.is-on {
  background: var(--ha-loyal);
  width: 22px;
  border-radius: 999px;
}

/* ---- 3. Reviews ---- */
.fv2-reviews {
  background: var(--ha-surface-3);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.fv2-reviews-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -0.06em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv2-reviews-stars {
  display: flex;
  gap: clamp(6px, 1.5vw, 14px);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
}
.fv2-reviews-star {
  color: var(--ha-surface-3);
  transition: color 360ms var(--ease-out), transform 360ms var(--ease-out);
}
.fv2-reviews-star.is-on {
  color: #F5B643;
  transform: scale(1);
}
.fv2-reviews-star:not(.is-on) {
  transform: scale(0.92);
}
.fv2-reviews-meta {
  font-size: 13px;
  color: var(--ha-ink-3);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ---- 4. CRM ---- */
.fv2-crm {
  background: var(--ha-surface-3);
  gap: 20px;
  border-left: 0;
}
.fv2-crm::before {
  display: none;
}
.fv2-crm-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
  position: relative;
  z-index: 1;
}
.fv2-crm-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.fv2-crm-row { display: flex; flex-direction: column; gap: 6px; }
.fv2-crm-row-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}
.fv2-crm-row-label span { color: var(--ha-ink-2); display: inline-flex; align-items: center; gap: 6px; }
.fv2-crm-emoji { font-size: 15px; line-height: 1; }
.fv2-crm-row-label strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ha-ink);
}
.fv2-crm-track {
  height: 10px;
  background: var(--ha-surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.fv2-crm-fill {
  height: 100%;
  background: var(--ha-smart);
  border-radius: 999px;
  transition: width 1400ms var(--ease-out);
}
.fv2-crm-foot {
  font-size: 12px;
  color: var(--ha-ink-3);
  border-top: 1px dashed var(--ha-line);
  padding-top: 14px;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fv2-stamp, .fv2-crm-fill, .fv2-reviews-star, .fv2-push-card, .fv2-push-dot {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   Nexa rendering fix — the font's ascenders sit above the em-box,
   so `line-height: 1` or `1.04` clips the top of glyphs (especially
   with -webkit-background-clip: text). Bump headlines + display
   numerics to a min line-height + a tiny top breathing room.
   ============================================================ */
.hero h1,
.final-cta .section-head h2 {
  line-height: 1.08;
}
.case-content h2,
.section-head h2 {
  line-height: 1.1;
}
.metric-num,
.roi-result-num,
.loop-center-num,
.fv2-reviews-num,
.fv2-loyalty-count,
.case-metric .v,
.pain-num,
.report-cover .year,
.hero-floating .num,
.card-points-num {
  line-height: 1.1;
  padding-top: 0.06em;
}
/* Gradient-clipped text needs the same top padding so the gradient surface
   actually covers the painted glyph. */
.ha-accent,
.gradient-text {
  padding-top: 0.04em;
  display: inline-block;
}
/* Restore inline-block-safe alignment for inline spans in headings */
h1 .ha-accent, h2 .ha-accent, h3 .ha-accent, h4 .ha-accent {
  vertical-align: baseline;
}
.feature-visual { padding: 0; }
.feature-visual > * { width: 100%; height: 100%; }

/* ----- 1. Loyalty visual ----- */
.fv-loyalty {
  background: linear-gradient(135deg, #F0FAFD 0%, #F3F9EC 100%);
  padding: clamp(24px, 4.5%, 44px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-loyalty::before {
  content:'';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,167,225,0.18), transparent 70%);
  top: -40px; right: -60px;
  pointer-events: none;
}
.fv-loyalty-stagecanvas {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fv-card.fv-loyalty-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 1;
}
.fv-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.fv-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
  margin-bottom: 6px;
}
.fv-card-points { display: flex; align-items: baseline; gap: 8px; }
.fv-points-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ha-ink);
  transition: color 320ms;
}
.fv-points-label { font-size: 11px; color: var(--ha-ink-3); }
.fv-plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ha-loyal);
  padding: 4px 10px;
  background: rgba(139,199,83, 0.15);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.fv-plus.is-on { opacity: 1; transform: translateY(0); }

.fv-stamp-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.fv-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ha-surface-3);
  border: 1.5px solid var(--ha-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 360ms var(--ease-out), border-color 360ms var(--ease-out), transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
  transform: scale(0.9);
}
.fv-stamp.is-filled {
  background: var(--ha-gradient);
  border-color: transparent;
  transform: scale(1);
  box-shadow: 0 4px 10px rgba(0,167,225, 0.28);
}
.fv-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fv-tick {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ha-smart-mid);
}
.fv-progress {
  flex: 1;
  height: 4px;
  background: var(--ha-surface-3);
  border-radius: 4px;
  overflow: hidden;
}
.fv-progress-fill {
  display: block; height: 100%;
  background: var(--ha-gradient);
  border-radius: 4px;
  transition: width 600ms var(--ease-out);
}

.fv-receipt {
  position: absolute;
  width: 90px;
  background: white;
  padding: 10px 12px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
  right: 8%;
  bottom: 6%;
  transform: translate(40px, 20px) rotate(8deg);
  opacity: 0;
  transition: opacity 360ms var(--ease-out), transform 480ms var(--ease-out);
  z-index: 2;
  -webkit-mask:
    linear-gradient(#000, #000) padding-box,
    radial-gradient(circle at 6px 0, transparent 4px, #000 5px) bottom/12px 6px repeat-x;
          mask:
    linear-gradient(#000, #000) padding-box,
    radial-gradient(circle at 6px 0, transparent 4px, #000 5px) bottom/12px 6px repeat-x;
}
.fv-receipt.is-scanning {
  opacity: 1;
  transform: translate(0, 0) rotate(2deg);
}
.fv-receipt-line { height: 3px; background: var(--ha-line); border-radius: 2px; margin-bottom: 4px; }
.fv-receipt-line.short { width: 70%; }
.fv-receipt-qr {
  width: 40px; height: 40px;
  background: var(--ha-ink);
  border-radius: 4px;
  margin: 8px auto 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-receipt-qr-grid {
  width: 28px; height: 28px;
  background:
    linear-gradient(white 1.5px, transparent 1.5px) 0 0 / 4px 4px,
    linear-gradient(90deg, white 1.5px, transparent 1.5px) 0 0 / 4px 4px;
  opacity: 0.5;
}
.fv-receipt-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  color: var(--ha-ink-2);
}

.fv-reward-chip {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translate(-50%, 20px);
  background: var(--ha-ink);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  z-index: 3;
  white-space: nowrap;
}
.fv-reward-chip.is-on { opacity: 1; transform: translate(-50%, 0); }
.fv-reward-emoji { font-size: 22px; line-height: 1; }
.fv-reward-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.fv-reward-meta { font-size: 10px; opacity: 0.7; }

/* ----- 2. Push / Automation visual ----- */
.fv-push {
  background: linear-gradient(135deg, #262D35 0%, #1a1f25 100%);
  padding: clamp(20px, 4%, 36px);
  position: relative;
  overflow: hidden;
  color: white;
}
.fv-push::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px at 50% 0%, rgba(0,167,225,0.25), transparent 60%),
    radial-gradient(400px at 50% 100%, rgba(139,199,83,0.16), transparent 65%);
  pointer-events: none;
}
.fv-push-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.fv-push-trigger {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-body);
  margin: 0 auto 12px;
  width: fit-content;
  display: flex;
}
.fv-push-trigger-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ha-loyal);
  box-shadow: 0 0 0 0 rgba(139,199,83, 0.5);
  animation: pulse 1.6s infinite;
}

.fv-push-splitter {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 6px 0;
}
.fv-push-splitter-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.fv-push-channels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.fv-push-channel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  opacity: 0.5;
  transform: translateY(8px);
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out), background 360ms, border-color 360ms;
}
.fv-push-channel.is-fired {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,167,225,0.4);
}
.fv-push-channel-head {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
}
.fv-push-channel-icon { font-size: 14px; }
.fv-push-channel-name { letter-spacing: 0.04em; }
.fv-push-channel-body {
  margin-top: 6px;
  font-size: 10.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}

/* ----- 3. Reviews visual ----- */
.fv-reviews {
  background: linear-gradient(135deg, #FAFBFC 0%, #F4F9EC 100%);
  padding: clamp(20px, 4%, 36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fv-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv-reviews-g {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--ha-ink);
}
.fv-reviews-trend {
  font-size: 11px;
  color: var(--ok);
  font-family: var(--font-display);
  font-weight: 700;
}
.fv-reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-2);
}
.fv-reviews-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 360ms;
}
.fv-reviews-stars { color: #F5B643; letter-spacing: 2px; font-size: 14px; }
.fv-reviews-count { font-size: 11px; color: var(--ha-ink-3); margin-top: 2px; }

.fv-reviews-feed { display: flex; flex-direction: column; gap: 8px; }
.fv-reviews-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-1);
  animation: slideInRight 460ms var(--ease-out) both;
}
.fv-reviews-item.is-new {
  border-left: 3px solid var(--ha-loyal);
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.fv-reviews-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ha-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
}
.fv-reviews-txt { flex: 1; min-width: 0; }
.fv-reviews-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.fv-reviews-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.fv-reviews-stars-small { color: #F5B643; font-size: 10px; letter-spacing: 1px; }
.fv-reviews-msg {
  font-size: 11px;
  color: var(--ha-ink-3);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fv-reviews-plus {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(139,199,83,0.18);
  color: var(--ok);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.fv-reviews-request {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 40px);
  background: var(--ha-ink);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 360ms, transform 360ms var(--ease-out);
  z-index: 3;
  text-align: center;
  width: max-content;
  max-width: 80%;
}
.fv-reviews-request.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}
.fv-reviews-request-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.fv-reviews-request-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
  font-size: 22px;
}
.fv-reviews-tap {
  color: rgba(255,255,255,0.25);
  transition: color 200ms, transform 200ms;
}
.fv-reviews-tap.is-tapped {
  color: #F5B643;
  transform: scale(1.15);
}

/* ----- 4. CRM visual ----- */
.fv-crm {
  background: linear-gradient(135deg, #F5F9FB 0%, #FAFBFC 100%);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
@media (min-width: 700px) {
  .fv-crm { grid-template-columns: 1.1fr 1fr; }
}
.fv-crm-canvas {
  position: relative;
  min-height: 220px;
  padding: clamp(16px, 3%, 28px);
  background: radial-gradient(800px at 30% 30%, rgba(0,167,225,0.06), transparent 70%);
  border-right: 1px dashed var(--ha-line);
}
.fv-crm-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 900ms var(--ease-out), top 900ms var(--ease-out), background 320ms;
  box-shadow: 0 4px 10px rgba(0, 167, 225, 0.15);
}
.fv-crm-seg {
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
  z-index: 2;
  pointer-events: none;
}
.fv-crm-seg.is-on { opacity: 1; }
.fv-crm-seg-dot {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px dashed var(--ha-line);
  background: rgba(255,255,255,0.6);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.fv-crm-seg.is-target .fv-crm-seg-dot {
  border-color: var(--ha-loyal);
  background: rgba(139,199,83,0.12);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(139,199,83, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(139,199,83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139,199,83, 0); }
}
.fv-crm-seg-info {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}
.fv-crm-seg-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.fv-crm-seg-count {
  font-size: 10px;
  color: var(--ha-ink-3);
}
.fv-crm-burst {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ha-loyal);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
}
.fv-crm-burst.is-on {
  opacity: 1;
  animation: burst 1.4s var(--ease-out) infinite;
}
@keyframes burst {
  0% { width: 8px; height: 8px; opacity: 0.9; }
  100% { width: 80px; height: 80px; opacity: 0; }
}

.fv-crm-panel {
  padding: clamp(18px, 3.5%, 28px);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.fv-crm-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fv-crm-panel-eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
}
.fv-crm-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.fv-crm-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ha-surface-3);
  color: var(--ha-ink-3);
  transition: background 320ms, color 320ms;
}
.fv-crm-status.is-on {
  background: rgba(139,199,83,0.15);
  color: var(--ok);
}
.fv-crm-panel-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ha-ink-3);
}
.fv-crm-panel-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ha-ink);
}
.fv-crm-bar {
  height: 6px;
  background: var(--ha-surface-3);
  border-radius: 6px;
  overflow: hidden;
}
.fv-crm-bar-fill {
  height: 100%;
  background: var(--ha-gradient);
  border-radius: 6px;
  transition: width 800ms var(--ease-out);
}
.fv-crm-panel-meta {
  font-size: 11px;
  color: var(--ha-ink-3);
}

/* L'Osteria card banner — pizza wheel of fortune */
.losteria-wheel-wrap {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FAFBFC 0%, #F0FAFD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.losteria-wheel-wrap::before {
  content: '';
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,167,225,0.16), transparent 70%);
  bottom: -20%;
  right: -10%;
}
.losteria-wheel-svg {
  width: 78%;
  height: 78%;
  position: relative;
  z-index: 1;
}
.losteria-wheel {
  transform-origin: 180px 180px;
  animation: pizzaSpin 6s cubic-bezier(.25, 1, .35, 1) infinite;
}
@keyframes pizzaSpin {
  0%   { transform: rotate(0deg); }
  /* Quick start, decelerate to a stop on a prize at ~70% */
  70%  { transform: rotate(720deg); }
  /* Hold briefly so the viewer can read the prize */
  85%  { transform: rotate(720deg); }
  100% { transform: rotate(720deg); }
}
/* Pointer wiggle while wheel is spinning, settles when it lands */
.losteria-pointer {
  transform-origin: 180px 60px;
  animation: pizzaPointerWiggle 6s ease-in-out infinite;
}
@keyframes pizzaPointerWiggle {
  0%, 70%   { transform: rotate(0deg); }
  5%        { transform: rotate(-14deg); }
  12%       { transform: rotate(10deg); }
  20%       { transform: rotate(-8deg); }
  30%       { transform: rotate(6deg); }
  45%       { transform: rotate(-4deg); }
  60%       { transform: rotate(2deg); }
  100%      { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .losteria-wheel, .losteria-pointer { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .fv-receipt, .fv-reward-chip, .fv-reviews-request, .fv-push-channel, .fv-stamp,
  .fv-progress-fill, .fv-crm-dot, .fv-crm-seg, .fv-crm-bar-fill {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   Mobile refinements — header, sticky, swipe carousels, etc.
   ============================================================ */

/* Mobile-sticky fades in only after the user scrolls a bit */
.mobile-sticky {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mobile-sticky.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hide the "Report" ghost button in the nav on mobile only */
@media (max-width: 760px) {
  .nav-report-btn { display: none !important; }
}

/* ============================================================
   Mobile typography hierarchy
   H1 hero ≈ 32–38px → biggest
   H2 section subheads ≈ 22–26px → clearly smaller than H1
   H3 feature/pain titles ≈ 17–19px
   Body / lede ≈ 14.5–15px
   ============================================================ */
@media (max-width: 760px) {
  /* lede / sub copy */
  .section-head p, .lede { font-size: 16.5px; line-height: 1.55; }
  .pain-card p, .feature-text p, .case-content p { font-size: 15.5px; line-height: 1.55; }

  /* all section H2s — uniformly sized, below the hero H1 */
  h1 { font-size: clamp(28px, 8vw, 36px) !important; }
  h2, .section-head h2, .case-content h2, .report-banner h2, .final-cta .section-head h2 {
    font-size: clamp(24px, 7vw, 28px) !important;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  h3, .feature-text h3, .pain-card h3 { font-size: clamp(20px, 6vw, 24px) !important; line-height: 1.25; }
  h4 { font-size: clamp(18px, 5vw, 20px) !important; }
  h5 { font-size: clamp(16px, 4.5vw, 18px) !important; }
  h6 { font-size: clamp(14px, 4vw, 16px) !important; }
  .step-title { font-size: 17px; }
  .test-card blockquote { font-size: 16px; line-height: 1.45; }

  /* H4, H5, H6 mobile sizes */
  h4, .h4 { font-size: clamp(18px, 5vw, 20px); }
  h5, .h5 { font-size: clamp(16px, 4.5vw, 18px); }
  h6, .h6 { font-size: clamp(14px, 4vw, 16px); }

  /* Metrics — keep the display numerals smaller than the hero H1 */
  .metric-num { font-size: clamp(28px, 9vw, 38px); }
  .metric-label { font-size: 14.5px; }

  /* compact buttons (slightly larger again for legibility) */
  .btn { font-size: 14px; padding: 12px 20px; gap: var(--sp-2); }
  .btn-lg { font-size: 15.5px; padding: 15px 24px; }
  .btn-sm { font-size: 13px; padding: 10px 16px; }
  .mobile-sticky .btn { padding: 12px; font-size: 13.5px; }

  /* report-banner copy + hide bullets (kept from previous pass) */
  .report-banner .report-points { display: none; }
  .report-banner p { font-size: 15.5px; line-height: 1.55; }
}
.report-cover-wrap {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Final CTA: gradient button (btn-primary already has gradient, ensure it sits on top) */
.final-cta-primary { position: relative; z-index: 1; }
.final-ctas { justify-content: center; }

/* Swipe carousel — applies on mobile to testimonials and resources */
.swipe-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: var(--sp-4);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ha-ink-3);
  font-weight: 700;
}
.swipe-hint svg {
  animation: swipe-bounce 1.6s var(--ease-in-out) infinite;
}
@keyframes swipe-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@media (max-width: 760px) {
  .swipe-hint { display: flex; }
  .test-grid, .res-grid {
    grid-template-columns: none;
    display: flex;
    gap: var(--sp-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* break out to the viewport edge so cards can peek beyond container padding */
    margin: 0 -24px;
    padding: 4px 24px 8px;
  }
  .test-grid::-webkit-scrollbar, .res-grid::-webkit-scrollbar { display: none; }
  .test-card, .res-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: start;
  }
  /* Resources cards have aspect-ratio image; make sure they stay sane on mobile */
  .res-card { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .swipe-hint svg { animation: none; }
}


/* ============================================================
   BÄCKEREI additions — report cover card, podcast section,
   class-based FAQ, photo placeholders
   ============================================================ */

/* ---- Report cover card (dark, gradient glow, emoji + hover highlights) ---- */
.report-cover {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #313944 0%, #12161b 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.report-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px at 88% -8%, rgba(0,167,225,0.42), transparent 62%),
    radial-gradient(360px at 0% 108%, rgba(139,199,83,0.34), transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.report-cover-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  color: white;
}
.report-cover-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.report-cover-emoji {
  font-size: clamp(56px, 12vw, 88px);
  line-height: 1;
  margin: auto 0 18px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}
.report-cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.report-cover-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.report-cover-hint {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: opacity 400ms var(--ease-out);
}
.report-cover-highlights {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(19,23,28,0.92), rgba(19,23,28,0.97));
  backdrop-filter: blur(4px);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  pointer-events: none;
}
.report-cover:hover .report-cover-highlights,
.report-cover:focus-within .report-cover-highlights { opacity: 1; transform: translateY(0); }
.report-cover:hover .report-cover-hint { opacity: 0; }
.report-cover-hl {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.report-cover-hl:last-child { border-bottom: none; padding-bottom: 0; }
.report-cover-hl .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--ha-gradient);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  padding-top: 0.06em;
}
.report-cover-hl .k { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.4; }
.report-cover-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ---- Podcast section ---- */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .podcast-grid { grid-template-columns: 300px 1fr; gap: var(--sp-12); align-items: center; }
}
.podcast-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ha-gradient-45);
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.podcast-cover::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(300px at 22% 18%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(320px at 100% 100%, rgba(0,0,0,0.18), transparent 60%);
  z-index: 0;
}
.podcast-cover img,
.podcast-cover .podcast-cover-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 1200ms var(--ease-out);
}
.podcast-card:hover .podcast-cover img,
.podcast-card:hover .podcast-cover-media { transform: scale(1.03); }
.podcast-cover-mic {
  position: relative;
  z-index: 1;
  font-size: clamp(64px, 12vw, 104px);
  line-height: 1;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.3));
}
.podcast-cover-play {
  position: absolute;
  z-index: 2;
  right: 18px; bottom: 18px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.podcast-cover-play svg { color: var(--ha-ink); }
.podcast-card:hover .podcast-cover-play { animation: podcastPulse 1.4s var(--ease-in-out) infinite; }
@keyframes podcastPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }
  50% { transform: scale(1.08); box-shadow: 0 14px 30px rgba(0,167,225,0.3); }
}
.podcast-card {
  text-decoration: none;
  color: inherit;
}
.podcast-text .eyebrow { margin-bottom: var(--sp-4); }
.podcast-text h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.podcast-text p { color: var(--fg-2); font-size: var(--fs-body-lg); line-height: 1.6; margin-bottom: var(--sp-5); }
.podcast-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ha-smart); font-weight: 400; font-size: var(--fs-body);
  transition: gap var(--dur-base);
}
.podcast-link::after { content: '→'; transition: transform var(--dur-base); }
.podcast-card:hover .podcast-link { gap: 14px; }
.podcast-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ha-ink-3); font-family: var(--font-display); font-weight: 700;
  margin-bottom: var(--sp-3);
}

/* ---- Class-based FAQ open (no JS height measurement needed) ---- */
.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease-out); }
.faq-item.open .faq-a { max-height: 520px; }

/* ---- Podcast resource illustration (gradient + mic) ---- */
.res-illu-podcast {
  width: 100%; height: 100%;
  background: var(--ha-gradient-45);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.res-illu-podcast::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(240px at 24% 20%, rgba(255,255,255,0.3), transparent 60%);
}
.res-illu-podcast .mic { font-size: 52px; position: relative; z-index: 1; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22)); }

/* ---- Generic photo placeholder (real images come later) ---- */
.photo-ph {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,167,225,0.16), rgba(139,199,83,0.16)),
    var(--ha-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.photo-ph span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ha-ink-3);
  display: inline-flex; align-items: center; gap: 8px;
}


/* ---- Class-driven feature-visual animation hooks (DC port) ---- */
.fv2-stamp:not(.is-on) svg { opacity: 0; }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(1){ background: rgb(0,167,225); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(2){ background: rgb(20,172,205); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(3){ background: rgb(40,176,184); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(4){ background: rgb(60,181,164); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(5){ background: rgb(79,185,144); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(6){ background: rgb(99,190,124); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(7){ background: rgb(119,194,103); }
.fv2-loyalty-stamps .fv2-stamp.is-on:nth-child(8){ background: rgb(139,199,83); }

/* CRM bars grow when parent gets .is-grown */
.fv2-crm-bars .fv2-crm-fill { width: 0; }
.fv2-crm-bars.is-grown .fv2-crm-row:nth-child(1) .fv2-crm-fill { width: 58%; transition-delay: 0ms; }
.fv2-crm-bars.is-grown .fv2-crm-row:nth-child(2) .fv2-crm-fill { width: 32%; transition-delay: 120ms; }
.fv2-crm-bars.is-grown .fv2-crm-row:nth-child(3) .fv2-crm-fill { width: 10%; transition-delay: 240ms; }

/* Push single WhatsApp card slides in when its visual scrolls into view */
/* Push: 3-message loop — distinct animation-names so the swap always restarts */
@keyframes pushSwapA {
  0% { opacity: 0; transform: translateY(24px) scale(0.88) rotate(-2deg); filter: blur(4px); }
  60% { opacity: 1; filter: blur(0); }
  80% { transform: translateY(-3px) scale(1.02) rotate(0.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes pushSwapB {
  0% { opacity: 0; transform: translateY(24px) scale(0.88) rotate(-2deg); filter: blur(4px); }
  60% { opacity: 1; filter: blur(0); }
  80% { transform: translateY(-3px) scale(1.02) rotate(0.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes pushSwapC {
  0% { opacity: 0; transform: translateY(24px) scale(0.88) rotate(-2deg); filter: blur(4px); }
  60% { opacity: 1; filter: blur(0); }
  80% { transform: translateY(-3px) scale(1.02) rotate(0.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0); }
}
.fv2-push-card.anim-0 { animation: pushSwapA 640ms cubic-bezier(.34, 1.56, .64, 1) both; }
.fv2-push-card.anim-1 { animation: pushSwapB 640ms cubic-bezier(.34, 1.56, .64, 1) both; }
.fv2-push-card.anim-2 { animation: pushSwapC 640ms cubic-bezier(.34, 1.56, .64, 1) both; }
.fv2-push-card.anim-0::after { animation: pushGlow 640ms ease-out both; }
.fv2-push-card.anim-1::after { animation: pushGlow 640ms ease-out both; }
.fv2-push-card.anim-2::after { animation: pushGlow 640ms ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .fv2-push-card.anim-0, .fv2-push-card.anim-1, .fv2-push-card.anim-2 { animation: none; }
}

/* Loyalty stamp pass: a touch larger / more legible */
.fv2-loyalty-card { width: min(100%, 400px); }
.fv2-loyalty-stamps { gap: 8px; }
.fv2-loyalty-stamps .fv2-stamp svg { width: 56%; height: 56%; }
/* Count-up number as prominent as the Gastro site */
.fv2-loyalty-count { font-size: clamp(46px, 6vw, 66px); }

/* Tweak: hide floating hero badges */
.hero-floating.is-hidden { display: none !important; }

/* Uploaded logo handling: white brotsüchtig logo → invert so it reads on the light bar */
.logo-item-img.is-inverted img { filter: invert(1) grayscale(100%); opacity: 0.55; }
.logo-item-img.is-inverted:hover img { filter: invert(1); opacity: 0.9; }
