/* ═══════════════════════════════════════════════════════════════════
   QuickQuote Marketing – Design System
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg:          #060B0E;
  --bg-soft:     #0C1210;
  --surface:     #111613;
  --surface-2:   #182019;
  --green:       #0B6E4F;
  --green-light: #14B87A;
  --green-glow:  rgba(11, 110, 79, 0.25);
  --green-soft:  rgba(11, 110, 79, 0.12);
  --white:       #F5F7FA;
  --muted:       #8A9A90;
  --dim:         #5C6B62;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --shadow:      0 28px 60px rgba(0, 0, 0, 0.4);
  --shadow-sm:   0 8px 24px rgba(0, 0, 0, 0.3);
  --radius-xs:   8px;
  --radius-sm:   14px;
  --radius-md:   24px;
  --radius-lg:   32px;
  --radius-pill: 999px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background:
    radial-gradient(ellipse at 15% 0%, var(--green-glow), transparent 40%),
    radial-gradient(ellipse at 85% 5%, rgba(20, 184, 122, 0.08), transparent 30%),
    linear-gradient(180deg, #080E0B 0%, var(--bg) 50%, #040608 100%);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, .heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 800;
  line-height: 1.05;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.site-shell {
  width: min(1720px, calc(100% - 48px));
  margin: 0 auto;
}

.section-spacing {
  padding: 100px 0;
}

/* ── Scroll Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-children.visible > *:nth-child(8) { transition-delay: 0.7s; }
.reveal-children.visible > *:nth-child(9) { transition-delay: 0.8s; }
.reveal-children.visible > *:nth-child(10) { transition-delay: 0.9s; }
.reveal-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance animations ────────────────────────────────────── */
@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroBoardCard {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.marketing-home .hero-copy {
  animation: heroSlideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.marketing-home .hero-right {
  animation: heroSlideRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.marketing-home .hero-copy .eyebrow {
  animation: heroFadeUp 0.7s ease 0.3s both;
}
.marketing-home .hero-copy h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.marketing-home .hero-copy .lead {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.marketing-home .hero-actions {
  animation: heroFadeUp 0.7s ease 0.75s both;
}
.marketing-home .hero-stats-row {
  animation: heroFadeUp 0.7s ease 0.85s both;
}
.marketing-home .trust-row {
  animation: heroFadeUp 0.7s ease 0.95s both;
}

/* Stagger the 3 board cards */
.hero-board-step:nth-child(2) { animation: heroBoardCard 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero-board-step:nth-child(3) { animation: heroBoardCard 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both; }
.hero-board-step:nth-child(4) { animation: heroBoardCard 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both; }

.hero-board-head {
  animation: heroFadeUp 0.6s ease 0.4s both;
}
.hero-app-info {
  animation: heroFadeUp 0.6s ease 1s both;
}

/* ── Scroll-reveal slide variants ─────────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-children > *,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .marketing-home .hero-copy,
  .marketing-home .hero-right,
  .marketing-home .hero-copy .eyebrow,
  .marketing-home .hero-copy h1,
  .marketing-home .hero-copy .lead,
  .marketing-home .hero-actions,
  .marketing-home .hero-stats-row,
  .marketing-home .trust-row,
  .hero-board-step,
  .hero-board-head,
  .hero-app-info {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ── Header ─────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(6, 11, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(1720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand span { color: var(--green-light); }

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-xs);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.nav-login {
  padding: 8px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-login:hover { color: var(--white); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.99); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow:
    0 8px 24px rgba(11, 110, 79, 0.35),
    0 2px 6px rgba(11, 110, 79, 0.2);
}
.btn-primary:hover {
  background: #0D7E5A;
  box-shadow:
    0 12px 32px rgba(11, 110, 79, 0.45),
    0 4px 8px rgba(11, 110, 79, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-header {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-xs);
}

.btn svg { width: 18px; height: 18px; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* ── Trust Pills ────────────────────────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
}

/* ── Feature Cards ──────────────────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--green-soft);
  border: 1px solid rgba(11, 110, 79, 0.2);
  color: var(--green-light);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card .desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Steps ──────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 32px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(11, 110, 79, 0.3);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-light);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-card p { color: var(--muted); font-size: 0.95rem; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  max-width: 14ch;
}

.hero-copy .lead { margin-top: 22px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ── Device Showcase ───────────────────────────────────────────── */
.device-showcase {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 500px;
}

/* Laptop mockup */
.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.laptop-screen {
  position: relative;
  border-radius: 12px 12px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  background: #1a1a1a;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 0 0 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 4px 4px;
}

/* Phone mockup */
.phone-frame {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 140px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #1a1a1a;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  display: block;
}

/* ── App Screenshots Section ───────────────────────────────────── */
.app-showcase {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 0;
}

.app-screen {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-screen:hover {
  transform: translateY(-8px);
}

.app-screen img {
  width: 100%;
  display: block;
}

.app-screen:nth-child(2) {
  margin-top: -20px;
}

/* ── Pricing Preview ────────────────────────────────────────────── */
.pricing-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
}

.pricing-preview .price-tag {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--white);
}
.pricing-preview .price-tag small {
  font-weight: 400;
  font-size: 1rem;
  color: var(--muted);
}

.pricing-preview .price-details {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Panel ──────────────────────────────────────────────────── */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background:
    radial-gradient(circle at left top, var(--green-soft), transparent 35%),
    var(--surface);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 16ch;
}

.cta-panel .lead { margin-top: 12px; }

.badge-stack {
  display: grid;
  gap: 12px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.badge-link:hover { transform: translateY(-2px); }
.badge-link img { max-height: 40px; width: auto; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 80px;
}

.footer-inner {
  width: min(1720px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--green-light); }
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-tagline {
  color: var(--dim);
  font-size: 0.85rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  width: min(1720px, calc(100% - 48px));
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dim);
  font-size: 0.78rem;
}

/* ── Forms (Checkout) ───────────────────────────────────────────── */
.form-field { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.form-input::placeholder { color: #3A4A40; }

/* ── Pricing Page ───────────────────────────────────────────────── */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
}

.price-hero {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 6px;
}

.price-hero small {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { color: var(--muted); }
.price-row .value { font-weight: 600; }

.price-row.total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--line-strong);
  border-bottom: none;
}
.price-row.total .value {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-light);
}
.price-row.total .value small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.seat-selector {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.seat-btn {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.seat-btn:hover { background: rgba(255, 255, 255, 0.06); }
.seat-btn:disabled { color: #2A3A30; cursor: not-allowed; }

.seat-count {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 48px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.seat-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.live-price {
  background: var(--green-soft);
  border: 1px solid rgba(11, 110, 79, 0.25);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.live-price .lp-label { font-size: 0.85rem; color: var(--muted); }
.live-price .lp-amount {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-light);
}
.live-price .lp-amount small {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Feature List ───────────────────────────────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(11, 110, 79, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%2314B87A' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card {
  padding: 24px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Legal Text Pages ───────────────────────────────────────────── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin: 0 0 32px;
}

.legal-content h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 36px 0 12px;
  color: var(--white);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul { padding-left: 20px; }

.legal-content a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Spinner ────────────────────────────────────────────────────── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.error-msg {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.25);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-bottom: 16px;
  display: none;
}

/* ── Section Heading ────────────────────────────────────────────── */
.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero,
  .feature-strip,
  .steps-grid,
  .faq-grid,
  .cta-panel,
  .pricing-preview {
    grid-template-columns: 1fr;
  }

  .device-showcase { min-height: 400px; }
  .laptop-frame { max-width: 420px; }
  .phone-frame { width: 110px; right: -10px; bottom: 10px; }

  .app-showcase {
    gap: 16px;
  }
  .app-screen { width: 220px; }

  .cta-panel { justify-items: start; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .badge-link { min-width: 0; width: 100%; }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1200px);
  }

  .hero { padding: 32px 0 48px; gap: 40px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3rem); }

  .device-showcase { min-height: 300px; }
  .laptop-frame { max-width: 100%; }
  .phone-frame { width: 90px; right: -5px; bottom: 5px; }

  .app-showcase {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .app-screen { width: 160px; }
  .app-screen:nth-child(2) { margin-top: 0; }

  .section-spacing { padding: 64px 0; }
  .card { border-radius: 20px; }

  .nav-links { display: none; }
}

/* ── Hamburger / Mobile Nav ─────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
}
.nav-burger:hover { background: rgba(255,255,255,0.06); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.82);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
}

@media (max-width: 640px) {
  .nav-burger { display: flex; }
  .btn-header { display: none; }
  .nav-login { display: none; }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    max-height: 0;
    padding: 0 16px;
    border-top: 1px solid transparent;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease, border-color 0.2s;
    width: 100%;
  }
  .mobile-nav.is-open {
    max-height: 440px;
    padding: 12px 16px 18px;
    border-top-color: var(--line);
  }

  .mobile-nav-link {
    display: block;
    padding: 12px 14px;
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-xs);
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav-link:hover, .mobile-nav-link:active {
    background: rgba(255,255,255,0.06);
    color: #fff;
  }

  .mobile-nav-cta {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* ── Homepage Refresh ───────────────────────────────────────────── */
body.marketing-home {
  color: #18211d;
  background: linear-gradient(180deg, #f5f1ea 0%, #eef2ec 40%, #f7f4ee 100%);
}

/* ── Pricing Limits Strip (Preisseite) ──────────────────────────── */
.pricing-limits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-limit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.pricing-limit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-light);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-limit-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.pricing-limit-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .pricing-limits-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .pricing-limits-strip {
    grid-template-columns: 1fr;
  }
}

/* ── Hero Stats Row ─────────────────────────────────────────────── */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-stat span {
  color: #8fa196;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ── Trust Band ─────────────────────────────────────────────────── */
.trust-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.trust-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid rgba(11, 110, 79, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(18, 34, 25, 0.05);
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(11, 110, 79, 0.12);
  margin: 0 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-item strong {
  color: #16211b;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-item span {
  color: #607066;
  font-size: 0.85rem;
  line-height: 1.55;
}

.marketing-home .topbar {
  background: rgba(7, 11, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-home .brand,
.marketing-home .footer-brand {
  color: #ffffff;
}

.marketing-home .nav-link,
.marketing-home .nav-login {
  color: rgba(255, 255, 255, 0.74);
}

.marketing-home .nav-link:hover,
.marketing-home .nav-login:hover {
  color: #ffffff;
}

.marketing-home .hero-dark {
  display: block;
  padding: 52px 0 84px;
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 184, 122, 0.16), transparent 18%),
    radial-gradient(circle at 14% 14%, rgba(20, 184, 122, 0.12), transparent 22%),
    linear-gradient(180deg, #060908 0%, #0b110d 56%, #111b14 100%);
}

.marketing-home .hero-grid {
  display: grid;
  max-width: 1380px;
  grid-template-columns: minmax(420px, 560px) minmax(520px, 620px);
  justify-content: space-between;
  gap: 72px;
  align-items: center;
}

.marketing-home .hero-copy {
  display: grid;
  gap: 28px;
  align-self: center;
}

.hero-copy-main,
.hero-copy-meta {
  max-width: 560px;
}

.marketing-home .hero-copy h1 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.3vw, 3.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.marketing-home .hero-copy .lead {
  margin-top: 22px;
  max-width: 54ch;
  color: #b6c2ba;
}

.marketing-home .hero-copy .eyebrow {
  color: #46d599;
}

.marketing-home .hero-actions {
  margin-top: 30px;
}

.hero-copy-meta {
  display: grid;
  gap: 22px;
}

.hero-demo-note {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  color: #dfe7e2;
}

.hero-demo-note strong {
  font-size: 0.96rem;
}

.hero-demo-note span {
  color: #b6c2ba;
  line-height: 1.6;
}

.marketing-home .trust-row {
  margin-top: 24px;
}

.marketing-home .trust-row li {
  color: #cad5cf;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-right {
  display: grid;
  gap: 20px;
  align-self: center;
  justify-self: center;
}

.hero-board {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(10, 21, 14, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f2f6f1 100%);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.26);
}

.hero-app-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
  justify-self: center;
}

.hero-app-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.hero-app-text {
  display: grid;
  gap: 2px;
}

.hero-app-info strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-app-info span {
  color: #9aada2;
  font-size: 0.86rem;
  font-weight: 500;
}

.hero-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-board-label,
.hero-board-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-board-label {
  background: rgba(11, 110, 79, 0.08);
  color: #0b6e4f;
}

.hero-board-pill {
  color: #4f6358;
  border: 1px solid rgba(11, 110, 79, 0.16);
}

.hero-board-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 110, 79, 0.1);
  background: #fbfcfa;
}

.hero-board-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(11, 110, 79, 0.1);
  color: #0b6e4f;
  font-weight: 800;
  font-size: 1.1rem;
}

.hero-board-step h3 {
  margin: 0 0 6px;
  color: #16211b;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-board-step p {
  margin: 0;
  color: #5b6c62;
  font-size: 0.95rem;
  line-height: 1.6;
}

.marketing-home .home-main {
  position: relative;
  z-index: 1;
}

.marketing-home .home-section {
  padding: 96px 0;
}

.marketing-home .section-heading {
  margin-bottom: 34px;
}

.marketing-home .section-heading h2 {
  color: #16211b;
  max-width: 15ch;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.workflow-section {
  position: relative;
  overflow: hidden;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.workflow-copy .lead {
  color: #55645b;
}

.workflow-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.workflow-point {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 32px rgba(15, 33, 25, 0.05);
}

.workflow-point strong {
  color: #16211b;
  font-size: 1rem;
}

.workflow-point span {
  color: #607066;
}

.workflow-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.workflow-image {
  width: min(100%, 980px);
  height: auto;
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(16, 31, 24, 0.12);
}

.path-section {
  position: relative;
  padding-top: 58px;
  padding-bottom: 112px;
}

.flow-intro {
  max-width: 44ch;
  margin: 18px 0 0;
  color: #2f5b4b;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.7;
}

.flow-stage {
  margin-top: 28px;
}

.desktop-route,
.mobile-route {
  position: relative;
  border: 1px solid rgba(11, 110, 79, 0.12);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 184, 122, 0.08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(11, 110, 79, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 249, 244, 0.94) 100%);
  box-shadow: 0 26px 60px rgba(18, 34, 25, 0.08);
}

.desktop-route::before,
.mobile-route::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(11, 110, 79, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 110, 79, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  opacity: 0.55;
}

.desktop-route {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 2400px;
  padding: 56px;
}

.mobile-route {
  display: none;
}

.desktop-route-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #198861;
  pointer-events: none;
}

.route-connector {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#desktop-route-arrow);
  opacity: 0.18;
  transition:
    opacity 0.8s ease,
    filter 0.8s ease;
}

.route-group,
.route-finish {
  position: absolute;
  display: grid;
  gap: 16px;
  width: 364px;
  transition: opacity 0.85s ease;
}

.route-group-left-top {
  top: 56px;
  left: 56px;
}

.route-group-right-top {
  top: 500px;
  right: 56px;
}

.route-group-left-bottom {
  top: 1080px;
  left: 56px;
}

.route-group-right-bottom {
  top: 1640px;
  right: 56px;
}

.route-finish {
  bottom: 56px;
  left: 0;
  right: 0;
  width: 360px;
  margin: 0 auto;
}

.route-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
}

.route-divider::before {
  content: "";
  width: 50px;
  height: 2px;
  border-radius: 999px;
  background: rgba(11, 110, 79, 0.34);
}

/* Left groups: vertical connection lines between cards */
.route-group-left-top .route-divider,
.route-group-left-bottom .route-divider {
  height: 28px;
}

.route-group-left-top .route-divider::before,
.route-group-left-bottom .route-divider::before {
  width: 3px;
  height: 28px;
  background: rgba(25, 136, 97, 0.3);
}

/* Right-top group: more space + vertical line between Step 4 & 5 */
.route-group-right-top .route-divider {
  height: 52px;
}

.route-group-right-top .route-divider::before {
  width: 3px;
  height: 52px;
  background: rgba(25, 136, 97, 0.3);
}

.flow-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 251, 247, 0.99) 100%);
  box-shadow: 0 18px 38px rgba(18, 34, 25, 0.08);
  transition:
    opacity 0.85s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.85s ease,
    border-color 0.85s ease;
}

.flow-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.flow-step,
.flow-role {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-step {
  background: linear-gradient(180deg, #0b6e4f 0%, #15845f 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 110, 79, 0.18);
}

.flow-role {
  background: rgba(11, 110, 79, 0.08);
  color: #0b6e4f;
}

.flow-card h3 {
  margin: 0 0 10px;
  color: #16211b;
  font-size: 1.35rem;
  line-height: 1.1;
}

.flow-card p {
  margin: 0;
  color: #607066;
  line-height: 1.68;
}

.flow-card-final {
  min-height: 192px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(20, 184, 122, 0.14), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
}

.flow-card-final .flow-card-top {
  justify-content: center;
}

[data-route-root] .route-phase {
  opacity: 0.62;
}

[data-route-root] .route-phase .flow-card {
  opacity: 0.72;
  transform: translateY(12px);
}

[data-route-root] .mobile-step.route-phase {
  opacity: 0.55;
  transform: translateY(8px);
}

[data-route-root] .route-phase.is-active {
  opacity: 1;
}

[data-route-root] .route-phase.is-active .flow-card {
  opacity: 1;
  transform: translateY(0);
}

[data-route-root] .mobile-step.route-phase.is-active {
  opacity: 1;
  transform: translateY(0);
}

[data-route-root] .route-phase.is-current .flow-card {
  border-color: rgba(11, 110, 79, 0.26);
  box-shadow:
    0 24px 52px rgba(18, 34, 25, 0.1),
    0 0 0 4px rgba(11, 110, 79, 0.08);
}

[data-route-root] .mobile-step.route-phase.is-current {
  border-color: rgba(11, 110, 79, 0.3);
  box-shadow:
    0 12px 32px rgba(18, 34, 25, 0.1),
    0 0 0 3px rgba(11, 110, 79, 0.1);
}

[data-route-root] .route-connector.is-active {
  opacity: 0.92;
  filter: drop-shadow(0 12px 22px rgba(25, 136, 97, 0.16));
}

[data-route-root] .route-connector.is-current {
  opacity: 1;
  filter: drop-shadow(0 14px 28px rgba(25, 136, 97, 0.24));
}

.mobile-route {
  padding: 24px 20px;
}

/* Vertikale Timeline-Linie */
.mobile-route::after {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 44px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(11,110,79,0.25) 0%, rgba(11,110,79,0.1) 100%);
}

.mobile-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  min-height: auto;
  margin-left: 0;
  padding: 16px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,251,247,0.99) 100%);
  box-shadow: 0 8px 24px rgba(18,34,25,0.06);
  transition:
    opacity 0.85s ease,
    transform 1.1s cubic-bezier(0.16,1,0.3,1),
    border-color 0.85s ease,
    box-shadow 0.85s ease;
}

/* Entferne den alten ::before dot */
.mobile-step::before {
  display: none;
}

/* Schritt-Nummer als Grid-Element */
.mobile-step .mobile-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(11,110,79,0.1);
  color: #0b6e4f;
  font-weight: 800;
  font-size: 1rem;
  align-self: center;
}

.mobile-step-content {
  display: flex;
  flex-direction: column;
}

.mobile-connector {
  position: relative;
  height: 20px;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Entferne alte ::before/::after connector styles */
.mobile-connector::before,
.mobile-connector::after {
  display: none;
}

/* Neuer sauberer Connector-Pfeil */
.mobile-connector .mobile-connector-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(11,110,79,0.08);
  color: #198861;
  transition: background 0.8s ease, color 0.8s ease;
}

.mobile-connector .mobile-connector-arrow svg {
  width: 12px;
  height: 12px;
}

.mobile-route .route-connector {
  opacity: 1;
  filter: none;
}

.mobile-route .route-connector.is-active .mobile-connector-arrow {
  background: rgba(11,110,79,0.15);
  color: #0b6e4f;
}

/* Mobile step: flow-card-top ausblenden, da wir eigenes Layout haben */
.mobile-step .flow-card-top {
  display: none;
}

/* Mobile step: Rolle als kleines Label über dem Titel */
.mobile-step-role {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  margin-bottom: 4px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(11,110,79,0.08);
  color: #0b6e4f;
  width: fit-content;
}

.mobile-step h3 {
  margin: 0 0 4px;
  color: #16211b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.mobile-step p {
  margin: 0;
  color: #607066;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Final step highlight */
.mobile-step.flow-card-final {
  background:
    radial-gradient(circle at top center, rgba(20,184,122,0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
  text-align: left;
}

.mobile-step.flow-card-final .flow-step-num {
  background: linear-gradient(180deg, #0b6e4f 0%, #15845f 100%);
  color: #fff;
}

.pricing-section {
  padding-top: 0;
}

.marketing-home .pricing-preview {
  border-color: rgba(11, 110, 79, 0.12);
  background: #ffffff;
  box-shadow: 0 24px 46px rgba(18, 34, 25, 0.07);
}

.marketing-home .pricing-preview .price-tag {
  color: #16211b;
}

.marketing-home .pricing-preview .price-tag small,
.marketing-home .pricing-preview .price-details,
.marketing-home .feature-list li {
  color: #607066;
}

.marketing-home .feature-list li::before {
  background-color: rgba(11, 110, 79, 0.08);
  border-color: rgba(11, 110, 79, 0.2);
}

.pricing-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn-secondary-dark {
  color: #16211b;
  border-color: rgba(11, 110, 79, 0.22);
}

.btn-secondary-dark:hover {
  background: rgba(11, 110, 79, 0.06);
  border-color: rgba(11, 110, 79, 0.35);
}

.cta-home {
  padding-top: 32px;
}

.marketing-home .cta-panel {
  border-color: rgba(11, 110, 79, 0.08);
  background:
    radial-gradient(circle at left top, rgba(11, 110, 79, 0.18), transparent 30%),
    linear-gradient(180deg, #09110d 0%, #101913 100%);
}

.marketing-home .cta-panel h2 {
  color: #ffffff;
}

.marketing-home .cta-panel .lead {
  color: #b6c2ba;
}

.marketing-home .site-footer {
  margin-top: 0;
  padding-top: 56px;
  border-top: none;
  background: #08100d;
}

.marketing-home .footer-tagline,
.marketing-home .footer-link,
.marketing-home .footer-bottom {
  color: #8fa196;
}

.marketing-home .footer-link:hover {
  color: #ffffff;
}

.marketing-home .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1500px) {
  .marketing-home .hero-grid {
    grid-template-columns: minmax(390px, 520px) minmax(480px, 580px);
    gap: 52px;
  }

  .marketing-home .hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
  }

  .hero-board {
    width: min(100%, 580px);
  }

  .workflow-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
    gap: 40px;
  }
}

@media (max-width: 1220px) {
  .marketing-home .hero-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    gap: 34px;
  }

  .marketing-home .hero-copy,
  .hero-copy-main,
  .hero-copy-meta,
  .hero-right,
  .hero-board {
    max-width: 100%;
  }

  .hero-right {
    justify-self: start;
  }

  .hero-app-info {
    justify-self: start;
  }
}

@media (max-width: 1100px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    gap: 34px;
  }

  .workflow-visual {
    justify-content: center;
  }

  .desktop-route {
    display: none;
  }

  .mobile-route {
    display: grid;
    gap: 0;
  }

  .flow-stage {
    margin-top: 22px;
  }
}

@media (max-width: 980px) {
  .marketing-home .home-section {
    padding: 76px 0;
  }

  .hero-board {
    max-width: 720px;
  }

  .path-section {
    padding-top: 40px;
    padding-bottom: 92px;
  }

  .flow-card {
    padding: 22px 20px 20px;
  }

  /* Trust band auf Tablet: 2 Spalten */
  .trust-band {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 28px 28px;
  }

  .trust-divider:nth-child(2),
  .trust-divider:nth-child(6) {
    display: none;
  }

  .trust-divider:nth-child(4) {
    display: none;
  }

  .trust-item {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(11, 110, 79, 0.08);
    border-right: 1px solid rgba(11, 110, 79, 0.08);
  }

  .trust-item:nth-child(4),
  .trust-item:nth-child(7) {
    border-right: none;
  }

  .trust-item:nth-child(5),
  .trust-item:nth-child(7) {
    border-bottom: none;
  }

  /* Hero stats auf Tablet: immer noch 3 Spalten aber kompakter */
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .marketing-home .hero-dark {
    padding: 28px 0 48px;
  }

  .marketing-home .hero-grid {
    gap: 24px;
  }

  .marketing-home .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .marketing-home .hero-copy .lead {
    font-size: 0.97rem;
  }

  .hero-board,
  .flow-card {
    border-radius: 22px;
  }

  /* Hero board kompakter auf Mobile */
  .hero-board {
    padding: 18px;
    gap: 12px;
  }

  .hero-board-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-board-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .hero-board-step h3 {
    font-size: 0.97rem;
    margin-bottom: 4px;
  }

  .hero-board-step p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero-board-label,
  .hero-board-pill {
    font-size: 0.72rem;
    min-height: 28px;
    padding: 0 10px;
  }

  .hero-demo-note {
    padding: 14px 16px;
  }

  .hero-demo-note strong {
    font-size: 0.9rem;
  }

  .hero-demo-note span {
    font-size: 0.85rem;
  }

  .hero-app-info {
    padding: 12px 16px;
  }

  .hero-app-logo {
    width: 36px;
    height: 36px;
  }

  /* Trust pills schmaler auf Mobile */
  .marketing-home .trust-row {
    margin-top: 16px;
    gap: 8px;
  }

  .trust-row li {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  /* Workflow section */
  .workflow-image {
    border-radius: 20px;
  }

  .workflow-point {
    padding: 14px 16px;
  }

  .workflow-point strong {
    font-size: 0.95rem;
  }

  .workflow-point span {
    font-size: 0.9rem;
  }

  /* Section headings mobile */
  .marketing-home .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .marketing-home .home-section {
    padding: 60px 0;
  }

  .path-section {
    padding-top: 32px;
    padding-bottom: 60px;
  }

  /* Flow cards auf Mobile */
  .flow-card {
    padding: 16px;
  }

  .flow-card h3 {
    font-size: 1.1rem;
  }

  .flow-card p {
    font-size: 0.9rem;
  }

  .flow-step,
  .flow-role {
    font-size: 0.7rem;
    min-height: 28px;
    padding: 0 10px;
  }

  .mobile-step {
    margin-left: 24px;
  }

  .mobile-step::before {
    left: -36px;
    width: 14px;
    height: 14px;
  }

  .mobile-route::after {
    left: 28px;
  }

  .mobile-connector {
    margin-left: 24px;
  }

  .mobile-connector::before {
    left: -11px;
  }

  .mobile-connector::after {
    left: -18px;
  }

  /* Pricing card mobile */
  .pricing-preview {
    padding: 28px 24px;
    gap: 24px;
  }

  .pricing-preview .price-tag {
    font-size: 2.6rem;
  }

  .pricing-actions {
    flex-direction: column;
  }

  .pricing-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA panel mobile */
  .marketing-home .cta-panel {
    padding: 28px 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .badge-stack {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .badge-link {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    padding: 10px 10px;
  }

  .badge-link img {
    max-height: 32px;
  }

  /* Flow intro text */
  .flow-intro {
    font-size: 0.95rem;
  }

  /* Weniger Abstand zwischen Sections */
  .pricing-section {
    padding-bottom: 0;
  }

  .cta-home {
    padding-top: 0;
    padding-bottom: 0;
  }

  .marketing-home .home-section.cta-home {
    padding: 24px 0 0;
  }

  /* Footer kompakter */
  .footer-links {
    flex-direction: column;
    gap: 0;
  }

  .footer-link {
    padding: 8px 0;
  }

  /* Hero stats row auf Mobile: 1 Spalte */
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-stat {
    padding: 12px 14px;
    border-radius: 14px;
  }

  /* Trust band auf Mobile: Stack */
  .trust-band {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 0;
    border-radius: 22px;
  }

  .trust-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 110, 79, 0.08);
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-item:first-child {
    padding-top: 0;
  }

  .trust-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Pricing Page (light theme)
   ═══════════════════════════════════════════════════════════════════ */

.pricing-page {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #060B0E;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.pricing-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--green-glow), transparent 50%),
    linear-gradient(180deg, #060908 0%, #0b110d 80%, #111b14 100%);
}

.pricing-hero h1 {
  margin: 0 auto;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: #fff;
}

.pricing-hero .eyebrow {
  color: #46d599;
}

.pricing-hero .lead {
  color: #b6c2ba;
}

/* Main content area */
.pricing-main {
  background:
    radial-gradient(ellipse at 60% 0%, rgba(11, 110, 79, 0.04), transparent 50%),
    linear-gradient(180deg, #f0efe8 0%, #eeeddf 40%, #f0efe8 100%);
}

.pricing-page-section {
  padding: 56px 0;
}

.pricing-page-h2 {
  color: #16211b;
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Limits strip (light) */
.pricing-limits-strip.pricing-limits-light {
  background: none;
  gap: 12px;
}

.pricing-limits-strip.pricing-limits-light .pricing-limit-item {
  background: #fff;
  border: 1px solid rgba(11, 110, 79, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-limits-strip.pricing-limits-light .pricing-limit-icon {
  background: rgba(11, 110, 79, 0.08);
  color: #0B6E4F;
}

.pricing-limits-strip.pricing-limits-light .pricing-limit-item strong {
  color: #16211b;
}

.pricing-limits-strip.pricing-limits-light .pricing-limit-item span {
  color: #55645b;
}

/* Pricing card (light) */
.pricing-card-light {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(11, 110, 79, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.price-hero-light {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 6px;
  color: #16211b;
}

.price-hero-light small {
  font-weight: 400;
  font-size: 1.1rem;
  color: #6b7c72;
}

.price-row-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 110, 79, 0.08);
  font-size: 0.95rem;
}

.price-row-light:last-of-type { border-bottom: none; }
.price-row-light .label { color: #55645b; }
.price-row-light .value { font-weight: 600; color: #16211b; }

/* Form elements (light) */
.form-label-light {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #16211b;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input-light {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 110, 79, 0.15);
  border-radius: var(--radius-xs);
  background: #f8f9f6;
  color: #16211b;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-light:focus {
  outline: none;
  border-color: #0B6E4F;
  box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.12);
}

.form-input-light::placeholder { color: #a0b0a6; }

/* Seat selector (light) */
.seat-selector-light {
  display: flex;
  align-items: center;
  background: #f8f9f6;
  border: 1px solid rgba(11, 110, 79, 0.15);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.seat-btn-light {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: #16211b;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.seat-btn-light:hover { background: rgba(11, 110, 79, 0.06); }
.seat-btn-light:disabled { color: #c5cfc9; cursor: not-allowed; }

.seat-count-light {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 48px;
  color: #16211b;
  border-left: 1px solid rgba(11, 110, 79, 0.1);
  border-right: 1px solid rgba(11, 110, 79, 0.1);
}

.seat-hint-light {
  font-size: 0.78rem;
  color: #6b7c72;
  margin-top: 6px;
}

/* Live price (light) */
.live-price-light {
  background: rgba(11, 110, 79, 0.06);
  border: 1px solid rgba(11, 110, 79, 0.15);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.live-price-light .lp-label { font-size: 0.85rem; color: #55645b; }
.lp-amount-light {
  font-weight: 800;
  font-size: 1.6rem;
  color: #0B6E4F;
}
.lp-amount-light small {
  font-weight: 400;
  font-size: 0.78rem;
  color: #6b7c72;
}

/* Feature list (light) */
.feature-list-light {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list-light li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #3a4a40;
}

.feature-list-light li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(11, 110, 79, 0.1);
  border: 1px solid rgba(11, 110, 79, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%230B6E4F' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.feature-list-light li strong {
  color: #0B6E4F;
}

/* FAQ (light) */
.faq-grid-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card-light {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(11, 110, 79, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-card-light h3 {
  margin: 0 0 8px;
  color: #16211b;
  font-size: 1rem;
  font-weight: 600;
}

.faq-card-light p {
  margin: 0;
  color: #55645b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Limits grid (icon cards) */
.limits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.limit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 20px 24px;
  background: #fff;
  border: 1px solid rgba(11, 110, 79, 0.1);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.limit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.limit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(11, 110, 79, 0.08);
  margin-bottom: 4px;
}

.limit-icon svg {
  width: 26px;
  height: 26px;
}

.limit-value {
  font-weight: 800;
  font-size: 1.15rem;
  color: #0B6E4F;
  line-height: 1.2;
}

.limit-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #16211b;
  line-height: 1.3;
}

.limit-card span {
  font-size: 0.82rem;
  color: #6b7c72;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .limits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .limits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .limit-card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }
}

/* Error msg on light bg */
.pricing-page .error-msg {
  color: #c53030;
  background: rgba(197, 48, 48, 0.08);
  border-color: rgba(197, 48, 48, 0.2);
}

/* Pricing page responsive */
@media (max-width: 640px) {
  .pricing-hero {
    padding: 48px 0 40px;
  }

  .pricing-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .pricing-card-light {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .price-hero-light {
    font-size: 2.8rem;
  }

  .faq-grid-light {
    grid-template-columns: 1fr;
  }

  .pricing-limits-light {
    flex-direction: column;
  }

  .pricing-limits-light .pricing-limit-item {
    border-right: none;
    border-bottom: 1px solid rgba(11, 110, 79, 0.08);
    padding: 14px 16px;
  }

  .pricing-limits-light .pricing-limit-item:last-child {
    border-bottom: none;
  }

  .pricing-page-section {
    padding: 36px 0;
  }
}
