/* =====================================================================
   Wellnerapy · Gemeinsames Stylesheet
   Design im Stil der Vergleichsseiten (Creme + gebranntes Orange).
   Schriften: lokal (Caladea) + System-UI, keine externen Requests.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-cream: #faf5ee;
  --bg-warm:  #f3ece1;
  --card:     #fffdf9;
  --ink:      #1c140e;
  --ink-soft: #5a4a3d;
  --ink-mute: #8a7c6e;
  --line:     #e7dccd;

  --accent:        #c2410c;
  --accent-bright: #ea580c;
  --accent-soft:   #fed7aa;
  --accent-50:     #fdf2ea;
  --good:          #15803d;
  --bad:           #c0392b;

  --gray-300: #cdbfac;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(28,20,14,.05), 0 4px 16px rgba(28,20,14,.04);
  --shadow-lg: 0 12px 40px rgba(28,20,14,.10);

  --font-serif: 'Playfair Display', 'Caladea', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-serif);
  letter-spacing: -.3px;
  line-height: 1.15;
  font-weight: 700;
}

p { color: var(--ink-soft); }
a { color: var(--accent); }

.accent { color: var(--accent); font-style: italic; }

.eyebrow, .section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  background: none; border: none; padding: 0; margin-bottom: 14px;
}
.section-label svg { width: 14px; height: 14px; }

/* ── NAV ─────────────────────────────────────────── */
.nav-wrap { position: sticky; top: 0; z-index: 100; padding: 16px 5%; background: transparent; pointer-events: none; }
nav {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 22px;
  background: rgba(255,253,249,.92); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 100px;
  box-shadow: 0 2px 20px rgba(28,20,14,.06); pointer-events: all;
}
.logo { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 9px; }
.logo-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--accent); }
.nav-back { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-size: .85rem; font-weight: 600; color: var(--ink-soft); padding: 9px 18px; border: 1.5px solid var(--line); border-radius: 100px; transition: all .18s; }
.nav-back:hover { border-color: var(--accent); color: var(--accent); }

.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 600; cursor: pointer; text-decoration: none; transition: all .18s; border: none; font-size: .88rem; gap: 8px; border-radius: 12px; }
.btn-primary { background: var(--accent); color: #fff; padding: 10px 20px; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(194,65,12,.28); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); padding: 10px 20px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-50); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 16px 32px; font-size: 1.02rem; }
.btn-dark { background: var(--accent); color: #fff; }
.btn-dark:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(194,65,12,.3); }
.btn-light { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-light:hover { background: var(--bg-warm); border-color: var(--accent-soft); }

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 68px 5%; }
.container { max-width: 1120px; margin: 0 auto; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.text-center { text-align: center; }
.lead { font-size: 1.05rem; line-height: 1.75; max-width: 660px; color: var(--ink-soft); }
.mx-auto { margin-left: auto; margin-right: auto; }
.head-center { max-width: 720px; margin: 0 auto; text-align: center; }
.head-center .eyebrow, .head-center .section-label { display: inline-flex; margin-bottom: 12px; }

/* ── HERO ────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 84px 5% 68px; text-align: center; background: radial-gradient(1100px 420px at 50% -8%, var(--accent-soft) 0%, transparent 58%), var(--bg-cream); }
.hero.hero-left { text-align: left; background: radial-gradient(1100px 420px at 100% -8%, var(--accent-soft) 0%, transparent 55%), var(--bg-cream); }
.hero-inner { max-width: 1120px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 28px; box-shadow: 0 1px 6px rgba(28,20,14,.05); }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -.5px; max-width: 900px; margin: 0 auto; }
.hero.hero-left .hero-h1 { margin: 0; max-width: 860px; }
.hero-h1-dark { color: var(--ink); display: block; }
.hero-h1-muted { color: var(--accent); font-style: italic; display: block; }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 580px; margin: 26px auto 34px; line-height: 1.75; }
.hero.hero-left .hero-sub { margin: 22px 0 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero.hero-left .hero-ctas { justify-content: flex-start; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: .8rem; color: var(--ink-mute); flex-wrap: wrap; }
.hero.hero-left .hero-trust { justify-content: flex-start; }
.hero-trust-item { display: flex; align-items: center; gap: 5px; }
.hero-trust-item svg { color: var(--accent); width: 13px; height: 13px; }

/* vs badges (Vergleichsseiten) */
.vs { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; font-family: var(--font-serif); font-size: 1.2rem; flex-wrap: wrap; }
.vs .brand { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 10px 18px; font-weight: 700; }
.vs .brand.me { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.vs .x { color: var(--ink-mute); font-style: italic; }

/* ── INTERFACE PREVIEW ───────────────────────────── */
.interface-preview { padding: 0 5% 72px; background: var(--bg-cream); }
.interface-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.interface-frame { background: var(--card); border-radius: 20px; box-shadow: 0 0 0 1px var(--line), 0 24px 64px rgba(28,20,14,.14); overflow: hidden; position: relative; }
.browser-bar { background: var(--bg-warm); border-bottom: 1px solid var(--line); padding: 10px 16px; display: flex; align-items: center; gap: 12px; }
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-url { flex: 1; background: var(--card); border-radius: 6px; padding: 4px 12px; font-size: .75rem; color: var(--ink-mute); border: 1px solid var(--line); text-align: center; }
.app-mockup { display: flex; height: 520px; }
.mockup-sidebar { width: 200px; background: var(--bg-warm); border-right: 1px solid var(--line); padding: 20px 12px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.mockup-logo { display: flex; align-items: center; gap: 8px; padding: 0 8px 20px; font-size: .87rem; font-weight: 700; color: var(--ink); }
.mockup-logo-icon { width: 26px; height: 26px; background: var(--accent); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.mockup-logo-icon svg { width: 14px; height: 14px; fill: white; }
.mockup-nav-item { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 9px; font-size: .8rem; color: var(--ink-mute); cursor: pointer; font-weight: 500; }
.mockup-nav-item.active { background: var(--ink); color: white; font-weight: 600; }
.mockup-nav-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.mockup-content { flex: 1; padding: 28px; overflow: hidden; background: var(--card); }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mockup-title { font-size: 1.05rem; font-weight: 800; }
.mockup-badge { background: var(--accent-soft); color: var(--accent); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.stat-card { background: var(--bg-warm); border-radius: 12px; padding: 16px; border: 1px solid var(--line); }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.stat-label { font-size: .72rem; color: var(--ink-mute); font-weight: 500; margin-top: 2px; }
.patient-list { display: flex; flex-direction: column; gap: 8px; }
.patient-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--bg-warm); border-radius: 10px; border: 1px solid var(--line); }
.patient-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: white; flex-shrink: 0; }
.patient-info { flex: 1; }
.patient-name { font-size: .82rem; font-weight: 600; }
.patient-sub { font-size: .71rem; color: var(--ink-mute); }
.patient-status { font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.status-green { background: #dcfce7; color: var(--good); }
.status-yellow { background: #fef9c3; color: #854d0e; }
.status-red { background: #fee2e2; color: #991b1b; }
.play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(28,20,14,.34); backdrop-filter: blur(2px); cursor: pointer; text-decoration: none; border-radius: 20px; transition: background .2s; }
.play-overlay:hover { background: rgba(28,20,14,.46); }
.play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(0,0,0,.24); transition: transform .18s, box-shadow .18s; margin-bottom: 14px; }
.play-overlay:hover .play-btn { transform: scale(1.08); }
.play-btn svg { width: 28px; height: 28px; color: var(--accent); margin-left: 4px; }
.play-label { color: white; font-size: .9rem; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* ── LOGOS BAR ───────────────────────────────────── */
.logos-bar { padding: 40px 5%; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-bar p { text-align: center; font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.trust-pill svg { color: var(--accent); width: 20px; height: 20px; }

/* ── PROBLEM / SOLUTION ──────────────────────────── */
.problem-section { background: var(--bg-cream); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; }
.problem-marker { width: 30px; height: 30px; border-radius: 8px; background: #fde8e0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--bad); font-weight: 800; }
.problem-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; font-family: var(--font-sans); }
.problem-item p { font-size: .9rem; }
.solution-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.solution-box h3 { font-size: 1.4rem; color: var(--accent); margin-bottom: 12px; }
.solution-box p { font-size: .96rem; }
.solution-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.solution-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.solution-list li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ── FEATURES / BENTO ────────────────────────────── */
.features-section { background: var(--bg-warm); }
.features-header { text-align: center; margin-bottom: 48px; }
.feature-card { background: var(--card); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--line); transition: all .2s; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--accent-soft); }
.feature-card h3 { font-size: 1.05rem; font-family: var(--font-sans); }
.feature-card p { font-size: .88rem; line-height: 1.65; margin-top: 6px; }
.feature-kicker { font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.bento-grid { display: grid; grid-template-columns: 3fr 2fr; grid-template-rows: auto auto; gap: 18px; }
.bento-card { background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s; position: relative; }
.bento-card:hover { box-shadow: var(--shadow-lg); }
.bento-card-text { padding: 26px; }
.bento-card-text h3 { font-size: 1.25rem; margin-bottom: 8px; }
.bento-card-text p { font-size: .88rem; line-height: 1.65; }
.bento-a { grid-row: span 2; display: flex; flex-direction: column; }
.bento-a-visual { background: linear-gradient(160deg, #1c140e 0%, #2c1c10 100%); flex: 1; min-height: 280px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 28px; }
.bento-b-visual { background: var(--accent-50); padding: 28px 28px 0; display: flex; flex-wrap: wrap; gap: 8px; min-height: 120px; align-content: flex-start; }
.bento-c { display: flex; flex-direction: column; }
.bento-c-visual { background: var(--accent-50); flex: 1; min-height: 100px; padding: 20px 24px; overflow: hidden; position: relative; }
.bento-phone { background: var(--card); border-radius: 20px; width: 170px; box-shadow: 0 20px 60px rgba(0,0,0,.4); overflow: hidden; flex-shrink: 0; }
.bento-phone-bar { background: var(--bg-warm); padding: 10px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.bento-phone-dot { width: 7px; height: 7px; border-radius: 50%; }
.bento-phone-title { font-size: .65rem; font-weight: 700; color: var(--ink); margin-left: 2px; }
.bento-phone-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.bento-phone-row { background: var(--bg-warm); border-radius: 6px; padding: 6px 8px; font-size: .6rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.bento-phone-row-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.bento-phone-check { background: var(--accent); border-radius: 6px; padding: 6px 8px; font-size: .6rem; font-weight: 700; color: white; display: flex; align-items: center; gap: 5px; }
.bento-floating-text { position: absolute; top: 50%; right: 24px; transform: translateY(-50%); }
.bento-big-num { font-size: 2.8rem; font-weight: 800; color: white; line-height: 1; }
.bento-big-label { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.bento-dsgvo-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 6px 12px; font-size: .75rem; font-weight: 600; color: var(--ink); }
.bento-dsgvo-badge svg { width: 13px; height: 13px; color: var(--accent); }
.bento-ki-bubble { background: var(--card); border-radius: 10px; padding: 8px 12px; font-size: .72rem; line-height: 1.5; color: var(--ink); box-shadow: 0 2px 8px rgba(28,20,14,.1); margin-bottom: 6px; }
.bento-ki-bubble.user-bubble { background: var(--accent); color: white; align-self: flex-end; margin-left: 24px; }
.bento-ki-flex { display: flex; flex-direction: column; gap: 6px; }

/* ── KI HIGHLIGHT ────────────────────────────────── */
.ai-section { background: var(--bg-cream); }
.ai-inner { background: linear-gradient(135deg, #1c140e 0%, #2c1c10 100%); border-radius: 24px; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ai-inner .eyebrow, .ai-inner .section-label { color: var(--accent-soft); }
.ai-inner h2 { color: white; }
.ai-inner p { color: #c9bdb0; font-size: 1rem; margin-top: 16px; }
.ai-feature-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.ai-feature-list li { display: flex; gap: 12px; align-items: flex-start; color: #d8cabb; font-size: .92rem; }
.ai-feature-list li svg { width: 18px; height: 18px; color: var(--accent-soft); margin-top: 2px; flex-shrink: 0; }
.ai-visual { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 24px; }
.ai-chat { display: flex; flex-direction: column; gap: 12px; }
.ai-msg { border-radius: 12px; padding: 10px 14px; font-size: .83rem; max-width: 85%; line-height: 1.5; }
.ai-msg-user { background: var(--accent); color: white; align-self: flex-end; }
.ai-msg-bot { background: rgba(255,255,255,.1); color: #ede4d8; align-self: flex-start; }
.ai-msg-label { font-size: .68rem; margin-bottom: 4px; opacity: .7; }
.ai-options { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.ai-option { background: rgba(254,215,170,.15); border: 1px solid rgba(254,215,170,.35); color: var(--accent-soft); border-radius: 20px; padding: 4px 10px; font-size: .73rem; font-weight: 600; }

/* ── FÜR WEN (ohne grosse Icons) ─────────────────── */
.forwhom-section { background: var(--bg-warm); }
.forwhom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.forwhom-card { background: var(--card); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--line); transition: all .2s; }
.forwhom-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-lg); }
.forwhom-role { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.forwhom-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.forwhom-card p { font-size: .86rem; }
.forwhom-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.tag { background: var(--accent-50); color: var(--accent); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--accent-soft); }

/* ── HOW IT WORKS ────────────────────────────────── */
.how-section { background: var(--bg-cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 16.6%; right: 16.6%; height: 1px; background: var(--accent-soft); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--accent); color: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin: 0 auto 20px; font-family: var(--font-serif); box-shadow: 0 6px 18px rgba(194,65,12,.28); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .88rem; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials-section { background: var(--bg-warm); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testimonial-card { background: var(--card); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
.stars { color: var(--accent-bright); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; font-family: var(--font-serif); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; color: white; }
.author-name { font-size: .85rem; font-weight: 700; }
.author-role { font-size: .77rem; color: var(--ink-mute); }

/* ── PRICING ─────────────────────────────────────── */
.pricing-section { background: var(--bg-cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: start; }
.pricing-card { background: var(--card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); position: relative; transition: all .2s; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 6px 28px rgba(194,65,12,.14); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: .75rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-plan { font-size: .78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.pricing-price { margin-bottom: 4px; }
.pricing-price .amount { font-size: 2.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pricing-price .currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-price .period { font-size: .85rem; color: var(--ink-mute); }
.pricing-note { font-size: .77rem; color: var(--ink-mute); margin-bottom: 20px; }
.pricing-desc { font-size: .88rem; color: var(--ink-soft); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.pricing-features li svg { width: 16px; height: 16px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--ink-mute); }
.pricing-features li.disabled svg { color: var(--bad); }
.pricing-toggle-wrap { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
.pricing-toggle { display: flex; background: var(--bg-warm); border: 1px solid var(--line); border-radius: 100px; padding: 4px; gap: 4px; }
.toggle-btn { padding: 8px 20px; border-radius: 100px; font-size: .88rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--ink-mute); transition: all .18s; font-family: var(--font-sans); }
.toggle-btn.active { background: var(--card); color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.toggle-save-badge { background: var(--accent-soft); color: var(--accent); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.price-annual { display: none; }
.annual-mode .price-monthly { display: none; }
.annual-mode .price-annual { display: inline; }
.annual-period { display: none; font-size: .77rem; color: var(--ink-mute); }
.annual-mode .annual-period { display: block; }
.monthly-period { font-size: .77rem; color: var(--ink-mute); }
.annual-mode .monthly-period { display: none; }

/* ── DEMO-CALL / BOOKING ─────────────────────────── */
.booking-section { background: var(--bg-warm); border-top: 1px solid var(--line); }
.booking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.booking-intro .eyebrow { display: inline-flex; }
.booking-intro h2 { margin: 8px 0 16px; }
.booking-intro > p { font-size: 1rem; color: var(--ink-soft); }
.booking-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.booking-badge { display: flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.booking-badge svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.booking-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.booking-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.booking-list li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.booking-embed-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow); }
.calendly-inline-widget { min-width: 300px; height: 680px; border-radius: 12px; overflow: hidden; }
.cal-embed { position: relative; }
.cal-inline { min-width: 100%; height: 700px; border-radius: 12px; overflow: auto; }
.cal-inline:empty { display: none; }
.booking-fallback { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; min-height: 480px; padding: 40px 28px; }
.booking-fallback .bf-cal { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; color: var(--ink-mute); margin-top: 16px; }
.booking-fallback .bf-cal svg { width: 15px; height: 15px; color: var(--accent); }
.booking-fallback h3 { font-size: 1.3rem; margin-bottom: 10px; }
.booking-fallback p { font-size: .9rem; color: var(--ink-soft); max-width: 360px; margin-bottom: 22px; }

/* ── DSGVO SECTION ───────────────────────────────── */
.dsgvo-section { background: var(--accent-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 5%; }
.dsgvo-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dsgvo-badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.dsgvo-badge { display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-size: .83rem; font-weight: 600; color: var(--ink); }
.dsgvo-badge svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.dsgvo-callout { background: var(--card); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
.dsgvo-callout h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 12px; font-family: var(--font-sans); font-weight: 700; }
.dsgvo-callout p { font-size: .88rem; }
.dsgvo-warning { margin-top: 20px; background: #fff4ed; border: 1px solid var(--accent-soft); border-radius: 12px; padding: 14px 16px; display: flex; gap: 10px; align-items: flex-start; }
.dsgvo-warning svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; margin-top: 1px; }
.dsgvo-warning p { font-size: .84rem; color: #9a3412; }

/* ── ROI CALCULATOR ──────────────────────────────── */
.roi-section { background: var(--ink); padding: 76px 5%; }
.roi-section .eyebrow, .roi-section .section-label { color: var(--accent-soft); display: inline-flex; }
.roi-section h2 { color: white; margin-top: 8px; }
.roi-section > .container > p { color: #c9bdb0; margin-top: 12px; max-width: 560px; }
.roi-calc { margin-top: 44px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.roi-inputs { display: flex; flex-direction: column; gap: 32px; }
.roi-slider-group label { display: block; font-size: .88rem; font-weight: 600; color: #ede4d8; margin-bottom: 12px; }
.roi-slider-row { display: flex; align-items: center; gap: 16px; }
.roi-slider-row input[type="range"] { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: rgba(255,255,255,.15); border-radius: 100px; outline: none; }
.roi-slider-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-bright); cursor: pointer; box-shadow: 0 2px 8px rgba(234,88,12,.5); }
.roi-slider-row input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border: none; border-radius: 50%; background: var(--accent-bright); cursor: pointer; }
.roi-val { min-width: 72px; text-align: right; font-size: 1rem; font-weight: 700; color: white; }
.roi-track { margin-top: 8px; display: flex; justify-content: space-between; font-size: .72rem; color: #8a7c6e; }
.roi-results { display: flex; flex-direction: column; gap: 16px; }
.roi-result-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px 24px; }
.roi-result-card.highlight { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%); border-color: transparent; }
.roi-result-label { font-size: .8rem; font-weight: 600; color: #c9bdb0; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.roi-result-card.highlight .roi-result-label { color: rgba(255,255,255,.85); }
.roi-result-num { font-size: 2rem; font-weight: 800; color: white; }
.roi-footnote { margin-top: 20px; font-size: .77rem; color: #8a7c6e; grid-column: 1 / -1; }

/* ── SECURITY STRIP ──────────────────────────────── */
.security-strip { background: var(--ink); padding: 48px 5%; }
.security-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.security-text h3 { color: white; font-size: 1.3rem; margin-bottom: 6px; }
.security-text p { color: #c9bdb0; font-size: .88rem; }
.security-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.sec-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px 16px; }
.sec-badge svg { width: 20px; height: 20px; color: var(--accent-soft); }
.sec-badge span { font-size: .83rem; font-weight: 600; color: #ede4d8; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { background: var(--bg-cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.faq-item { background: var(--card); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--line); }
.faq-q { font-size: 1rem; font-weight: 700; margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-sans); }
.faq-q svg { width: 18px; height: 18px; color: var(--accent); margin-top: 1px; flex-shrink: 0; }
.faq-a { font-size: .88rem; color: var(--ink-soft); line-height: 1.65; padding-left: 28px; }

/* ── FINAL CTA (BAND) ────────────────────────────── */
.final-cta { padding: 72px 5%; background: var(--bg-cream); }
.final-cta-inner { max-width: 1120px; margin: 0 auto; background: var(--ink); color: #fff; text-align: center; border-radius: 28px; padding: 72px 40px; position: relative; overflow: hidden; }
.final-cta-inner::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 640px; height: 420px; background: radial-gradient(ellipse, rgba(234,88,12,.22) 0%, transparent 62%); pointer-events: none; }
.final-cta-inner .eyebrow { color: var(--accent-soft); position: relative; }
.final-cta-inner h2 { color: white; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 8px 0 16px; position: relative; }
.final-cta-inner p { color: #c9bdb0; font-size: 1.05rem; max-width: 600px; margin: 0 auto 34px; position: relative; }
.final-cta .btn-white { background: var(--accent); color: #fff; font-weight: 700; }
.final-cta .btn-white:hover { background: var(--accent-bright); }
.final-cta .btn-ghost { background: rgba(255,255,255,.1); color: white; border: 1.5px solid rgba(255,255,255,.35); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.2); }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.final-note { margin-top: 20px; font-size: .82rem; color: #a1917f; position: relative; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--ink); padding: 40px 5%; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: white; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #a1917f; text-decoration: none; font-size: .82rem; }
.footer-links a:hover { color: var(--accent-soft); }
.footer-copy { color: #6f6252; font-size: .8rem; }

/* ── VIDEO MODAL ─────────────────────────────────── */
#video-modal { display: none; position: fixed; inset: 0; z-index: 9000; align-items: center; justify-content: center; padding: 20px; }
#video-modal.open { display: flex; }
.vm-backdrop { position: absolute; inset: 0; background: rgba(28,20,14,.9); cursor: pointer; }
.vm-inner { position: relative; z-index: 1; width: 100%; max-width: 900px; }
.vm-close { position: absolute; top: -44px; right: 0; background: none; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; cursor: pointer; transition: border-color .18s, background .18s; line-height: 1; }
.vm-close:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }
.vm-frame { position: relative; padding-top: 56.25%; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.vm-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.vm-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; color: #fff; background: #1c140e; }
.vm-consent p { color: #c9bdb0; max-width: 360px; margin-bottom: 18px; font-size: .92rem; }

/* =====================================================================
   VERGLEICHSSEITEN
   ===================================================================== */
.cmp-lead { max-width: 720px; margin: 0 auto; text-align: center; }
.cmp-lead .eyebrow { display: block; margin-bottom: 12px; }
.cmp-lead h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cmp-lead p { color: var(--ink-soft); }

/* Pillars (ohne grosse Icons) */
.pillars { background: var(--bg-warm); }
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; }
.pillar .num { font-family: var(--font-serif); font-size: 1.4rem; color: var(--accent); font-style: italic; margin-bottom: 12px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pillar p { font-size: .93rem; color: var(--ink-soft); }

/* Matrix table */
.cmp-section { padding: 60px 5%; }
.scroll { margin-top: 42px; overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--card); -webkit-overflow-scrolling: touch; }
table.matrix { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14px; }
table.matrix th, table.matrix td { padding: 14px 14px; text-align: center; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
table.matrix th:last-child, table.matrix td:last-child { border-right: none; }
table.matrix thead th { background: var(--bg-warm); font-weight: 700; font-size: 13.5px; font-family: var(--font-sans); }
table.matrix thead th.me { background: var(--ink); color: var(--bg-cream); font-family: var(--font-serif); font-size: 16px; }
table.matrix tbody th { background: #fffaf4; text-align: left; font-weight: 600; width: 230px; position: sticky; left: 0; font-family: var(--font-sans); font-size: 13.5px; }
.me-col { background: #fff7f0; }
.yes { color: var(--good); font-weight: 700; }
.part { color: var(--ink-mute); font-size: 12.5px; }
.no { color: var(--bad); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.no::before { content: '\2715'; font-weight: 800; }
.tag-me { color: var(--accent); font-weight: 700; }
table.matrix caption { caption-side: bottom; text-align: left; font-size: 12px; color: var(--ink-mute); padding: 14px; line-height: 1.6; }

/* Two-column comparison table (single-competitor pages) */
.tablewrap { margin-top: 44px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--card); }
.tablewrap .scroll-x { overflow-x: auto; }
table.duo { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
table.duo th, table.duo td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.duo thead th { background: var(--bg-warm); font-weight: 700; font-family: var(--font-sans); }
table.duo thead th.me { background: var(--ink); color: var(--bg-cream); font-family: var(--font-serif); font-size: 17px; }
table.duo th:first-child, table.duo td:first-child { font-weight: 600; width: 34%; }
table.duo td.col { width: 33%; }
table.duo tr:last-child td { border-bottom: none; }

/* Profiles */
.profiles { background: var(--bg-warm); }
.pgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.profile { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.profile h3 { font-size: 1.2rem; margin-bottom: 4px; }
.profile .role { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.profile p { font-size: .9rem; color: var(--ink-soft); }
.profile.me { background: var(--ink); color: var(--bg-cream); }
.profile.me h3 { color: #fff; }
.profile.me p { color: #c9bdb0; }
.profile.me .role { color: var(--accent-soft); }

/* Honest boxes */
.honest { background: var(--bg-cream); }
.honest .two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.honest .box { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.honest .box h3 { font-size: 1.3rem; margin-bottom: 14px; }
.honest ul { list-style: none; }
.honest li { padding: 8px 0 8px 26px; position: relative; color: var(--ink-soft); font-size: .95rem; }
.honest li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* Band CTA */
.band-section { padding: 40px 5% 60px; background: var(--bg-cream); }
.band { max-width: 1120px; margin: 0 auto; background: var(--ink); color: #fff; text-align: center; border-radius: 24px; padding: 56px 28px; position: relative; overflow: hidden; }
.band::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(234,88,12,.2) 0%, transparent 62%); pointer-events: none; }
.band .eyebrow { color: var(--accent-soft); position: relative; }
.band h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.4rem); margin: 8px 0 12px; position: relative; }
.band p { color: #c9bdb0; max-width: 560px; margin: 0 auto; position: relative; }
.band .btn { margin-top: 24px; position: relative; }

.disclaimer-wrap { max-width: 1120px; margin: 0 auto; padding: 0 5%; }
.disclaimer { font-size: 12.5px; color: var(--ink-mute); border-top: 1px solid var(--line); padding: 26px 0 48px; line-height: 1.7; }

/* =====================================================================
   RECHTLICHE SEITEN (Impressum / Datenschutz)
   ===================================================================== */
.legal-header { max-width: 760px; margin: 48px auto 0; padding: 0 5%; }
.legal-header .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); background: var(--accent-50); border: 1px solid var(--accent-soft); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.legal-header h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-header .meta { font-size: .875rem; color: var(--ink-mute); margin-top: 10px; }
.legal-divider { max-width: 760px; margin: 32px auto; padding: 0 5%; border: none; border-top: 1px solid var(--line); }
.legal { max-width: 760px; margin: 0 auto 80px; padding: 0 5%; }
.legal section { margin-bottom: 40px; }
.legal h2 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; border-left: 3px solid var(--accent); padding-left: 14px; font-family: var(--font-sans); }
.legal p { color: var(--ink-soft); margin-bottom: 12px; font-size: .95rem; }
.legal p:last-child { margin-bottom: 0; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 12px; }
.legal li { color: var(--ink-soft); font-size: .95rem; margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 600; }
.info-box { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; box-shadow: var(--shadow); margin: 14px 0; }
.info-box.accent { background: var(--accent-50); border-color: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; box-shadow: none; }
.info-box p { margin-bottom: 6px; }
.legal table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 16px 0; background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.legal th { background: var(--ink); color: #fff; font-weight: 600; text-align: left; padding: 11px 16px; font-size: .8rem; letter-spacing: .04em; }
.legal td { padding: 11px 16px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.legal tr:last-child td { border-bottom: none; }
.legal tr:nth-child(even) td { background: #fbf7f0; }

/* =====================================================================
   COOKIE-BANNER
   ===================================================================== */
#cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9500; display: none; padding: 18px 5% calc(18px + env(safe-area-inset-bottom)); }
#cookie-banner.show { display: block; }
.cb-inner { max-width: 1040px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 48px rgba(28,20,14,.18); padding: 22px 24px; }
.cb-inner h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: var(--font-sans); font-weight: 700; }
.cb-inner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cb-inner a { color: var(--accent); }
.cb-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cb-btn { font-family: var(--font-sans); font-weight: 600; font-size: .86rem; padding: 11px 20px; border-radius: 10px; cursor: pointer; border: 1.5px solid var(--line); background: var(--card); color: var(--ink); transition: all .16s; }
.cb-btn:hover { border-color: var(--accent-soft); }
.cb-btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.cb-btn.primary:hover { background: var(--accent-bright); }
.cb-btn.link { border: none; background: none; color: var(--ink-mute); text-decoration: underline; padding: 11px 6px; }
.cb-toggles { display: none; flex-direction: column; gap: 10px; margin: 4px 0 16px; border-top: 1px solid var(--line); padding-top: 16px; }
.cb-toggles.show { display: flex; }
.cb-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.cb-row .t { font-size: .86rem; }
.cb-row .t strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.cb-row .t span { color: var(--ink-mute); }
.cb-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.cb-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider { position: absolute; inset: 0; background: var(--gray-300); border-radius: 24px; transition: .18s; cursor: pointer; }
.cb-slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .18s; }
.cb-switch input:checked + .cb-slider { background: var(--accent); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(18px); }
.cb-switch input:disabled + .cb-slider { background: var(--accent-soft); cursor: not-allowed; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .problem-grid, .ai-inner, .dsgvo-inner, .roi-calc, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-a { grid-row: auto; }
  .features-mini-row { grid-template-columns: 1fr 1fr !important; }
  .forwhom-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .ai-inner { padding: 40px 28px; }
  nav .nav-links { display: none; }
  .app-mockup { height: 380px; }
  .mockup-sidebar { width: 140px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .honest .two { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 48px 5%; }
  nav { padding: 0 14px; height: 52px; }
  .nav-cta-group .btn-outline { display: none; }
  .nav-cta-group .btn-primary { font-size: .78rem !important; padding: 8px 14px !important; white-space: nowrap; }
  .nav-back { font-size: .78rem; padding: 8px 14px; }

  .hero { padding: 56px 5% 44px; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-sub { font-size: .95rem; margin: 18px auto 26px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .hero.hero-left .hero-ctas { align-items: stretch; }
  .hero-ctas .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero-trust { font-size: .72rem; gap: 6px; }
  .vs { font-size: 1rem; gap: 10px; }

  .interface-preview { padding: 0 4% 52px; }
  .app-mockup { height: 260px; }
  .mockup-sidebar { display: none; }
  .mockup-content { padding: 14px; }
  .stats-row { gap: 8px; }
  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: .64rem; }
  .interface-frame { border-radius: 12px; }

  .bento-a-visual { min-height: 200px; padding: 20px; gap: 16px; }
  .bento-phone { width: 130px; }
  .bento-floating-text { display: none; }
  .bento-card-text { padding: 18px 20px 20px; }
  .bento-b-visual { min-height: auto; padding: 18px 20px 0; gap: 6px; }
  .bento-c-visual { min-height: 90px; }
  .features-mini-row { grid-template-columns: 1fr !important; }

  .ai-inner { padding: 28px 20px; gap: 28px; }
  .ai-inner h2 { font-size: 1.5rem; }
  .solution-box { padding: 24px; }

  .forwhom-grid { grid-template-columns: 1fr; gap: 12px; }
  .forwhom-card { padding: 22px 20px; }

  .step-num { width: 48px; height: 48px; font-size: 1.15rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .roi-calc { padding: 24px 18px; gap: 32px; }
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 24px 18px; }

  .dsgvo-section { padding: 40px 5%; }
  .dsgvo-inner { gap: 28px; }

  .booking-embed-card { padding: 8px; }
  .calendly-inline-widget { height: 620px; }
  .cal-inline { height: 600px; }
  .booking-fallback { min-height: 420px; }

  .security-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .security-badges { gap: 10px; }
  .sec-badge { padding: 8px 12px; }
  .sec-badge span { font-size: .78rem; }

  .faq-item { padding: 18px 16px; }

  .final-cta { padding: 52px 4%; }
  .final-cta-inner { padding: 48px 22px; border-radius: 22px; }
  .final-cta-inner h2 { font-size: 1.7rem; }
  .cta-row { flex-direction: column; align-items: center; gap: 10px; }
  .cta-row .btn { width: 100%; max-width: 360px; justify-content: center; }
  .final-note { font-size: .78rem; }

  .footer-inner { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .cmp-section { padding: 48px 5%; }
  table.matrix tbody th { width: 170px; font-size: 12.5px; }
  .band { padding: 44px 22px; }
  .cb-inner { padding: 18px; }
  .cb-actions { flex-direction: column; align-items: stretch; }
  .cb-btn { width: 100%; }
  .cb-btn.link { width: auto; align-self: center; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 1.85rem; }
  .nav-cta-group { display: none; }
  .bento-phone { width: 110px; }
}
