/* ══════════════════════════════════════════════════════════════
   LocalFirst – style.css
   Design System: Plus Jakarta Sans · Navy Blue · Premium Minimal
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:          #ffffff;
  --c-surface:     #F8FAFF;
  --c-ink:         #0D0D0D;
  --c-body:        #374151;
  --c-muted:       #6B7280;
  --c-accent:      #1B4FD8;
  --c-accent-h:    #1540B0;
  --c-accent-pale: #EEF2FF;
  --c-green:       #059669;
  --c-green-pale:  #ECFDF5;
  --c-warn:        #D97706;
  --c-red-pale:    #FEF2F2;
  --c-red:         #DC2626;
  --c-border:      #E5E7EB;
  --c-border-dark: #D1D5DB;
  --c-dark:        #111827;
  --c-dark-2:      #1F2937;
  --c-wa:          #25D366;
  --c-wa-h:        #1fad55;

  /* Typography */
  --font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /* Spacing (8pt grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --sh-md:  0 4px 16px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.05);
  --sh-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --sh-accent: 0 8px 30px rgba(27,79,216,.25);

  /* Transitions */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 160ms var(--ease);
  --t-base: 260ms var(--ease);
  --t-slow: 600ms var(--ease);

  /* Layout */
  --max-w: 1140px;
  --nav-h: 68px;
}


/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.68;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

h1, h2, h3, h4 {
  color: var(--c-ink);
  font-weight: var(--fw-700);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

strong { font-weight: var(--fw-600); }


/* ─── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section-pad {
  padding-block: var(--sp-9);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.section-header h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: var(--fw-800);
  margin-block: var(--sp-3) var(--sp-4);
}

.section-sub {
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.7;
}


/* ─── 4. CHIPS / LABELS ─────────────────────────────────────── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-pale);
  border: 1px solid rgba(27,79,216,.18);
  border-radius: var(--r-full);
  padding: 5px 14px;
}

.label-chip--dark {
  color: var(--c-ink);
  background: transparent;
  border-color: var(--c-border);
}

.label-chip--light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
}


/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: var(--fw-600);
  line-height: 1;
  border-radius: var(--r-full);
  padding: 12px 22px;
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), box-shadow var(--t-base),
              transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

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

.btn-lg {
  font-size: 16px;
  padding: 15px 28px;
}

.btn-sm {
  font-size: 14px;
  padding: 9px 18px;
}

.btn-full { width: 100%; }

/* Primary */
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  box-shadow: 0 2px 12px rgba(27,79,216,.22);
}
.btn-primary:hover {
  background: var(--c-accent-h);
  border-color: var(--c-accent-h);
  box-shadow: var(--sh-accent);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-border-dark);
}
.btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-1px);
}

/* Ghost (text only) */
.btn-ghost {
  background: transparent;
  color: var(--c-body);
  border-color: transparent;
}
.btn-ghost:hover {
  color: var(--c-accent);
  background: var(--c-accent-pale);
}

/* White (for use on dark backgrounds) */
.btn-white {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
  box-shadow: var(--sh-sm);
}
.btn-white:hover {
  background: var(--c-surface);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--c-wa);
  color: #fff;
  border-color: var(--c-wa);
  box-shadow: 0 2px 12px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: var(--c-wa-h);
  border-color: var(--c-wa-h);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transform: translateY(-1px);
}


/* ─── 6. NAVIGATION ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--t-base), box-shadow var(--t-base),
              border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

#nav.nav--scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--c-border);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-logo {
  font-size: 19px;
  font-weight: var(--fw-800);
  color: var(--c-ink);
  letter-spacing: -0.03em;
  margin-right: auto;
  text-decoration: none;
}

.nav-logo span { color: var(--c-accent); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-5);
}

.nav-links a {
  font-size: 14px;
  font-weight: var(--fw-500);
  color: var(--c-body);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--c-accent); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-5);        /* kein vertikales Padding im geschlossenen Zustand */
  background: #fff;
  border-top: 1px solid transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease),
              padding    0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.nav-mobile.is-open {
  max-height: 400px;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  border-top-color: var(--c-border);
}

.nav-mobile a {
  font-size: 16px;
  font-weight: var(--fw-600);
  color: var(--c-ink);
  transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--c-accent); }


/* ─── 7. HERO ────────────────────────────────────────────────── */
.s-hero {
  padding-top: calc(var(--nav-h) + var(--sp-10));
  padding-bottom: var(--sp-10);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.s-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,79,216,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-body {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero-body .label-chip {
  margin-bottom: var(--sp-5);
}

h1 {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: var(--fw-800);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin-bottom: var(--sp-5);
}

.accent-underline {
  position: relative;
  white-space: nowrap;
}

.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent), #6366f1);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--c-body);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
  line-height: 1.68;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--fw-500);
  color: var(--c-muted);
}

.trust-pill svg { color: var(--c-green); flex-shrink: 0; }


/* ─── 8. STATS BAR ──────────────────────────────────────────── */
.s-stats {
  background: var(--c-accent);
  padding-block: var(--sp-7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5) 0;
  align-items: center;
  justify-items: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: var(--fw-800);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 13px;
  font-weight: var(--fw-500);
  color: rgba(255,255,255,.65);
  letter-spacing: 0.01em;
}

.stat-divider {
  display: none;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}


/* ─── 9. PROBLEM SECTION ────────────────────────────────────── */
.s-problem {
  background: var(--c-surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.problem-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.problem-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  border-color: var(--c-border-dark);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-red-pale);
  color: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: var(--fw-700);
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
  line-height: 1.35;
}

.problem-card p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.6;
}


/* ─── 10. TRANSFORMATION ────────────────────────────────────── */
.s-transform {
  background: var(--c-bg);
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.transform-card {
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
}

.transform-before {
  background: var(--c-surface);
  border: 1.5px dashed var(--c-border-dark);
}

.transform-after {
  background: var(--c-accent);
  border: 1.5px solid var(--c-accent);
}

.transform-label {
  font-size: 12px;
  font-weight: var(--fw-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  opacity: .6;
}

.transform-before .transform-label { color: var(--c-muted); }
.transform-after .transform-label  { color: rgba(255,255,255,.75); }

.transform-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 16px;
  font-weight: var(--fw-500);
  line-height: 1.45;
}

.transform-before .transform-list li { color: var(--c-muted); }
.transform-after .transform-list li  { color: rgba(255,255,255,.95); }

.icon-x {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--c-red-pale);
  color: var(--c-red);
  border-radius: 50%;
  margin-top: 1px;
}

.icon-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 50%;
  margin-top: 1px;
}

.transform-after .btn-white {
  margin-top: var(--sp-4);
}


/* ─── 11. PRICING ────────────────────────────────────────────── */
.s-pricing {
  background: var(--c-bg);
}

/* Shared card base */
.pricing-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  flex: 1;
}

.pricing-name {
  font-size: 12px;
  font-weight: var(--fw-700);
  color: var(--c-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-3);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: var(--sp-3);
}

.price-amount {
  font-size: clamp(38px, 5vw, 52px);
  font-weight: var(--fw-800);
  color: var(--c-ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-currency { font-size: 24px; font-weight: var(--fw-700); }

.price-period {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: var(--fw-500);
}

.pricing-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--c-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 14px;
  color: var(--c-body);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-green);
}

/* ── COMBO WRAPPER ── */
.pricing-combo {
  position: relative;
  border: 2px solid var(--c-accent);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  box-shadow: var(--sh-accent);
  margin-bottom: var(--sp-5);
  background: var(--c-bg);
}

.pricing-combo-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-accent);
  color: #fff;
  font-size: 12px;
  font-weight: var(--fw-700);
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-combo-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Inner cards inside combo: no outer border, subtle background */
.combo-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}

/* Plus divider */
.pricing-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: var(--fw-800);
  color: var(--c-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-accent-pale);
  border: 1.5px solid rgba(27,79,216,.2);
  align-self: center;
  flex-shrink: 0;
  margin: 0 auto;
  line-height: 1;
}

/* Combo Footer */
.pricing-combo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(27,79,216,.15);
  text-align: center;
}

.combo-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.combo-total-price {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: var(--fw-800);
  color: var(--c-ink);
  letter-spacing: -0.025em;
}

.combo-total-label {
  font-size: 14px;
  color: var(--c-muted);
}

/* ── OPTIONAL ADD-ON: Google Sichtbarkeit ── */
.pricing-addon {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  background: var(--c-surface);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.pricing-addon:hover {
  border-color: var(--c-border-dark);
  box-shadow: var(--sh-sm);
}

.pricing-addon-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.addon-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: var(--c-border);
  border-radius: var(--r-full);
  padding: 4px 12px;
  margin-bottom: var(--sp-3);
}

.pricing-addon-left h3 {
  font-size: 22px;
  font-weight: var(--fw-800);
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.025em;
}

.pricing-addon-left > p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.addon-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 14px;
  color: var(--c-body);
  line-height: 1.5;
}

.addon-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-green);
}

.pricing-addon-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.addon-cancel {
  font-size: 12px;
  color: var(--c-muted);
}

.pricing-note {
  text-align: center;
  margin-top: var(--sp-6);
  font-size: 13px;
  color: var(--c-muted);
}


/* ─── 12. PROZESS ───────────────────────────────────────────── */
.s-prozess {
  background: var(--c-surface);
}

.prozess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  position: relative;
  margin-bottom: var(--sp-8);
}

.prozess-step {
  text-align: center;
  position: relative;
}

.prozess-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: 22px;
  font-weight: var(--fw-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  box-shadow: 0 4px 16px rgba(27,79,216,.3);
  letter-spacing: -0.02em;
}

.prozess-step h3 {
  font-size: 19px;
  font-weight: var(--fw-700);
  margin-bottom: var(--sp-3);
  color: var(--c-ink);
}

.prozess-step p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.68;
  max-width: 280px;
  margin-inline: auto;
}

.prozess-connector { display: none; }

.prozess-cta { text-align: center; }


/* ─── 13. GOOGLE SECTION ────────────────────────────────────── */
.s-google {
  background: var(--c-bg);
}

.google-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.google-text .label-chip { margin-bottom: var(--sp-5); }

.google-text h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: var(--fw-800);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.google-text > p {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.72;
  margin-bottom: var(--sp-6);
}

.google-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.google-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 16px;
  font-weight: var(--fw-500);
  color: var(--c-body);
}

.gf-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--c-green-pale);
  color: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GMB Card Visual */
.google-visual {
  display: flex;
  justify-content: center;
}

.gmb-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  width: 100%;
  max-width: 320px;
  box-shadow: var(--sh-lg);
}

.gmb-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.gmb-badge {
  font-size: 11px;
  font-weight: var(--fw-600);
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 2px 10px;
}

.gmb-name {
  font-size: 18px;
  font-weight: var(--fw-700);
  color: var(--c-ink);
  margin-bottom: 4px;
}

.gmb-stars {
  font-size: 14px;
  color: var(--c-warn);
  margin-bottom: 4px;
}

.gmb-stars span { color: var(--c-body); font-size: 13px; }

.gmb-type {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: var(--sp-4);
}

.gmb-divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: var(--sp-4);
}

.gmb-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: space-between;
}

.gmb-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: var(--fw-600);
  color: var(--c-accent);
  background: var(--c-accent-pale);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-2);
  cursor: default;
}

.gmb-action svg { color: var(--c-accent); }


/* ─── 14. TESTIMONIALS ──────────────────────────────────────── */
.s-testimonials {
  background: var(--c-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.testimonial-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.testimonial-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 18px;
  color: var(--c-warn);
  margin-bottom: var(--sp-4);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 16px;
  color: var(--c-body);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: var(--sp-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--avatar-color, var(--c-accent));
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: var(--fw-700);
  color: var(--c-ink);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--c-muted);
}


/* ─── 15. FINAL CTA ─────────────────────────────────────────── */
.s-cta {
  background: var(--c-accent);
  padding-block: var(--sp-10);
  position: relative;
  overflow: hidden;
}

.s-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  position: relative;
}

.cta-inner .label-chip { margin-bottom: var(--sp-5); }

.cta-inner h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: var(--fw-800);
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-4);
}

.cta-inner p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  margin-bottom: var(--sp-7);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  font-weight: var(--fw-500);
}


/* ─── 16. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--c-dark);
  padding-block: var(--sp-8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: var(--sp-3);
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-nav a {
  font-size: 14px;
  font-weight: var(--fw-500);
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: #fff; }

.footer-legal { gap: var(--sp-3); }

.link-btn {
  font-size: 14px;
  font-weight: var(--fw-500);
  color: rgba(255,255,255,.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--t-fast);
  font-family: var(--font);
}
.link-btn:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-5);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}


/* ─── 17. MODALS ────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: var(--sp-8) var(--sp-6) var(--sp-8);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform 0.3s var(--ease);
}

.modal.is-open .modal-box {
  transform: translateY(0);
}

.modal-box h2 {
  font-size: 22px;
  font-weight: var(--fw-800);
  margin-bottom: var(--sp-5);
}

.modal-box p {
  font-size: 15px;
  color: var(--c-body);
  line-height: 1.72;
  margin-bottom: var(--sp-4);
}

.modal-box a {
  color: var(--c-accent);
  text-decoration: underline;
}

.modal-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
  color: var(--c-body);
}
.modal-close:hover { background: var(--c-border); }
.modal-close:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}


/* ─── 18. FLOATING WHATSAPP BUTTON ──────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  animation: fabPulse 2.5s ease-in-out 2s infinite;
}

.fab-wa:hover {
  background: var(--c-wa-h);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transform: scale(1.08);
  animation: none;
}

.fab-wa:focus-visible {
  outline: 2px solid var(--c-wa);
  outline-offset: 3px;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}


/* ─── 19. SCROLL ANIMATIONS ──────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section {
  /* Parent: triggers children */
}

.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── 20. MEDIA QUERIES ──────────────────────────────────────── */

/* Tablet – 640px+ */
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-4) var(--sp-6);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .stat-divider { display: block; }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transform-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prozess-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .modal {
    align-items: center;
  }

  .modal-box {
    border-radius: var(--r-xl);
    max-height: 90vh;
  }
}

/* Desktop – 1024px+ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Combo: side-by-side on desktop */
  .pricing-combo-cards {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .combo-card {
    border-radius: 0;
  }

  .combo-card:first-child {
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    border-right: none;
  }

  .combo-card:last-child {
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    border-left: none;
  }

  .pricing-plus {
    margin: 0;
    align-self: center;
    flex-shrink: 0;
  }

  .pricing-combo-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  /* Add-on: side-by-side on desktop */
  .pricing-addon-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
  }

  .pricing-addon-left { flex: 1; }

  .pricing-addon-right {
    flex-shrink: 0;
    align-items: flex-end;
    text-align: right;
  }

  .google-inner {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .prozess-step {
    position: relative;
  }

  .prozess-connector {
    display: block;
    position: absolute;
    top: 27px;
    left: calc(50% + 38px);
    right: calc(-50% + 38px);
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent), rgba(27,79,216,.3));
    border-radius: 1px;
  }
}


/* ─── 21. PREFERS-REDUCED-MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .animate-fade-up,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fab-wa { animation: none; }

  .btn { transition: none; }
}


/* ─── 22. DESIGN REFINEMENTS ─────────────────────────────────── */

/* Subtiles Punktraster im Hero */
.s-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,79,216,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

.s-hero .container { position: relative; z-index: 1; }

/* Stats Bar: weicher Farbverlauf statt Flat */
.s-stats {
  background: linear-gradient(135deg, #1B4FD8 0%, #1340A8 100%);
}

/* Problem Cards: linke Akzentlinie beim Hover */
.problem-card {
  border-left: 3px solid transparent;
}
.problem-card:hover {
  border-left-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* Pricing Combo: Premium Shadow */
.pricing-combo {
  box-shadow:
    0 0 0 1px rgba(27,79,216,.14),
    0 8px 32px rgba(27,79,216,.12),
    0 2px 8px rgba(0,0,0,.04);
}

/* Testimonials → entfernt; Portfolio ersetzt */

/* Transformation Nachher-Karte: feiner Schimmer */
.transform-after {
  background: linear-gradient(145deg, #1B4FD8 0%, #1642C4 100%);
}

/* Heading Ink: tiefes Slate statt reines Schwarz */
h1, h2, h3, h4 { color: #0F172A; }

/* Hero H1: minimale Verfeinerung */
h1 { letter-spacing: -0.04em; }

/* Pricing Addon: Hover-Glow */
.pricing-addon:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

/* CTA Section: feinerer Gradient */
.s-cta {
  background: linear-gradient(150deg, #1B4FD8 0%, #1340A8 60%, #0F3490 100%);
}

/* Nav Logo: leicht verfeinert */
.nav-logo {
  letter-spacing: -0.04em;
}


/* ─── 23. PORTFOLIO / BROWSER-MOCKUP ─────────────────────────── */
.s-portfolio {
  background: var(--c-surface);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.portfolio-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.portfolio-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

/* Browser Chrome (Titelleiste) */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #F1F3F5;
  border-bottom: 1px solid var(--c-border);
  padding: 10px 14px;
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: var(--c-muted);
  font-weight: var(--fw-500);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Iframe Viewport */
.browser-viewport {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F4FF 0%, #E8EFFE 100%);
}

.browser-viewport iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 960px;
  transform: scale(0.3);
  transform-origin: 0 0;
  border: none;
  pointer-events: none;
}

/* Transparenter Overlay verhindert Klicks auf iframe */
.browser-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: default;
}

/* Leere Viewport-Varianten */
.browser-viewport--empty,
.browser-viewport--cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-empty-state {
  text-align: center;
  color: var(--c-border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.portfolio-empty-state p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
}

/* CTA-Karte innerer Inhalt */
.browser-viewport--cta {
  background: linear-gradient(145deg, var(--c-accent-pale) 0%, #E0E7FF 100%);
}

.portfolio-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
}

.portfolio-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-cta-inner p {
  font-size: 15px;
  font-weight: var(--fw-600);
  color: var(--c-ink);
  line-height: 1.4;
}

/* Portfolio Meta-Leiste */
.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-4);
  border-top: 1px solid var(--c-border);
  gap: var(--sp-3);
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: 3px;
}

.portfolio-tag--muted {
  opacity: .6;
}

.portfolio-name {
  font-size: 14px;
  font-weight: var(--fw-600);
  color: var(--c-ink);
  margin: 0;
  line-height: 1.3;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: var(--fw-600);
  color: var(--c-accent);
  flex-shrink: 0;
  transition: gap var(--t-fast);
  text-decoration: none;
}

.portfolio-link:hover { gap: 8px; }


/* ─── 24. CONTACT FORM MODAL ─────────────────────────────────── */

/* Wider modal box for the form */
.modal-box--form {
  max-width: 560px;
  padding: var(--sp-7) var(--sp-8);
}

@media (max-width: 639px) {
  .modal-box--form {
    padding: var(--sp-5) var(--sp-5);
  }
}

/* Subtitle below modal heading */
.modal-sub {
  font-size: 15px;
  color: var(--c-muted);
  margin: var(--sp-2) 0 var(--sp-6);
  line-height: 1.6;
}

/* Form field group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

/* Two-column row (email + phone) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Labels */
.form-group label {
  font-size: 14px;
  font-weight: var(--fw-600);
  color: var(--c-ink);
}

.form-group label span[aria-hidden] {
  color: var(--c-accent);
  margin-left: 2px;
}

/* Inputs, selects, textareas */
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-muted);
  opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(27,79,216,.12);
}

/* Invalid state */
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #DC2626;
}

.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

/* Error message */
.form-err {
  font-size: 13px;
  color: #DC2626;
  font-weight: var(--fw-500);
  min-height: 1em;
}

/* Optional label */
.form-optional {
  font-size: 12px;
  font-weight: var(--fw-400);
  color: var(--c-muted);
  margin-left: 4px;
}

/* Submit button spacing */
#cf-submit {
  margin-top: var(--sp-2);
  gap: var(--sp-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Legal disclaimer */
.form-legal {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.55;
  margin-top: var(--sp-3);
  text-align: center;
}

/* ── Success view ── */
#cf-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
}

#cf-success-view h2 {
  font-size: clamp(22px, 4vw, 28px);
  color: var(--c-ink);
}

#cf-success-view p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 380px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Platzhalter-Karte gedimmt */
.portfolio-soon {
  opacity: .75;
}

/* Responsive Portfolio Grid */
@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Etwas größere Vorschaufenster auf Desktop */
  .browser-viewport {
    height: 260px;
  }
}
