/* finsent Marketing — hell, freundlich, ohne externe Schriften/Tracker */

:root {
  --navy: #003070;
  --navy-light: #1e4999;
  --gold: #c0a010;
  --gold-light: #ddb52e;
  --bg: #fbfaf6;
  --bg-card: #ffffff;
  --text: #1a2332;
  --text-soft: #4a5568;
  --text-mute: #718096;
  --border: #e8eaee;
  --border-strong: #d4d8e0;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 48, 112, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 48, 112, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 48, 112, 0.10);
  --max: 1140px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--navy); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 48, 112, 0.04);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); transition: opacity .15s ease; }
.brand:hover { opacity: 0.82; text-decoration: none; }
.brand img { height: 56px; width: auto; display: block; }
.brand-text { font-size: 1.1rem; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-soft); font-weight: 500; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .2s ease, transform .15s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary,
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited { background: var(--navy); color: #ffffff; border-color: var(--navy); }
.btn-primary:hover,
a.btn-primary:hover,
a.btn-primary:focus { background: var(--navy-light); border-color: var(--navy-light); color: #ffffff; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary,
a.btn-secondary,
a.btn-secondary:link,
a.btn-secondary:visited { background: #ffffff; color: var(--navy); border-color: var(--border-strong); }
.btn-secondary:hover,
a.btn-secondary:hover,
a.btn-secondary:focus { background: #ffffff; border-color: var(--navy); color: var(--navy); box-shadow: var(--shadow-sm); }

.btn-gold,
a.btn-gold,
a.btn-gold:link,
a.btn-gold:visited { background: var(--gold); color: #ffffff; border-color: var(--gold); }
.btn-gold:hover,
a.btn-gold:hover,
a.btn-gold:focus { background: var(--gold-light); border-color: var(--gold-light); color: #ffffff; box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 80% -10%, rgba(192, 160, 16, 0.08), transparent 50%),
    radial-gradient(circle at 10% 110%, rgba(0, 48, 112, 0.06), transparent 55%),
    var(--bg);
  isolation: isolate;
  overflow: hidden;
}
.hero > .container { position: relative; z-index: 1; }

/* Hero-Hintergrund: zwei Bild-Layer mit dezentem Ken-Burns-Effekt
   (langsamer Zoom + Pan, Crossfade alle 80s). Aktiviert via Klasse
   `hero-with-bg` an <section class="hero"> und einer .hero-bg-Struktur. */
.hero.hero-with-bg .hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero.hero-with-bg .hero-bg-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  transform-origin: center center;
}
.hero.hero-with-bg .hero-bg-a {
  background-image: url("assets/hero-bg.jpg");
  animation: heroKenBurnsA 50s ease-in-out infinite,
             heroCrossfadeA 50s ease-in-out infinite;
}
.hero.hero-with-bg .hero-bg-b {
  background-image: url("assets/hero-bg2.jpg");
  animation: heroKenBurnsB 50s ease-in-out infinite,
             heroCrossfadeB 50s ease-in-out infinite;
}
.hero.hero-with-bg .hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
              rgba(251, 250, 246, 0.94) 0%,
              rgba(251, 250, 246, 0.60) 45%,
              rgba(251, 250, 246, 0.18) 100%);
  pointer-events: none;
}

/* 50s Cycle:
   0–20s    Bild A sichtbar, zoomt 1.00 → 1.30 (Zoom-In bis 25s/50%)
   20–25s   Crossfade A → B (5 s)
   25–45s   Bild B sichtbar, zoomt 1.30 → 1.00 (Zoom-Out)
   45–50s   Crossfade B → A (5 s)
   Während A invisible (50–100%) gleitet seine scale smooth zurück auf 1.00. */
@keyframes heroKenBurnsA {
  0%   { transform: scale(1.00); }
  50%  { transform: scale(1.30); }
  100% { transform: scale(1.00); }
}
@keyframes heroKenBurnsB {
  0%, 50% { transform: scale(1.30); }
  100%    { transform: scale(1.00); }
}
@keyframes heroCrossfadeA {
  0%, 40%  { opacity: 1; }   /* sichtbar 0–20s */
  50%, 90% { opacity: 0; }   /* unsichtbar 25–45s */
  100%     { opacity: 1; }   /* zurück bei 50s = 0% nächster Cycle */
}
@keyframes heroCrossfadeB {
  0%, 40%  { opacity: 0; }   /* unsichtbar 0–20s */
  50%, 90% { opacity: 1; }   /* sichtbar 25–45s */
  100%     { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-with-bg .hero-bg-a,
  .hero.hero-with-bg .hero-bg-b {
    animation: none;
  }
  .hero.hero-with-bg .hero-bg-b { opacity: 0; }
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero-lead { font-size: 1.2rem; color: var(--text-soft); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 28px; color: var(--text-mute); font-size: 0.92rem; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-meta span::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 8px; }

.hero-visual {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-lg);
  display: grid; gap: 16px;
}
.kpi {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--bg); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.kpi-label { font-size: 0.85rem; color: var(--text-mute); }
.kpi-value { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.kpi-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-top: 4px; }
.kpi-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--navy), var(--navy-light)); border-radius: 4px; }
.kpi-bar.warn > i { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ─── Sections ─────────────────────────────────────────── */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow { display: inline-block; padding: 6px 14px; background: rgba(0,48,112,0.06); color: var(--navy); border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.02em; }

/* Zickzack-Layout: 4 große Cards mit Bild + Inhalt, alternierend */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-body { order: 1; }

.feature-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #f0f3f8, #e8eaee);
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.feature-media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 48, 112, 0.06);
  pointer-events: none;
}
.feature-row:hover .feature-media {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 48, 112, 0.15);
}
.feature-media picture, .feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.feature-body { padding: 8px 0; }
.feature-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature-body h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.feature-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.feature-list {
  list-style: none; padding: 0; margin: 0;
}
.feature-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--text-soft);
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(192, 160, 16, 0.15);
}
.feature-list li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 11px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.benefits {
  position: relative;
  background: linear-gradient(180deg, #fff, var(--bg));
  isolation: isolate;
  overflow: hidden;
}
/* Subtile Schweizerkreuz-Watermark (links) */
.benefits::before {
  content: "";
  position: absolute;
  top: 50%; left: -120px;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='4' fill='%23dc0018'/><rect x='13.5' y='6' width='5' height='20' fill='%23ffffff'/><rect x='6' y='13.5' width='20' height='5' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}
/* Spiegelbildlich rechts unten — gibt Tiefe ohne aufdringlich zu sein */
.benefits::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -80px;
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='4' fill='%23dc0018'/><rect x='13.5' y='6' width='5' height='20' fill='%23ffffff'/><rect x='6' y='13.5' width='20' height='5' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.035;
  z-index: -1;
  pointer-events: none;
  transform: rotate(8deg);
}

/* Made-in-Switzerland-Badge über der Headline */
.ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.ch-badge svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-check {
  flex-shrink: 0; width: 32px; height: 32px;
  background: rgba(192, 160, 16, 0.12); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.benefit h4 { font-size: 1.05rem; margin: 0 0 4px; color: var(--navy); }
.benefit p { font-size: 0.95rem; margin: 0; }

/* ─── Pricing — Live-Rechner + Tarifstaffel ─────────────────────────────── */
.pricing-calc {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.pricing-calc::before {
  content: "";
  grid-column: 2;
  width: 1px;
  align-self: stretch;
  background: var(--border);
}
.pricing-calc-input label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
/* Eingabe-Zeile: − Button │ Input │ + Button */
.pricing-input-row {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: stretch;
}
.pricing-step {
  background: #ffffff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .15s ease;
  user-select: none;
  line-height: 1;
}
.pricing-step:hover {
  border-color: var(--navy);
  background: var(--bg);
}
.pricing-step:active {
  transform: scale(0.96);
}
.pricing-step:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(0, 48, 112, 0.12);
}

.pricing-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pricing-input-wrap input {
  flex: 1;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 72px 12px 18px;
  width: 100%;
  font-family: inherit;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-align: left;
}
.pricing-input-wrap input:focus {
  outline: none;
  border-color: var(--navy);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 48, 112, 0.08);
}
.pricing-input-suffix {
  position: absolute;
  right: 18px;
  color: var(--text-mute);
  font-size: 0.95rem;
  font-weight: 500;
  pointer-events: none;
}

/* Slider */
#pop-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) var(--slider-pct, 8%), var(--border) var(--slider-pct, 8%), var(--border) 100%);
  border-radius: 3px;
  outline: none;
  margin: 18px 0 4px;
  cursor: pointer;
}
#pop-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--navy);
  cursor: grab;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
#pop-slider::-webkit-slider-thumb:hover { transform: scale(1.1); box-shadow: var(--shadow-md); }
#pop-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
#pop-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--navy);
  cursor: grab;
  box-shadow: var(--shadow-sm);
}
#pop-slider:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 48, 112, 0.15);
}
.pricing-slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  padding: 0 2px;
}

.pricing-input-help {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--text-mute);
  min-height: 1.2em;
}
.pricing-input-help a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.pricing-input-help a:hover { color: var(--navy); }

/* „Auf Anfrage"-Result */
.pricing-on-request {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-calc-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-amount-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.pricing-amount-period {
  font-size: 0.92rem;
  color: var(--text-mute);
  margin-top: 6px;
}

/* Tarifstaffel + Inklusiv-Liste */
.pricing-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.pricing-tiers,
.pricing-includes {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.pricing-tiers h3,
.pricing-includes h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.pricing-tiers table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-tiers thead th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 8px 0 12px;
  border-bottom: 1.5px solid var(--border);
}
.pricing-tiers thead th:last-child { text-align: right; }
.pricing-tiers tbody td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.pricing-tiers tbody td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--navy);
}
.pricing-tiers tbody tr:last-child td { border-bottom: none; }
.pricing-min-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: rgba(192, 160, 16, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-soft);
}
.pricing-min-note strong { color: var(--navy); }

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-includes li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px; height: 20px;
  background: rgba(34, 197, 94, 0.12);
  color: #22a052;
  border-radius: 50%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 20px;
}

.pricing-bottom-cta {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 48, 112, 0.04), rgba(192, 160, 16, 0.04));
  border-radius: var(--radius);
}
.pricing-bottom-cta p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ─── Trust / CTA ─────────────────────────────────────────── */
.trust { background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item .num { font-size: 2.2rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.trust-item .lbl { color: var(--text-mute); font-size: 0.9rem; }

.cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.86); max-width: 580px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta .btn-gold { box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ─── Contact ─────────────────────────────────────────── */
.contact-card {
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center;
}
.contact-card a.email {
  display: inline-block; font-size: 1.25rem; font-weight: 600;
  margin: 12px 0; color: var(--navy);
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 48px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 32px;
}
.footer-brand-link img { height: 72px; width: auto; }
.footer-brand p { font-size: 0.9rem; color: var(--text-mute); margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mute); margin-bottom: 14px; }
.footer-col a { display: block; padding: 4px 0; color: var(--text-soft); font-size: 0.95rem; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-mute); font-size: 0.88rem;
}

/* ─── Legal pages (Impressum / Datenschutz) ─────────────────────────────────────────── */
.legal {
  max-width: 780px; margin: 0 auto; padding: 64px 24px;
}
.legal h1 { margin-bottom: 8px; }
.legal .muted { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.legal h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--text-soft); font-size: 1rem; }
.legal ul { padding-left: 22px; }
.legal a { word-break: break-word; }
.legal-back {
  display: inline-block; margin-bottom: 24px;
  font-size: 0.92rem; color: var(--text-mute);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .hero { padding: 88px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand img { height: 44px; }
  .footer-brand-link img { height: 56px; }
  .pricing-calc {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
  .pricing-calc::before { display: none; }
  .pricing-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-tiers, .pricing-includes { padding: 22px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.cta-only { display: flex; gap: 12px; }

  /* Feature-Rows: einspaltig, Bild immer oben */
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
  }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-row.reverse .feature-body { order: 1; }
  .feature-media { aspect-ratio: 16 / 10; }
  .feature-body h3 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .feature-media { border-radius: 14px; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
