/* =========================================================
   Olivia — Professional Alpine Redesign
   Premium hospitality aesthetic · Inter + Playfair Display
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ---------------------------------------------------------
   0) Design tokens
   --------------------------------------------------------- */
:root {
  /* Palette — original Olivia sky-blue */
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --hair: #e5e7eb;
  --panel: #f1f5f9;
  --card: #ffffff;
  --link: #0ea5e9;

  --brand: #63c9df;
  --brand-hover: #4fb8d0;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;

  /* Pills / eyebrows */
  --pill-bg: #e0f2fe;
  --pill-text: #075985;
  --pill-border: #63c9df;

  /* Functional */
  --ok: #16a34a;
  --warn: #f59e0b;
  --danger: #ef4444;

  /* Gradients */
  --grad-top: #faf9f7;

  /* Layout */
  --wrap: 1120px;
  --r: 16px;
  --r-lg: 20px;
  --shadow: 0 1px 3px rgba(28,25,23,.04), 0 8px 24px rgba(28,25,23,.06);
  --shadow-lg: 0 4px 12px rgba(28,25,23,.06), 0 20px 48px rgba(28,25,23,.10);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fs-hero: clamp(36px, 5.5vw, 56px);
  --fs-xxl: clamp(28px, 4vw, 40px);
  --fs-xl: clamp(22px, 3vw, 30px);
  --fs-lg: clamp(17px, 2vw, 20px);
  --fs-md: 16px;
  --fs-sm: 13px;
  --fs-xs: 11px;
  --lh: 1.6;

  /* Components */
  --nav-h: 72px;
  --focus: #7dd3fc;
  --btn-radius: 12px;

  /* Marquee */
  --marquee-speed: 30s;
  --logo-h: 56px;
  --logo-gap: 48px;
}

/* ---------------------------------------------------------
   1) Reset & base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/pic/bkg.jpg") center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

body {
  font: 400 var(--fs-md)/var(--lh) var(--font-body);
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------
   2) Navigation
   --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .3s ease;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: var(--nav-h);
}

.nav .logo img {
  height: 48px;
  width: auto;
}

.nav .menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.nav a.menu-link {
  color: var(--muted);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .2s ease;
}

.nav a.menu-link:hover {
  color: var(--text);
}

.nav.is-stuck {
  box-shadow: 0 4px 20px rgba(28,25,23,.08);
}

/* Right-side actions container (WhatsApp icon + mobile burger) */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* WhatsApp icon button in nav header */
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(37, 211, 102, .25);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.nav-wa:hover {
  background: #1ebd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, .4);
}
.nav-wa:active { transform: translateY(0); }
.nav-wa:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.nav-wa .wa-icon { color: #fff; }

/* Logo light/dark switching */
.logo .logo-dark { display: none; }

/* ---------------------------------------------------------
   3) Hero
   --------------------------------------------------------- */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.08;
  margin: 0 0 var(--space-md);
  letter-spacing: -.02em;
}

.hero h2 {
  font-size: var(--fs-xxl);
  line-height: 1.12;
  margin: 0 0 var(--space-md);
  letter-spacing: -.015em;
}

.hero .lead {
  color: var(--muted);
  font-size: var(--fs-lg);
  line-height: 1.5;
  margin: 0 0 var(--space-md);
}

.hero .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.hero .feature-list li {
  font-size: var(--fs-md);
  color: var(--text);
  line-height: 1.5;
  padding-left: 1.6em;
  position: relative;
}
.hero .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding: var(--space-2xl) 0 var(--space-xl); }
}

/* Hero card base — supports decorative SVG accents inside */
.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Delicate Alpine mountain-line watermark in the hero right card */
.alpine-line-svg {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
  color: var(--brand);
  opacity: .35;
}

@media (max-width: 600px) {
  .alpine-line-svg { opacity: .22; bottom: 10px; }
}

@media (prefers-color-scheme: dark) {
  .alpine-line-svg { opacity: .28; }
}

/* Live "available now" pulsing dot in eyebrow
   NOTE: use chained selector to win specificity vs .eyebrow (which is
   defined later in the cascade and sets display:inline-block).        */
.eyebrow.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
}
.live-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--ok);
  opacity: .5;
  animation: livePulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes livePulse {
  0%   { transform: scale(.6); opacity: .55; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::before { animation: none; opacity: 0; }
}

/* ---------------------------------------------------------
   4) Buttons
   --------------------------------------------------------- */
.btn-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
  padding: var(--space-xs) 0;
}

.btn-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-md);
  cursor: pointer;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: #fff;
  transition: background .15s ease, border-color .15s ease, transform .1s ease, box-shadow .15s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Sheen sweep effect on hover (skipped under prefers-reduced-motion) */
.btn::after,
.wa-button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,.22) 50%,
    transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn:hover::after,
.wa-button:hover::after { transform: translateX(120%); }

.btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  box-shadow: 0 4px 16px rgba(99,201,223,.3);
}

.btn:active {
  transform: scale(.98);
}

@media (prefers-reduced-motion: reduce) {
  .btn::after, .wa-button::after { display: none; }
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hair);
}

.btn.ghost:hover {
  background: var(--panel);
  border-color: var(--muted);
}

.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ---------------------------------------------------------
   5) Cards
   --------------------------------------------------------- */
.card {
  background: color-mix(in srgb, var(--card) 78%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow);
}

/* ---------------------------------------------------------
   6) Eyebrow / badges / helpers
   --------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .02em;
  border: 1px solid var(--pill-border);
  margin-bottom: var(--space-sm);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  border: 1px solid var(--hair);
  background: var(--card);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.hint, p.hint {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.hint a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.hint strong { color: var(--text); }

.divider { height: 1px; background: var(--hair); margin: var(--space-lg) 0; }
.divider.accent { background: var(--pill-border); }

/* ---------------------------------------------------------
   7) Sections & grids
   --------------------------------------------------------- */
section {
  padding: var(--space-2xl) 0;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  font-size: var(--fs-xxl);
  margin: 0 0 var(--space-sm);
}

.section-header p {
  color: var(--muted);
  font-size: var(--fs-lg);
  margin: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  section { padding: var(--space-xl) 0; }
}

/* ---------------------------------------------------------
   8) Trust bar
   --------------------------------------------------------- */
.trust-bar {
  padding: var(--space-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--hair);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trust-bar p {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 var(--space-md);
}

/* Legacy static grid (kept for backwards compatibility) */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-logos img {
  height: 40px;
  width: auto;
  opacity: .5;
  filter: grayscale(100%);
  transition: opacity .3s ease, filter .3s ease;
}
.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Trust marquee — primary client showcase */
.trust-marquee {
  margin-top: var(--space-sm);
}

.trust-marquee .marquee-track {
  gap: 56px;
  padding: var(--space-md) var(--space-lg);
}

.trust-marquee .logo {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(100%) contrast(.95);
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
  flex-shrink: 0;
}

.trust-marquee .logo:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

/* ---------------------------------------------------------
   8a) Section dividers (SVG, theme-aware via currentColor)
   --------------------------------------------------------- */
.section-divider {
  width: 100%;
  line-height: 0;
  color: var(--text);
  pointer-events: none;
  overflow: hidden;
}
.section-divider svg {
  width: 100%;
  display: block;
}
.section-divider-angle svg { height: 56px; }
.section-divider-wave svg  { height: 70px; }

@media (max-width: 600px) {
  .section-divider-angle svg { height: 36px; }
  .section-divider-wave svg  { height: 44px; }
}

/* ---------------------------------------------------------
   8b) Stats bar — animated counter row
   --------------------------------------------------------- */
.stats-bar {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--hair);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 22ch;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .stat-label { font-size: var(--fs-xs); }
}

/* ---------------------------------------------------------
   9) Features grid
   --------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-lg);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--brand) 60%, transparent),
    color-mix(in srgb, var(--accent) 60%, transparent));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
  filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--hair));
}
.feature-card:hover::before { opacity: .35; }

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--brand);
}

.feature-card .feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 700;
  margin: 0 0 var(--space-xs);
}

.feature-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* Highlighted feature card (Email Copilot) */
.feature-card-highlight {
  position: relative;
  border: 1px solid var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, var(--card) 92%);
}
.feature-card-highlight .feature-icon { color: var(--accent); }
.feature-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------------------------
   9b) Email Copilot spotlight
   --------------------------------------------------------- */
.copilot-spotlight {
  padding: var(--space-2xl) 0;
  position: relative;
  isolation: isolate;
}
.copilot-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%,
      color-mix(in srgb, var(--accent) 18%, transparent) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 100%,
      color-mix(in srgb, var(--brand) 15%, transparent) 0%,
      transparent 65%);
}
.copilot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}
.copilot-text h2 {
  font-size: var(--fs-xxl);
  line-height: 1.15;
  margin: var(--space-sm) 0 var(--space-md);
  letter-spacing: -.015em;
}
.copilot-text .lead {
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}
.eyebrow-accent {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.copilot-stat {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--space-lg);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-left: 3px solid var(--brand);
  border-radius: var(--r);
  margin-bottom: var(--space-lg);
}
.copilot-stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.copilot-stat-label {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-top: 4px;
}

.copilot-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.copilot-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.copilot-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.copilot-step-content { flex: 1; min-width: 0; }
.copilot-step-content h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.copilot-step-example {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}
.copilot-arrow {
  display: flex;
  justify-content: center;
  color: var(--brand);
  opacity: .6;
}
.copilot-arrow svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .copilot-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
}
@media (max-width: 600px) {
  .copilot-grid { padding: var(--space-lg); }
}

/* ---------------------------------------------------------
   10) Feature list (inside cards)
   --------------------------------------------------------- */
.feature-list {
  margin: var(--space-sm) 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.feature-list li {
  margin-bottom: var(--space-xs);
}

.feature-list li strong {
  color: var(--text);
}

/* ---------------------------------------------------------
   10a) Capacity / exclusivity note (pricing section)
   --------------------------------------------------------- */
.capacity-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  padding: var(--space-sm) var(--space-md);
  background: color-mix(in srgb, var(--brand) 8%, var(--card));
  border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--hair));
  border-radius: var(--r);
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.capacity-note svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}
.capacity-note strong { color: var(--text); }

/* ---------------------------------------------------------
   10b) Pricing card + section accent
   --------------------------------------------------------- */
.pricing-section {
  position: relative;
  isolation: isolate;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 50% 30%,
    color-mix(in srgb, var(--brand) 14%, transparent) 0%,
    transparent 65%);
}

.pricing-card {
  text-align: left;
}

/* Internal 2-col split: price/setup on left, checklist on right */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--space-xl);
    align-items: start;
  }
  /* Subtle vertical separator */
  .pricing-grid .pricing-features {
    padding-left: var(--space-xl);
    border-left: 1px solid var(--hair);
  }
}

.pricing-main { display: flex; flex-direction: column; }

.price-block {
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0 var(--space-md);
  border-bottom: 1px solid var(--hair);
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 64px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.02em;
  display: inline-block;
}
.price-period {
  font-size: var(--fs-lg);
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.setup-note {
  margin-top: 0;
  padding: var(--space-sm) var(--space-md);
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  border-radius: var(--r);
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.55;
  text-align: left;
}
.setup-note strong { color: var(--text); }
.pricing-main .hint { margin-top: var(--space-sm); }

.pricing-features-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-sm);
}

/* SVG-checklist (also reusable elsewhere) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-md);
  color: var(--text);
  line-height: 1.45;
}
.checklist-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--ok);
}

/* ---------------------------------------------------------
   11) Clients / logo grid
   --------------------------------------------------------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-md);
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border-radius: var(--r);
  border: 1px solid var(--hair);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-height: 100px;
  transition: box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.client-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.client-item img {
  max-height: var(--logo-h);
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.client-item .client-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-sm);
  background: rgba(255,255,255,.95);
  font-size: var(--fs-xs);
  line-height: 1.3;
  color: var(--muted);
  opacity: 0;
  transition: opacity .25s ease;
}

.client-item:hover .client-caption {
  opacity: 1;
}

/* Legacy marquee support (kept for fallback) */
.logo-marquee {
  position: relative;
  border-radius: var(--r);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding: var(--space-md) var(--space-lg);
  width: max-content;
  animation: marquee var(--marquee-speed) linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-marquee:hover .marquee-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .logo-marquee { mask-image: none; -webkit-mask-image: none; }
}

/* ---------------------------------------------------------
   12) Forms
   --------------------------------------------------------- */
.form {
  display: grid;
  gap: var(--space-md);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
}

.input,
input.input,
textarea.input,
select.input,
fieldset.input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--hair);
  border-radius: var(--btn-radius);
  background: var(--bg);
  font: inherit;
  font-size: var(--fs-md);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  margin: 4px 0;
}

.input::placeholder { color: var(--muted); }

.input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99,201,223,.18);
}

.input.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

.error-msg {
  margin-top: 6px;
  font-size: var(--fs-sm);
  line-height: 1.3;
  color: #b91c1c;
}

.group-error-inline {
  display: block;
  text-align: center;
  margin-top: 10px;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #fecaca;
  border-radius: var(--btn-radius);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
  margin-bottom: 2px;
}

.radio-row, .checkbox-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.form_fields {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .form_fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

.checkboxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xs);
}

@media (max-width: 768px) {
  .checkboxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Toast / inline messages for form submit */
.form-toast {
  padding: var(--space-md);
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: var(--fs-md);
  text-align: center;
  display: none;
}

.form-toast.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-toast.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ---------------------------------------------------------
   13) Legal page tabs
   --------------------------------------------------------- */
.tabs {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--hair);
  margin-bottom: var(--space-lg);
}

.tab-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--btn-radius) var(--btn-radius) 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: color .2s ease, border-color .2s ease;
}

.tab-link:hover { color: var(--text); }

.tab-link.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.panel {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.panel h3 { margin-top: 0; }
.panel h4 { margin: var(--space-lg) 0 var(--space-xs); }

/* ---------------------------------------------------------
   14) Status badge
   --------------------------------------------------------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-sm);
  border: 1px solid var(--hair);
  background: var(--card);
  color: var(--muted);
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.status-badge.ok {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

/* ---------------------------------------------------------
   15) Footer
   --------------------------------------------------------- */
.footer {
  background: color-mix(in srgb, var(--text) 82%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,.7);
  padding: var(--space-xl) 0;
}

.footer a {
  color: rgba(255,255,255,.7);
  transition: color .2s ease;
}

.footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: var(--space-sm) 0 0;
  max-width: 360px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-sm);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: var(--space-xs); }

.footer-links a {
  font-size: var(--fs-sm);
  text-decoration: none;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ---------------------------------------------------------
   16) Reveal on scroll (with staggered children)
   --------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] { transform: translateX(-20px); }
[data-reveal="right"] { transform: translateX(20px); }

/* Stagger immediate children with data-reveal within a grid context */
.features-grid > [data-reveal]:nth-child(1)  { transition-delay: .00s; }
.features-grid > [data-reveal]:nth-child(2)  { transition-delay: .06s; }
.features-grid > [data-reveal]:nth-child(3)  { transition-delay: .12s; }
.features-grid > [data-reveal]:nth-child(4)  { transition-delay: .18s; }
.features-grid > [data-reveal]:nth-child(5)  { transition-delay: .24s; }
.features-grid > [data-reveal]:nth-child(6)  { transition-delay: .30s; }
.features-grid > [data-reveal]:nth-child(7)  { transition-delay: .36s; }
.features-grid > [data-reveal]:nth-child(8)  { transition-delay: .42s; }
.features-grid > [data-reveal]:nth-child(9)  { transition-delay: .48s; }
.features-grid > [data-reveal]:nth-child(10) { transition-delay: .54s; }
.features-grid > [data-reveal]:nth-child(11) { transition-delay: .60s; }
.features-grid > [data-reveal]:nth-child(12) { transition-delay: .66s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    transition-delay: 0s !important;
  }
}

/* ---------------------------------------------------------
   17) Snow canvas overlay
   --------------------------------------------------------- */
.snow-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

/* ---------------------------------------------------------
   18) Light-mode background image
   --------------------------------------------------------- */
:root[data-theme="light"] .hero,
:root[data-theme="light"] .section-alpine {
  background-image: url("/pic/bkg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------------------------------------------------------
   19) Mobile nav toggle
   --------------------------------------------------------- */
.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid var(--hair);
  background: var(--card);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 14px;
  line-height: 0;
  cursor: pointer;
}

.nav-toggle .burger,
.nav-toggle .burger::before,
.nav-toggle .burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .2s ease;
  position: relative;
}

.nav-toggle .burger::before,
.nav-toggle .burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .burger::before { top: -7px; }
.nav-toggle .burger::after { top: 7px; }

.menu.only-desktop { display: flex; }
.ghost.only-mobile { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav .menu {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--hair);
    border-radius: var(--r);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top;
    transition: max-height .25s ease, opacity .2s ease;
    z-index: 60;
  }

  .nav.open .menu {
    max-height: 70vh;
    opacity: 1;
  }

  .nav .menu a {
    padding: 10px 6px;
    border-radius: var(--btn-radius);
  }

  .nav .menu .btn { justify-content: center; }

  .menu.only-desktop { display: none; }
  .ghost.only-mobile { display: inline-flex; }
}

/* Burger → X morph */
.nav.open .nav-toggle .burger { background: transparent; }
.nav.open .nav-toggle .burger::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle .burger::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   20) Dark mode (system preference)
   --------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  html { color-scheme: dark; }

  :root {
    --bg: #0b1220;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --hair: #334155;
    --panel: #0f172a;
    --card: #111827;
    --link: #93c5fd;
    --pill-bg: rgba(148,163,184,.16);
    --pill-text: #e5e7eb;
    --pill-border: rgba(148,163,184,.35);
    --grad-top: #111827;
    --shadow: 0 1px 3px rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.3);
    --shadow-lg: 0 4px 12px rgba(0,0,0,.3), 0 20px 48px rgba(0,0,0,.5);
  }

  .nav {
    background: rgba(2,6,23,.75) !important;
    border-bottom-color: var(--hair) !important;
  }

  .btn {
    box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 4px 12px rgba(0,0,0,.4);
  }

  .btn.ghost {
    color: var(--text);
    background: transparent;
    border-color: var(--hair);
  }

  .btn.ghost {
    color: var(--link) !important;
    background: transparent !important;
    border-color: #475569 !important;
  }

  .btn.ghost:hover {
    background: rgba(148,163,184,.10) !important;
    border-color: var(--muted);
  }

  .trust-logos img { filter: grayscale(100%) brightness(1.5); }
  .trust-logos img:hover { filter: grayscale(0%) brightness(1); }

  /* Marquee logos in dark mode — invert dark logos to white silhouette */
  .trust-marquee .logo {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: .65;
  }
  .trust-marquee .logo:hover {
    filter: none;
    opacity: 1;
  }

  .client-item .client-caption {
    background: rgba(17,24,39,.95);
    color: var(--muted);
  }

  .footer {
    background: #020617;
  }

  .logo .logo-light { display: none; }
  .logo .logo-dark { display: block; }

  .hero,
  .section-alpine {
    background-image: none !important;
  }

  .status-badge { background: var(--panel); border-color: var(--hair); }

  html::before {
    filter: brightness(.25) saturate(.6);
  }
}

/* ---------------------------------------------------------
   21) Manual dark/light override
   --------------------------------------------------------- */
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1220;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --hair: #334155;
  --panel: #0f172a;
  --card: #111827;
  --link: #93c5fd;
  --pill-bg: rgba(148,163,184,.16);
  --pill-text: #e5e7eb;
  --pill-border: rgba(148,163,184,.35);
  --grad-top: #111827;
}

:root[data-theme="dark"] .nav {
  background: rgba(2,6,23,.75);
  border-bottom-color: var(--hair);
}

:root[data-theme="dark"] .logo .logo-light { display: none; }
:root[data-theme="dark"] .logo .logo-dark { display: block; }

:root[data-theme="dark"] .hero,
:root[data-theme="dark"] .section-alpine {
  background-image: none !important;
}

html[data-theme="dark"]::before {
  filter: brightness(.25) saturate(.6);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --hair: #e5e7eb;
  --panel: #f1f5f9;
  --card: #ffffff;
  --link: #0ea5e9;
}

:root[data-theme="light"] .logo .logo-light { display: block; }
:root[data-theme="light"] .logo .logo-dark { display: none; }

/* ---------------------------------------------------------
   22) Utilities
   --------------------------------------------------------- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Grad helper */
.grad {
  background: linear-gradient(180deg, var(--grad-top), transparent 100%);
}

/* Inline icon helper */
.inline-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.inline-icon img,
.inline-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------------------------------------------------------
   23) Accessibility — skip link
   --------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  z-index: 9999;
  padding: 10px 16px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--btn-radius);
  font-weight: 700;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   24) DSGVO badge (Email Copilot)
   --------------------------------------------------------- */
.dsgvo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-sm) 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ok) 12%, transparent);
  color: var(--ok);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--ok) 35%, transparent);
}
.dsgvo-badge svg {
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   24b) Fit section — "Für wen Olivia ist – und für wen nicht"
   --------------------------------------------------------- */
.fit-section { padding: var(--space-2xl) 0; }

.fit-grid {
  align-items: stretch;
}

.fit-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.fit-card-yes {
  border: 1px solid color-mix(in srgb, var(--ok) 40%, var(--hair));
  background: color-mix(in srgb, var(--ok) 4%, var(--card));
}
.fit-card-yes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 0% 0%,
    color-mix(in srgb, var(--ok) 10%, transparent) 0%,
    transparent 60%);
}
.fit-card-yes > * { position: relative; z-index: 1; }

.fit-card-no {
  border: 1px dashed var(--hair);
  background: color-mix(in srgb, var(--card) 70%, transparent);
}

.fit-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-xs);
}

.fit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .02em;
}
.fit-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.fit-badge-yes {
  color: var(--ok);
  background: color-mix(in srgb, var(--ok) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent);
}
.fit-badge-no {
  color: var(--muted);
  background: color-mix(in srgb, var(--muted) 12%, transparent);
  border: 1px solid var(--hair);
}

.checklist-muted li {
  color: var(--muted);
}
.checklist-icon-muted { color: var(--muted); opacity: .75; }

.fit-footnote {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--hair);
  font-size: var(--fs-sm);
  color: var(--muted);
  font-style: italic;
}

/* ---------------------------------------------------------
   25) Comparison table
   --------------------------------------------------------- */
.comparison-section {
  padding: var(--space-2xl) 0;
  position: relative;
  isolation: isolate;
}
.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
  opacity: .6;
}
.comparison-wrap {
  background: color-mix(in srgb, var(--card) 82%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}
.comparison-table th,
.comparison-table td {
  padding: var(--space-md);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hair);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.comparison-table thead th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--muted);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--hair);
}
.comparison-table thead th.comp-olivia {
  color: var(--brand);
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  letter-spacing: -.01em;
  text-transform: none;
  position: relative;
}
.comparison-table thead th.comp-olivia::before {
  content: "Empfohlen";
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(99,201,223,.4);
}
.comparison-table tbody th {
  font-weight: 700;
  color: var(--text);
  width: 18%;
}

/* Olivia column "lift" — gradient, accent border, soft inner glow */
.comparison-table th.comp-olivia,
.comparison-table td.comp-olivia {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand) 16%, transparent) 0%,
    color-mix(in srgb, var(--brand) 6%, transparent) 100%);
  border-left: 2px solid color-mix(in srgb, var(--brand) 60%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--brand) 60%, transparent);
  position: relative;
}
.comparison-table tbody tr:first-child td.comp-olivia {
  box-shadow: inset 0 6px 0 0 color-mix(in srgb, var(--brand) 20%, transparent);
}
.comparison-table tbody tr:last-child td.comp-olivia {
  box-shadow: inset 0 -6px 0 0 color-mix(in srgb, var(--brand) 20%, transparent);
  border-radius: 0 0 var(--r) var(--r);
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* Status indicators — use SVG mask so single-color stays theme-aware */
.comp-yes, .comp-mid, .comp-no {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.comp-yes::before,
.comp-mid::before,
.comp-no::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.comp-yes { color: var(--ok); }
.comp-yes::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M7 12.5l3.2 3.2L17 8.8'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M7 12.5l3.2 3.2L17 8.8'/></svg>");
}
.comp-mid { color: var(--warn); }
.comp-mid::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' d='M7 12h10'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' d='M7 12h10'/></svg>");
}
.comp-no  { color: var(--danger); }
.comp-no::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' d='M8 8l8 8M16 8l-8 8'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black' opacity='0.18'/><path fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' d='M8 8l8 8M16 8l-8 8'/></svg>");
}

/* Restore text color (icon is colored via currentColor; text should stay readable) */
.comparison-table td .comp-yes,
.comparison-table td .comp-mid,
.comparison-table td .comp-no {
  color: var(--text);
}
.comparison-table td .comp-yes::before { background-color: var(--ok); }
.comparison-table td .comp-mid::before { background-color: var(--warn); }
.comparison-table td .comp-no::before  { background-color: var(--danger); }

@media (max-width: 768px) {
  .comparison-wrap {
    padding: var(--space-sm);
    overflow-x: visible;
  }

  /* Mobile: collapse to a stack of cards, one per criterion */
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td { display: block; }

  .comparison-table { min-width: 0; }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison-table tbody tr {
    background: color-mix(in srgb, var(--card) 88%, transparent);
    border: 1px solid var(--hair);
    border-radius: var(--r);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow);
  }

  .comparison-table tbody th {
    width: auto;
    padding: 0 0 var(--space-sm);
    border-bottom: 1px solid var(--hair);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-md);
    color: var(--brand);
    font-family: var(--font-display);
  }

  .comparison-table tbody td {
    padding: 6px 0;
    border-bottom: none;
    font-size: var(--fs-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .comparison-table tbody td::before {
    content: attr(data-col);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    color: var(--muted);
  }

  .comparison-table th.comp-olivia,
  .comparison-table td.comp-olivia {
    border: 1px solid color-mix(in srgb, var(--brand) 50%, transparent);
    border-radius: var(--r);
    padding: var(--space-sm);
    margin: var(--space-xs) 0;
  }
  .comparison-table td.comp-olivia::before {
    color: var(--brand);
  }
}

/* ---------------------------------------------------------
   26) FAQ section
   --------------------------------------------------------- */
.faq-section { padding: var(--space-2xl) 0; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: color-mix(in srgb, var(--card) 84%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--hair);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .25s ease, background .25s ease, transform .2s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--hair));
  border-left-color: color-mix(in srgb, var(--brand) 60%, var(--hair));
  transform: translateY(-1px);
}
.faq-item[open] {
  border-left-color: var(--brand);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: var(--shadow-lg);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}
.faq-q {
  font-size: var(--fs-md);
  flex: 1;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--panel);
  position: relative;
  transition: background .2s ease, transform .2s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-icon {
  background: var(--brand);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-a {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--muted);
  line-height: 1.6;
  font-size: var(--fs-md);
}
.faq-a p { margin: 0 0 var(--space-sm); }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
  margin: var(--space-sm) 0;
  padding-left: 20px;
}
.faq-a ul li { margin-bottom: 4px; }
.faq-a strong { color: var(--text); }
.faq-a a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------------------------------------------------------
   27) Mobile sticky CTA (split: form + WhatsApp)
   --------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom, 0px) + var(--space-sm));
  left: var(--space-sm);
  right: var(--space-sm);
  z-index: 90;
  display: none;
  gap: 8px;
  transform: translateY(150%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(2,8,23,.25), 0 2px 8px rgba(2,8,23,.15);
  transition: background .15s ease;
}
.sticky-cta-primary:hover { background: var(--brand-hover); }

.sticky-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #25D366;
  color: #fff;
  border-radius: var(--btn-radius);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35), 0 2px 8px rgba(2,8,23,.15);
  transition: background .15s ease;
}
.sticky-cta-wa:hover { background: #1ebd5a; }
.sticky-cta-primary:focus-visible,
.sticky-cta-wa:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
}

/* ---------------------------------------------------------
   28) WhatsApp button (footer + inline secondary CTAs)
   --------------------------------------------------------- */
.footer-support h4 { margin-bottom: var(--space-sm); }

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Match .btn exactly so the two sit side-by-side at equal height */
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, .22);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.wa-button:hover {
  background: #1ebd5a;
  border-color: #1ebd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .32);
}
.wa-button:active { transform: translateY(0); }
.wa-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}

/* Online-status pulsing dot at top-right of the WhatsApp icon */
.wa-button .wa-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px #25D366;
  animation: waOnlinePulse 2.2s ease-out infinite;
}
@keyframes waOnlinePulse {
  0%   { box-shadow: 0 0 0 2px #25D366, 0 0 0 0 rgba(74,222,128,.55); }
  70%  { box-shadow: 0 0 0 2px #25D366, 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 2px #25D366, 0 0 0 0 rgba(74,222,128,0); }
}
.wa-button.ghost .wa-icon::after {
  background: #25D366;
  box-shadow: 0 0 0 2px var(--card);
}
.wa-button.ghost .wa-icon::after {
  animation: waOnlinePulseGhost 2.2s ease-out infinite;
}
@keyframes waOnlinePulseGhost {
  0%   { box-shadow: 0 0 0 2px var(--card), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 2px var(--card), 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 2px var(--card), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-button.sm .wa-icon::after { width: 7px; height: 7px; top: -1px; right: -1px; }

@media (prefers-reduced-motion: reduce) {
  .wa-button .wa-icon::after { animation: none; }
}

/* Ghost variant: transparent, matches .btn.ghost dimensions exactly */
.wa-button.ghost {
  background: transparent;
  color: #128c4a;
  box-shadow: none;
  border: 2px solid color-mix(in srgb, #25D366 50%, transparent);
}
.wa-button.ghost:hover {
  background: color-mix(in srgb, #25D366 10%, transparent);
  color: #128c4a;
  border-color: #25D366;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 211, 102, .15);
}
@media (prefers-color-scheme: dark) {
  .wa-button.ghost { color: #4ade80; border-color: color-mix(in srgb, #25D366 60%, transparent); }
  .wa-button.ghost:hover { color: #6ee7b7; border-color: #25D366; }
}

/* Compact modifier: used in footer + small secondary contexts (copilot quick-ask) */
.wa-button.sm {
  padding: 9px 16px;
  gap: 8px;
  font-size: var(--fs-sm);
  border-width: 1px;
}
.wa-button.sm .wa-icon { width: 18px; height: 18px; }

.wa-meta {
  margin-top: var(--space-sm);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--muted);
}
.wa-meta p { margin: 0; }
.wa-meta-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px !important;
}

/* Footer context — footer is always dark, override muted/text colors to readable whites */
.footer .wa-meta {
  color: rgba(255,255,255,.78);
}
.footer .wa-meta-title {
  color: #fff;
}

/* FAQ — "more questions" footer block */
.faq-more {
  max-width: 880px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px dashed color-mix(in srgb, #25D366 50%, var(--hair));
  border-radius: var(--r);
  text-align: center;
}
.faq-more p {
  margin: 0 0 var(--space-sm);
  color: var(--text);
  font-weight: 600;
}
.faq-more p.hint {
  margin: var(--space-sm) 0 0;
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* Copilot quick-ask line */
.copilot-quick-ask {
  margin: var(--space-md) 0 0;
}

/* WhatsApp banner — used at top of contact form pages */
.wa-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  background: color-mix(in srgb, #25D366 10%, var(--card));
  border: 1px solid color-mix(in srgb, #25D366 35%, transparent);
  border-radius: var(--r);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.wa-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.5;
}
.wa-banner-text strong { color: var(--text); }
.wa-banner-text small { color: var(--muted); }
