/* ═══════════════════════════════════════════════════
   DokMarketing — index-v2.html Erweiterungen
   Lädt nach style.css. Überschreibt nur wo nötig.
═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   NAV — immer weiß mit blauem Text (auf Hero und beim Scrollen identisch)
───────────────────────────────────────────── */
#navbar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
#navbar .nav-logo-text   { color: var(--blue-dark) !important; }
#navbar .nav-links a     { color: var(--blue-dark) !important; }
#navbar .nav-links a:hover { color: var(--blue-mid) !important; }
#navbar .nav-links a::after { background: var(--blue-mid) !important; }
#navbar .hamburger span  { background: var(--blue-dark) !important; }
#navbar .btn-nav         { background: var(--blue-mid); color: var(--white); }
/* Akzent-Link bleibt im Mid-Blue (siehe .nav-link-accent unten) */

/* ─────────────────────────────────────────────
   NAV — Akzent-Link
───────────────────────────────────────────── */
.nav-link-accent {
  position: relative;
  color: var(--blue-mid) !important;
  font-weight: 600 !important;
}
.nav-link-accent::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 0 rgba(92, 184, 228, 0.7);
  animation: nav-pulse 2.4s infinite;
}
@keyframes nav-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(92,184,228,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(92,184,228,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,184,228,0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-link-accent::before { animation: none; }
}

/* ─────────────────────────────────────────────
   HERO — Solo-Pitch
───────────────────────────────────────────── */
.hero-badge--accent {
  background: linear-gradient(135deg, rgba(92,184,228,0.20), rgba(58,114,180,0.15));
  border: 1px solid rgba(58,114,180,0.30);
  color: var(--blue-dark);
}
.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5CB8E4;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(92,184,228,0.7);
  animation: nav-pulse 2.4s infinite;
}
.hero-headline--solo {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-headline-accent {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.hero-sub--solo strong {
  color: var(--blue-dark);
  font-weight: 700;
}
.hero-price-line {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--gray-body);
}
.hero-price-line strong {
  color: var(--blue-dark);
}
.hero-price-line a {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero CTA — umlaufende Shimmer-Outline */
.btn-shimmer-border {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 0;
}
.btn-shimmer-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    rgba(255,255,255,0.95) 320deg,
    rgba(92,184,228,1) 340deg,
    transparent 360deg
  );
  animation: btn-shimmer-spin 2.6s linear infinite;
}
.btn-shimmer-border::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: var(--blue-light);
  transition: background 0.25s ease;
}
.btn-shimmer-border:hover::after {
  background: #79caea;
}
.btn-shimmer-label {
  position: relative;
  z-index: 1;
}
@keyframes btn-shimmer-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-shimmer-border::before { animation: none; }
}

/* ─────────────────────────────────────────────
   CASE STUDY — diezahnarztpraxis
───────────────────────────────────────────── */
.case-card {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow:
    0 30px 70px -20px rgba(30,58,110,0.18),
    0 8px 22px -10px rgba(30,58,110,0.10);
  border: 1px solid rgba(58,114,180,0.10);
  max-width: 1080px;
  margin: 0 auto;
}
.case-card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(58,114,180,0.12);
  flex-wrap: wrap;
}
.case-card-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.case-card-meta {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}
.case-card-meta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.case-card-meta span {
  font-size: 0.88rem;
  color: var(--gray-body);
  margin-top: 2px;
}
.case-card-links {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.case-link:hover {
  transform: translateY(-2px);
  background: var(--blue-mid);
  box-shadow: 0 8px 20px rgba(30,58,110,0.22);
}

.case-card-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.case-quote {
  position: relative;
  background: linear-gradient(160deg, #F4F8FC 0%, #E8F1F9 100%);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-quote-mark {
  position: absolute;
  top: 12px;
  left: 14px;
}
.case-quote p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--blue-dark);
  font-style: italic;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.case-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(58,114,180,0.18);
}
.case-quote-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(30,58,110,0.20);
}
.case-quote-author strong {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.case-quote-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-body);
}

.case-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.case-stat-group-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}
.case-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}
.case-stat {
  background: white;
  border: 1px solid rgba(58,114,180,0.14);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(30,58,110,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.case-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(58,114,180,0.30);
  box-shadow: 0 10px 24px rgba(30,58,110,0.10);
}
.case-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-stat-label {
  display: block;
  font-size: 0.74rem;
  color: var(--gray-body);
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .case-card { padding: 28px 22px; border-radius: 22px; }
  .case-card-body { grid-template-columns: 1fr; gap: 28px; }
  .case-card-head { gap: 14px; }
  .case-card-links { width: 100%; }
}

/* Kontakt — Lukas Portrait-Karte */
.cta-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.kontakt-lukas {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.kontakt-lukas img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5);
}
.kontakt-lukas figcaption {
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  line-height: 1.3;
}
.kontakt-lukas figcaption strong {
  display: block;
  font-size: 1.05rem;
  color: white;
}
.kontakt-lukas figcaption span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 2px;
}
@media (max-width: 760px) {
  .cta-header-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .kontakt-lukas img { width: 130px; height: 130px; }
}

/* Hero — Trust-Checkmarks weiter weg vom Block darüber */
.hero-trust {
  margin-top: 28px;
}
.hero-price-line {
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────
   WAS IST SOLO — Text links, 3 Bilder untereinander rechts
───────────────────────────────────────────── */
.solo-explain-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.solo-explain-text h2 {
  margin-bottom: 18px;
}
.solo-explain-lede {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray-body);
  margin-bottom: 36px;
}
.solo-explain-lede strong {
  color: var(--blue-dark);
}

/* Stack rechts — 3 Bilder, überlappend, ungecropt */
.solo-explain-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -22px; /* Fallback ignoriert; Überlappung über margin-top */
}
.solo-img-tile {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 50px -16px rgba(30,58,110,0.35),
    0 8px 18px -6px rgba(30,58,110,0.12);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  background: white;
}
.solo-img-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* Leichte Rotation + negative Margins für Überlappung */
.solo-img-tile--1 {
  transform: rotate(-1.5deg);
  z-index: 3;
}
.solo-img-tile--2 {
  margin-top: -28px;
  margin-left: 32px;
  transform: rotate(2deg);
  z-index: 2;
}
.solo-img-tile--3 {
  margin-top: -28px;
  margin-right: 28px;
  transform: rotate(-2deg);
  z-index: 1;
}
.solo-img-tile:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow:
    0 36px 72px -20px rgba(30,58,110,0.50),
    0 14px 28px -10px rgba(30,58,110,0.20);
  z-index: 5;
}

@media (max-width: 900px) {
  .solo-explain-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solo-explain-stack {
    max-width: 360px;
    margin: 0 auto;
  }
}
/* Solo Process — exakt im Ablauf-Stil (Ring-Glow um den Kreis) */
.solo-process {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.solo-process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.solo-process-num {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(92, 184, 228, 0.18);
}
.solo-process-body strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 6px;
  padding-top: 14px;
}
.solo-process-body span {
  display: block;
  color: var(--gray-body);
  font-size: 0.95rem;
  line-height: 1.65;
}
.solo-process-connector {
  width: 2px;
  height: 32px;
  background: rgba(92, 184, 228, 0.35);
  margin: 0 29px;
}
/* (Alte solo-explain-visual / solo-stack-* Styles entfernt — Layout über solo-image-strip) */

/* ─────────────────────────────────────────────
   BOUNCE-CARDS — mit Mockup-Bild statt Icon
───────────────────────────────────────────── */
.bounce-card--mock {
  padding: 0 0 180px;
  overflow: hidden;
}
.bounce-card-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-bottom: 16px;
}
.bounce-card-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bounce-card-mock--contain {
  background: linear-gradient(160deg, #F4F8FC 0%, #E5EEF7 100%);
}
.bounce-card-mock--contain img {
  object-fit: contain;
  padding: 14px;
}
.bounce-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--blue-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(30,58,110,0.10);
}
.bounce-card-tag--accent {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: white;
}
.bounce-card--mock h3 {
  padding: 0 28px;
}
.bounce-card--mock .bounce-card-sub {
  padding: 0 28px;
  margin-top: 6px;
}
.bounce-card--mock .bounce-card-panel {
  left: 16px;
  right: 16px;
}

/* ─────────────────────────────────────────────
   MARKETING-FUNDAMENT — Dark Section
───────────────────────────────────────────── */
.fundament-section {
  position: relative;
  overflow: clip;        /* statt hidden — sticky bleibt funktionsfähig */
}
.fundament-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,184,228,0.15), transparent 70%);
  pointer-events: none;
}
.fundament-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.fundament-visual {
  position: sticky;
  top: 100px;
  align-self: start;
}
.fundament-content h2 {
  color: white;
  margin-bottom: 18px;
}
.fundament-content > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.fundament-content > p strong {
  color: white;
  font-weight: 700;
}
.fundament-emphasis {
  border-left: 3px solid var(--blue-light);
  padding-left: 16px;
  font-style: italic;
  margin-bottom: 28px !important;
}

.fundament-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fundament-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fundament-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
}
.fundament-list strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.fundament-list span {
  display: block;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
  line-height: 1.6;
}

.fundament-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: rgba(92,184,228,0.10);
  border: 1px solid rgba(92,184,228,0.30);
  border-radius: 14px;
}
.fundament-price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
}
.fundament-price-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.fundament-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px -16px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .fundament-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fundament-visual {
    position: static;
  }
}

/* ─────────────────────────────────────────────
   FUNNEL TEASER 1 — WEBSEITEN-VORSCHAU
───────────────────────────────────────────── */
.funnel-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 100%);
  overflow: hidden;
}
.funnel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.funnel-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.funnel-bg-orb--1 {
  width: 360px;
  height: 360px;
  background: rgba(92,184,228,0.35);
  top: -100px;
  left: -120px;
}
.funnel-bg-orb--2 {
  width: 460px;
  height: 460px;
  background: rgba(58,114,180,0.25);
  bottom: -160px;
  right: -120px;
}
.funnel-section .container {
  position: relative;
  z-index: 1;
}
.funnel-header {
  margin-bottom: 56px;
}
.funnel-header h2 {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Vorher/Nachher — Browser-Frame Variante */
.compare-mockup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 48px;
}
.compare-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.compare-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.compare-label--before {
  color: #94704A;
  background: rgba(245, 188, 132, 0.20);
  border: 1px solid rgba(245, 188, 132, 0.45);
}
.compare-label--after {
  color: white;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  box-shadow: 0 4px 14px rgba(30,58,110,0.25);
}

/* Browser-Mockup-Frame (für Lukas-Bilder) */
.compare-frame--browser {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 24px 50px rgba(30,58,110,0.30))
          drop-shadow(0 8px 18px rgba(30,58,110,0.10));
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.compare-frame--browser:hover {
  transform: translateY(-6px);
}
.compare-frame--browser img {
  display: block;
  width: 100%;
  height: auto;
}
.compare-side--after .compare-frame--browser {
  filter: drop-shadow(0 30px 60px rgba(58,114,180,0.40))
          drop-shadow(0 10px 22px rgba(58,114,180,0.15));
}

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .compare-mockup {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 340px;
  }
  .compare-arrow svg {
    transform: rotate(90deg);
  }
}

/* USP-Pills */
.funnel-usp-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 880px;
  list-style: none;
  padding: 0;
}
.funnel-usp-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 1px solid rgba(58,114,180,0.18);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-dark);
  box-shadow: 0 2px 8px rgba(30,58,110,0.04);
}
.usp-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  display: inline-block;
}

/* Steps */
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 48px;
}
.funnel-step {
  display: flex;
  gap: 16px;
  background: white;
  padding: 22px 24px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(58,114,180,0.10);
  box-shadow: 0 4px 14px rgba(30,58,110,0.04);
}
.funnel-step-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.funnel-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 4px;
}
.funnel-step p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray-body);
  margin: 0;
}

@media (max-width: 860px) {
  .funnel-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* CTA-Row */
.funnel-cta-row {
  text-align: center;
  margin-top: 8px;
}
.funnel-cta-btn {
  font-size: 1.05rem;
  padding: 18px 36px;
  animation: funnel-cta-breathe 3.4s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, box-shadow;
}
.funnel-cta-btn:hover {
  animation-play-state: paused;
}
@media (max-width: 600px) {
  .funnel-cta-btn {
    font-size: 0.95rem;
    padding: 14px 22px;
    width: 100%;
    max-width: 320px;
    white-space: normal;
    line-height: 1.25;
  }
}
@keyframes funnel-cta-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(58,114,180,0.22);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 14px 36px rgba(58,114,180,0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .funnel-cta-btn { animation: none; }
}
.funnel-micro {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray-body);
}

/* ─────────────────────────────────────────────
   TARIFE-SECTION
───────────────────────────────────────────── */
.tarife-section {
  background: linear-gradient(180deg, #F4F8FC 0%, #FFFFFF 100%);
}
.tarife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.tarif-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(58,114,180,0.12);
  box-shadow: 0 6px 24px rgba(30,58,110,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,58,110,0.12);
}
.tarif-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5BC84, #E89B5C);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(232,155,92,0.35);
}
.tarif-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--blue-mid);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.tarif-card-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0 0 8px;
  line-height: 1.1;
}
.tarif-card-target {
  font-size: 0.88rem;
  color: var(--gray-body);
  margin: 0 0 24px;
  line-height: 1.5;
}
.tarif-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.price-from {
  font-size: 0.85rem;
  color: var(--gray-body);
  font-weight: 500;
}
.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}
.price-period {
  font-size: 0.92rem;
  color: var(--gray-body);
  font-weight: 500;
}
.tarif-card-trust {
  font-size: 0.78rem;
  color: var(--gray-body);
  line-height: 1.55;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(58,114,180,0.10);
}
.tarif-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tarif-card-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--blue-dark);
  line-height: 1.5;
}
.tarif-card-features li svg {
  flex: 0 0 auto;
  margin-top: 3px;
}
.tarif-feature--muted {
  color: var(--gray-body) !important;
  font-style: italic;
  padding-left: 26px;
}
.tarif-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Featured Card (Praxis Standard) — dark accent */
.tarif-card--featured {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  border: 1px solid rgba(92,184,228,0.30);
  color: white;
  transform: scale(1.04);
}
.tarif-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.tarif-card--featured .tarif-card-eyebrow,
.tarif-card--featured .tarif-card-name,
.tarif-card--featured .price-amount {
  color: white;
}
.tarif-card--featured .tarif-card-target,
.tarif-card--featured .tarif-card-trust,
.tarif-card--featured .price-from,
.tarif-card--featured .price-period,
.tarif-card--featured .tarif-card-features li {
  color: rgba(255,255,255,0.85);
}
.tarif-card--featured .tarif-card-trust {
  border-bottom-color: rgba(255,255,255,0.15);
}
.tarif-cta--featured {
  background: white !important;
  color: var(--blue-dark) !important;
}
.tarif-cta--featured:hover {
  background: var(--blue-light) !important;
  color: white !important;
}

.tarife-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--gray-body);
}

@media (max-width: 980px) {
  .tarife-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 32px;
  }
  .tarif-card--featured {
    transform: none;
  }
  .tarif-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ─────────────────────────────────────────────
   FUNNEL TEASER 2 — CONTENT-PAKET
───────────────────────────────────────────── */
.funnel-paket-section {
  background: white;
}
.funnel-paket-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #F4F8FC 0%, #E8F1FA 100%);
  border-radius: 32px;
  padding: 56px 56px;
  border: 1px solid rgba(58,114,180,0.10);
  box-shadow: 0 12px 36px -10px rgba(30,58,110,0.10);
}
.funnel-paket-text .section-label {
  display: inline-block;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.funnel-paket-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--blue-dark);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
}
.funnel-paket-text > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-body);
  margin: 0 0 24px;
}
.funnel-paket-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.funnel-paket-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--blue-dark);
  font-weight: 500;
}
.funnel-paket-bullets svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.funnel-paket-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-paket-visual img {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px -20px rgba(30,58,110,0.35);
  transform: rotate(-1deg);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.funnel-paket-visual img:hover {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 900px) {
  .funnel-paket-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }
  .funnel-paket-visual {
    order: -1;
  }
  .funnel-paket-visual img {
    max-width: 420px;
    transform: none;
  }
}
