/* ================================================
   AnaCalling.com – Design System
   © Webunox – Alle Rechte vorbehalten
   ================================================ */

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

/* --- Design Tokens --- */
:root {
  --primary:        #1B3A5C;
  --primary-dark:   #0F2A44;
  --primary-light:  #2D5F9E;
  --primary-50:     #EFF6FF;
  --primary-100:    #DBEAFE;
  --teal:           #0D9488;
  --teal-dark:      #0F766E;
  --teal-light:     #14B8A6;
  --teal-50:        #F0FDFA;
  --green:          #10B981;
  --green-dark:     #059669;
  --green-50:       #ECFDF5;
  --orange:         #F59E0B;
  --orange-50:      #FFFBEB;
  --red:            #EF4444;
  --red-50:         #FEF2F2;
  --white:          #FFFFFF;
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-300:       #CBD5E1;
  --gray-400:       #94A3B8;
  --gray-500:       #64748B;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-800:       #1E293B;
  --gray-900:       #0F172A;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-xs:      0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:      0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow:         0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md:      0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg:      0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl:      0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-primary: 0 8px 30px rgba(27,58,92,.25);
  --shadow-teal:    0 8px 30px rgba(13,148,136,.25);
  --r-sm:  4px;
  --r:     8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full:9999px;
  --t-fast: .15s ease;
  --t:      .3s ease;
  --t-slow: .5s ease;
}

/* --- Reset --- */
*, *::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: 1rem; color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; }
.section { padding: 5rem 0; }
.section--lg { padding: 7rem 0; }
.section--sm { padding: 3rem 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--white); }
.section--teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--teal); margin-bottom: 1rem;
}
.section-label--white { color: rgba(255,255,255,.8); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.02em; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 600px; line-height: 1.75; }
.section--dark .section-subtitle,.section--teal .section-subtitle { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }
.text-teal { color: var(--teal); }
.divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--teal)); border-radius: var(--r-full); margin: 1rem 0; }
.divider--center { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.75rem; font-size: 1rem; font-weight: 600;
  border-radius: var(--r-full); transition: all var(--t); cursor: pointer;
  white-space: nowrap; border: 2px solid transparent; text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--teal); color: var(--white); box-shadow: var(--shadow-teal); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(13,148,136,.35); }
.btn--secondary { background: var(--white); color: var(--primary); border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--primary); color: var(--white); box-shadow: var(--shadow-primary); }
.btn--dark:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn--lg { padding: 1.125rem 2.25rem; font-size: 1.125rem; }
.btn--sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn--full { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Breadcrumb (Branchen-Landingpages; via components.php unter die Nav injiziert) --- */
.ac-breadcrumb { width: 100%; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-200); }
.ac-breadcrumb__list { display: flex; align-items: center; gap: .5rem; flex-wrap: nowrap; max-width: 1200px; margin: 0 auto; padding: .7rem 1.5rem; list-style: none; }
.ac-breadcrumb__list > li { flex-shrink: 0; }
.ac-breadcrumb__list > li:last-child { flex-shrink: 1; min-width: 0; }
.ac-breadcrumb__sep { display: flex; align-items: center; color: var(--gray-300); }
.ac-breadcrumb__link { font-size: .8125rem; font-weight: 500; color: var(--gray-500); white-space: nowrap; text-decoration: none; transition: color var(--t-fast); }
.ac-breadcrumb__link:hover { color: var(--teal); }
.ac-breadcrumb__current { display: block; font-size: .8125rem; font-weight: 600; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Navigation --- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); transition: all var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: .625rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
}
.nav__logo-mark svg { width: 22px; height: 22px; color: white; }
.nav__logo-text { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.nav__logo-text span { color: var(--teal); }
.nav__links { display: flex; align-items: center; gap: .25rem; flex: 1; justify-content: center; }
.nav__link {
  padding: .5rem .75rem; font-size: .875rem; font-weight: 500; color: var(--gray-600);
  border-radius: var(--r); transition: all var(--t-fast); white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--gray-100); }
.nav__link--cta { color: var(--teal) !important; font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--t-fast); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav__mobile {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 999;
  padding: 1.5rem; overflow-y: auto; flex-direction: column;
}
.nav__mobile.open { display: flex; }
.nav__mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.nav__mobile-close { font-size: 1.75rem; color: var(--gray-400); cursor: pointer; line-height: 1; }
.nav__mobile-links { display: flex; flex-direction: column; gap: .25rem; }
.nav__mobile-link {
  padding: 1rem; font-size: 1.125rem; font-weight: 500; color: var(--gray-700);
  border-radius: var(--r); border-bottom: 1px solid var(--gray-100); transition: all var(--t-fast);
}
.nav__mobile-link:hover { color: var(--primary); background: var(--gray-50); }
.nav__mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

/* --- Branchen Mega-Menue (Desktop) --- */
.nav__inner { position: relative; }
.nav__mega-wrap { position: static; }
.nav__mega-trigger { display: inline-flex; align-items: center; gap: .25rem; cursor: pointer; }
.nav__mega-caret { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav__mega-wrap.is-open .nav__mega-caret { transform: rotate(180deg); }
.nav__mega-wrap.is-open .nav__mega-trigger { color: var(--primary); background: var(--gray-100); }
.nav__mega {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 1001;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); box-shadow: var(--shadow-xl); padding: 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav__mega-wrap.is-open .nav__mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1.75rem; }
.nav__mega__col { min-width: 0; }
.nav__mega__cat {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--teal); margin-bottom: .5rem; padding: 0 .5rem;
}
.nav__mega__opt {
  display: flex; align-items: center; gap: .6rem; padding: .5rem; border-radius: var(--r);
  font-size: .9rem; color: var(--gray-700); transition: all var(--t-fast); text-decoration: none;
}
.nav__mega__opt:hover { background: var(--gray-100); color: var(--primary); transform: translateX(2px); }
.nav__mega__ico { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.nav__mega__name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav__mega__badge {
  font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  color: var(--teal-dark); background: var(--teal-50); border: 1px solid rgba(13,148,136,.25);
  padding: .1rem .4rem; border-radius: var(--r-full); flex-shrink: 0;
}
.nav__mega__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-100);
}
.nav__mega__all { font-weight: 600; color: var(--teal); font-size: .9rem; }
.nav__mega__all:hover { color: var(--teal-dark); }
.nav__mega__other { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--gray-500); font-weight: 500; }
.nav__mega__other:hover { color: var(--primary); }
.nav__mega__other svg { width: 14px; height: 14px; }

/* --- Branchen-Akkordeon (Mobile) --- */
.nav__mobile-acc { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__mobile-acc-caret { width: 18px; height: 18px; color: var(--gray-400); transition: transform var(--t-fast); }
.nav__mobile-acc-wrap.open .nav__mobile-acc-caret { transform: rotate(180deg); }
.nav__mobile-sub { display: none; flex-direction: column; padding: .25rem 0 .5rem .75rem; }
.nav__mobile-acc-wrap.open .nav__mobile-sub { display: flex; }
.nav__mobile-sublink {
  padding: .65rem .75rem; font-size: 1rem; color: var(--gray-600);
  border-radius: var(--r); transition: all var(--t-fast);
}
.nav__mobile-sublink:hover { color: var(--primary); background: var(--gray-50); }
.nav__mobile-sublink--all { color: var(--teal); font-weight: 600; margin-top: .25rem; }

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 55%, #f0fdf9 100%);
  padding: 5rem 0 6rem; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,58,92,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; text-align: center; }
.hero__label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-50); color: var(--teal-dark);
  padding: .375rem 1rem; border-radius: var(--r-full); font-size: .875rem; font-weight: 600;
  margin-bottom: 1.5rem; border: 1px solid rgba(13,148,136,.2);
}
.hero__dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.75rem); font-weight: 900; line-height: 1.08;
  color: var(--gray-900); margin-bottom: 1.5rem; letter-spacing: -.025em;
}
.hero__title .highlight { color: var(--teal); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-500); line-height: 1.75;
  margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__trust { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: .875rem; color: var(--gray-400); }
.hero__trust-item { display: flex; align-items: center; gap: .375rem; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--teal); }
.hero__video-wrap { margin-top: 4rem; position: relative; z-index: 1; }
.hero__video {
  background: var(--gray-900); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative; aspect-ratio: 16/9;
  max-width: 960px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,.1);
}
/* --- Hero: Text links, Foto rechts (Branchen-Landingpages) --- */
.hero--split { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.hero--split::before, .hero--split::after { display: none; }          /* dekorative Radials aus */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right 30%; display: block; }
.hero__bg::after {   /* gerichteter Scrim: links deckend (Text lesbar), rechts frei (Person sichtbar) */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, #fff 32%, rgba(255,255,255,.88) 46%, rgba(255,255,255,.42) 60%, rgba(255,255,255,.06) 78%, rgba(255,255,255,0) 92%);
}
.hero--split .hero__content { position: relative; z-index: 1; max-width: 560px; margin: 0; text-align: left; }
.hero--split .hero__subtitle { margin-left: 0; margin-right: 0; }
.hero--split .hero__actions,
.hero--split .hero__trust,
.hero--split .trust-strip { justify-content: flex-start; }

/* Demo-Video: eigener Block direkt unter dem Hero */
.hero-demo { padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.hero-demo .hero__video-wrap { margin-top: 0; }

@media (max-width: 940px) {
  /* Mobil: kein Hero-Foto (wie Homepage) → Headline, Angebot & CTA sofort sichtbar */
  .hero--split .hero__bg { display: none; }
  .hero--split .hero__content { max-width: none; }
}

/* Kanzlei (zwei Personen): Foto nach rechts versetzt + weicher, breiter Verlauf
   nach links → sieht aus wie der Schleier der anderen, zeigt aber Mann UND Frau. */
.hero--duo { padding: clamp(3.5rem, 6vw, 5.5rem) 0; background: #fff; position: relative; overflow: hidden; }
.hero--duo::before, .hero--duo::after { display: none; }
.hero--duo .hero__bg { position: absolute; top: 0; right: 0; bottom: 0; left: auto; width: 70%; z-index: 0; overflow: hidden; pointer-events: none; }
.hero--duo .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.hero--duo .hero__bg::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, #fff 12%, rgba(255,255,255,.74) 22%, rgba(255,255,255,.26) 37%, rgba(255,255,255,.1) 60%, rgba(255,255,255,.1) 100%); }
.hero--duo .hero__content { position: relative; z-index: 1; max-width: 460px; margin: 0; text-align: left; }
.hero--duo .hero__title { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.hero--duo .hero__subtitle { margin-left: 0; margin-right: 0; }
.hero--duo .hero__actions,
.hero--duo .hero__trust,
.hero--duo .trust-strip { justify-content: flex-start; }
@media (max-width: 1040px) {
  /* Mobil/Tablet: kein Hero-Foto (wie Homepage) → Text & CTA sofort sichtbar */
  .hero--duo .hero__bg { display: none; }
  .hero--duo .hero__content { max-width: none; }
  .hero--duo .hero__title { font-size: clamp(1.9rem, 5vw, 2.6rem); }
}

.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 2rem;
  background: linear-gradient(135deg, #0f2a44 0%, #1a3a5c 45%, #0d9488 100%);
  color: white;
}
.video-play {
  width: 80px; height: 80px; background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; cursor: pointer; transition: all var(--t);
  border: 2px solid rgba(255,255,255,.35);
}
.video-play:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }
.video-play svg { width: 32px; height: 32px; color: white; margin-left: 4px; }
.video-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.video-desc { font-size: .875rem; opacity: .7; max-width: 480px; }

/* --- Trust Bar --- */
.trust-bar { background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 1.5rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .625rem; font-size: .875rem; font-weight: 500; color: var(--gray-500); }
.trust-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

/* --- Problem Section --- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.problem-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 1.5rem; transition: all var(--t); position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #f97316); opacity: 0; transition: opacity var(--t);
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.problem-card__emoji { font-size: 2rem; margin-bottom: 1rem; }
.problem-card__title { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .5rem; }
.problem-card__text { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* --- Feature Grid --- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  padding: 2rem; transition: all var(--t);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary-50), var(--teal-50));
  border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
}
.feature-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; color: var(--gray-900); }
.feature-card__text { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* --- Process Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--primary-100), var(--teal-50)); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 16px rgba(13,148,136,.3);
}
.step__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; color: var(--gray-900); }
.step__text { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* --- Before / After --- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.ba-card { border-radius: var(--r-xl); overflow: hidden; }
.ba-card--before { background: var(--gray-50); border: 1px solid var(--gray-200); }
.ba-card--after { background: linear-gradient(160deg, var(--primary-50), var(--teal-50)); border: 1px solid rgba(13,148,136,.2); }
.ba-card__header {
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: .75rem;
  border-bottom: 1px solid var(--gray-200);
}
.ba-card--after .ba-card__header { border-bottom-color: rgba(13,148,136,.2); }
.ba-card__header-badge {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem;
}
.ba-card--before .ba-card__header-badge { background: var(--red-50); }
.ba-card--after .ba-card__header-badge { background: var(--green-50); }
.ba-card__header-title { font-weight: 700; font-size: 1.0625rem; }
.ba-card--before .ba-card__header-title { color: var(--gray-700); }
.ba-card--after .ba-card__header-title { color: var(--primary); }
.ba-list { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.ba-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--gray-600); }
.ba-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.ba-card--before .ba-dot { background: var(--red-50); color: var(--red); }
.ba-card--after .ba-dot { background: var(--green-50); color: var(--green); }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-xl);
  padding: 2rem; position: relative; transition: all var(--t);
  /* Sprungziel der Rechner-Kacheln — Abstand für die fixierte Nav (72px). */
  scroll-margin-top: 100px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card--featured {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,148,136,.1), var(--shadow-xl);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white;
  padding: .25rem 1.25rem; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.pricing-card__name { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .375rem; }
.pricing-card__tagline { font-size: .875rem; color: var(--gray-400); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-card__price { margin-bottom: 1.5rem; }
.pricing-card__from { font-size: .8125rem; color: var(--gray-400); margin-bottom: .25rem; }
.pricing-card__amount { font-size: 3rem; font-weight: 900; color: var(--gray-900); line-height: 1; }
.pricing-card__period { font-size: 1rem; color: var(--gray-400); font-weight: 400; }
.pricing-card__features {
  display: flex; flex-direction: column; gap: .75rem;
  padding-top: 1.5rem; border-top: 1px solid var(--gray-100); margin-bottom: 2rem;
}
.pf { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--gray-600); line-height: 1.5; }
.pf--highlight { font-weight: 600; color: var(--gray-800); }
.pf__check {
  width: 20px; height: 20px; background: var(--green-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: .65rem; font-weight: 900; margin-top: 1px;
}
.pf__check--pro { background: rgba(13,148,136,.15); color: var(--teal); }
.compare-pro { background: rgba(13,148,136,.12) !important; font-weight: 700; }
.pricing-slot {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 1rem; padding: .625rem 1rem; background: var(--gray-50); border-radius: var(--r);
  font-size: .75rem; color: var(--gray-500);
}
.slot-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.slot-dot--green { background: var(--green); }
.slot-dot--orange { background: var(--orange); }
.slot-dot--red { background: var(--red); }

/* --- Trial Banner --- */
.trial-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0f4c6e 100%);
  border-radius: var(--r-xl); padding: 2rem 2.5rem; margin-bottom: 2.5rem;
  color: var(--white); position: relative; overflow: hidden;
}
.trial-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: rgba(13,148,136,.15); border-radius: 50%;
}
.trial-banner__badge {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: var(--r-full); margin-bottom: 1.25rem;
}
.trial-banner__content {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.trial-banner__title {
  font-size: 1.375rem; font-weight: 800; line-height: 1.3; margin-bottom: .5rem; color: var(--white);
}
.trial-banner__sub { font-size: .875rem; color: rgba(255,255,255,.7); }
.trial-banner__features {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem;
}
.trial-feat { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.85); }
.trial-feat__check {
  width: 18px; height: 18px; background: rgba(13,148,136,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 900; color: #5eead4; flex-shrink: 0;
}

/* --- Pricing card volume line --- */
.pricing-card__volume {
  font-size: .8125rem; font-weight: 600; color: var(--teal);
  margin-bottom: 1.25rem; margin-top: -.75rem;
}

/* --- Overage Box --- */
.overage-box {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-xl);
  padding: 2rem; margin-top: 2rem; text-align: center;
}
.overage-box__title { font-size: 1.125rem; font-weight: 800; color: var(--gray-900); margin-bottom: .5rem; }
.overage-box__sub { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.75rem; }
.overage-grid {
  display: flex; justify-content: center; align-items: stretch; gap: 1rem; flex-wrap: wrap;
}
.overage-item {
  background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 1.25rem 2rem; display: flex; flex-direction: column; align-items: center; gap: .375rem;
  min-width: 160px; transition: border-color .2s ease, box-shadow .2s ease;
}
.overage-item:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.overage-item--best {
  border-color: var(--teal); background: rgba(13,148,136,.04); position: relative;
}
.overage-item__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white); font-size: .7rem; font-weight: 700;
  white-space: nowrap; padding: .2rem .75rem; border-radius: var(--r-full);
}
.overage-item__calls { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.overage-item__price { font-size: 1.625rem; font-weight: 900; color: var(--teal); }

/* --- Comparison Table --- */
.compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 2rem; }
.compare-table table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th, .compare-table td {
  padding: .875rem 1.25rem; text-align: center; border-bottom: 1px solid var(--gray-100);
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left; font-weight: 500; color: var(--gray-700);
}
.compare-table th { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); background: var(--gray-50); }
.compare-table tbody tr:last-child td { border-bottom: none; padding-top: 1.25rem; }
.compare-table tbody tr:hover td { background: var(--gray-50); }
.compare-table td.compare-featured { background: rgba(13,148,136,.05); font-weight: 600; color: var(--teal); }
.compare-table th.compare-featured { background: rgba(13,148,136,.1); color: var(--teal); }

/* --- Impact Points (Problem / Lösung) --- */
.impact-points { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.impact-point {
  display: flex; gap: 2.5rem; align-items: flex-start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--gray-200);
}
.impact-point:last-child { border-bottom: none; }
.impact-point__marker {
  font-size: 3rem; font-weight: 900; color: var(--gray-200);
  line-height: 1; flex-shrink: 0; width: 64px; text-align: right;
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}
.impact-point__marker--teal { color: var(--teal); opacity: .35; }
.impact-point__title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .625rem; line-height: 1.3; }
.impact-point__text { font-size: .9375rem; color: var(--gray-500); line-height: 1.75; margin: 0; }
.impact-points--solution .impact-point__title { color: var(--primary); }

/* --- Forwarding / Weiterleitung --- */
.forwarding-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem;
}
.forwarding-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--gray-50); border-radius: var(--r-xl); padding: 1.75rem;
  border: 1px solid var(--gray-100);
}
.forwarding-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; font-weight: 900; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.forwarding-step__title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .375rem; }
.forwarding-step__text { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

.forwarding-modes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.forwarding-mode {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-xl);
  padding: 1.5rem 1.25rem; text-align: center; position: relative;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.forwarding-mode:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.forwarding-mode--active { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.forwarding-mode__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: .7rem; font-weight: 700;
  padding: .2rem .75rem; border-radius: var(--r-full); white-space: nowrap;
}
.forwarding-mode__icon { font-size: 2rem; margin-bottom: .75rem; }
.forwarding-mode strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; }
.forwarding-mode p { font-size: .8125rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* --- Forwarding Featured (Dauerhaft) --- */
.forwarding-mode-featured {
  background: linear-gradient(135deg, rgba(13,148,136,.08) 0%, rgba(13,148,136,.04) 100%);
  border: 2px solid var(--teal); border-radius: var(--r-xl);
  padding: 2rem 2.5rem; text-align: center; margin-top: 1.25rem;
  box-shadow: 0 0 0 4px rgba(13,148,136,.08);
}
.forwarding-mode-featured__badge {
  display: inline-block; background: var(--teal); color: white;
  font-size: .75rem; font-weight: 700; padding: .3rem 1rem;
  border-radius: var(--r-full); margin-bottom: 1rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.forwarding-mode-featured__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.forwarding-mode-featured__title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .75rem; }
.forwarding-mode-featured__text { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* --- Phone Number Overlay --- */
.phone-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.phone-overlay.open { opacity: 1; pointer-events: auto; }
.phone-overlay__card {
  background: white; border-radius: var(--r-2xl); padding: 2.5rem 2rem;
  max-width: 420px; width: 90%; text-align: center;
  box-shadow: var(--shadow-xl); transform: scale(.95); position: relative;
  transition: transform .25s ease;
}
.phone-overlay.open .phone-overlay__card { transform: scale(1); }
.phone-overlay__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  cursor: pointer; font-size: 1.5rem; color: var(--gray-400); line-height: 1;
  padding: .25rem; transition: color .15s;
}
.phone-overlay__close:hover { color: var(--gray-700); }
.phone-overlay__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.phone-overlay__title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: .5rem; }
.phone-overlay__sub { font-size: .9375rem; color: var(--gray-500); margin-bottom: 1.25rem; line-height: 1.65; }
.phone-overlay__number {
  font-size: 1.25rem; font-weight: 900; color: var(--teal);
  letter-spacing: .02em; background: var(--teal-50);
  border-radius: var(--r-lg); padding: .75rem 1.5rem; margin-bottom: 1.5rem; display: block;
  white-space: nowrap;
}

/* --- Bonus Stack --- */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.bonus-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all var(--t);
}
.bonus-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bonus-card__num {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 800;
}
.bonus-card__title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .375rem; }
.bonus-card__text { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* --- Countdown --- */
.countdown-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--r-xl); padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.countdown-label { font-size: .8125rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.countdown-title { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.75rem; }
.countdown-timer { display: flex; justify-content: center; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cdu { text-align: center; }
.cdu__num { font-size: clamp(2.5rem, 6vw, 3.75rem); font-weight: 900; color: var(--primary); line-height: 1; min-width: 72px; display: block; font-variant-numeric: tabular-nums; }
.cdu__label { font-size: .75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.cd-sep { font-size: 2.5rem; font-weight: 900; color: var(--gray-300); line-height: 1; padding-top: 6px; }

/* --- Guarantees --- */
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.guarantee-card {
  background: var(--white); border-radius: var(--r-xl); padding: 2rem; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: all var(--t);
  position: relative; overflow: hidden;
}
.guarantee-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--teal)); }
.guarantee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.guarantee-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.guarantee-card__name { font-size: 1.0625rem; font-weight: 800; color: var(--primary); margin-bottom: .75rem; }
.guarantee-card__text { font-size: .875rem; color: var(--gray-500); line-height: 1.75; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 720px; margin: 0 auto; }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: all var(--t); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.testimonial-video { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--gray-800), var(--gray-900)); display: flex; align-items: center; justify-content: center; position: relative; }
.tv-placeholder { text-align: center; color: rgba(255,255,255,.6); }
.tv-placeholder p { font-size: .8125rem; margin-top: .75rem; }
.tv-play { width: 56px; height: 56px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; color: white; }
.tv-play svg { width: 24px; height: 24px; margin-left: 3px; }
.testimonial-card__body { padding: 1.5rem; }
.testimonial-card__quote {
  font-size: .875rem; color: var(--gray-500); line-height: 1.75; font-style: italic;
  margin-bottom: 1rem; padding: 1rem; background: var(--gray-50); border-radius: var(--r);
  border-left: 3px solid var(--teal);
}
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.125rem; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: .875rem; color: var(--gray-800); }
.testimonial-card__role { font-size: .75rem; color: var(--gray-400); }
.testimonial-notice {
  text-align: center; margin-top: 2rem; padding: 1.25rem;
  background: var(--gray-50); border-radius: var(--r-lg);
  color: var(--gray-400); font-size: .8125rem; border: 1px dashed var(--gray-300);
}

/* --- Trustpilot --- */
.tp-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem 0; }
.tp-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.5rem; font-weight: 800; }
.tp-logo span { color: #00b67a; }
.tp-text { font-size: .9375rem; color: var(--gray-500); text-align: center; max-width: 400px; }
.tp-link { display: inline-flex; align-items: center; gap: .5rem; color: #00b67a; font-weight: 600; font-size: .9375rem; text-decoration: underline; }

/* --- Lead Form Section --- */
.lead-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, var(--teal-dark) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.lead-section::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,.2) 0%, transparent 70%);
  pointer-events: none;
}
.lead-form {
  background: var(--white); border-radius: var(--r-2xl); padding: 2.5rem;
  max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-xl); position: relative; z-index: 1;
}
.lead-form__title { font-size: 1.625rem; font-weight: 800; color: var(--gray-900); margin-bottom: .375rem; }
.lead-form__sub { font-size: .9375rem; color: var(--gray-500); margin-bottom: 2rem; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group--full { grid-column: 1/-1; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.opt::after { content: ' (optional)'; font-weight: 400; color: var(--gray-400); }
.form-input,.form-select {
  width: 100%; padding: .75rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--r); font-size: 1rem; color: var(--gray-800);
  background: var(--white); transition: all var(--t-fast); outline: none;
}
.form-input:focus,.form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.form-input::placeholder { color: var(--gray-400); }
.form-privacy { font-size: .75rem; color: var(--gray-400); text-align: center; line-height: 1.6; margin-top: .75rem; }
.form-privacy a { color: var(--teal); text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.show { display: block; }
.form-success__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success__title { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: .75rem; }
.form-success__number {
  font-size: 2.25rem; font-weight: 900; color: var(--teal); letter-spacing: .04em;
  margin: 1.25rem auto; padding: 1rem 2rem; background: var(--teal-50);
  border-radius: var(--r-lg); display: inline-block;
}
.form-success__text { color: var(--gray-400); font-size: .9375rem; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--t-fast); }
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-trigger {
  width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; text-align: left; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--gray-800); background: none; transition: all var(--t-fast);
}
.faq-item.open .faq-trigger { color: var(--primary); }
.faq-trigger:hover { background: var(--gray-50); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  border: 2px solid var(--gray-300); display: flex; align-items: center;
  justify-content: center; font-size: 1.125rem; color: var(--gray-400); transition: all var(--t-fast);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: white; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-body { max-height: 600px; }
.faq-text { padding: 0 1.5rem 1.5rem; font-size: .9375rem; color: var(--gray-500); line-height: 1.8; }

/* --- DSGVO / Trust badges --- */
.dsgvo-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.dsgvo-badge {
  display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-full);
  font-size: .8125rem; font-weight: 600; color: var(--gray-600);
}
.dsgvo-badge svg { width: 16px; height: 16px; color: var(--teal); }

/* --- Final CTA --- */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; letter-spacing: -.02em; }
.final-cta__sub { font-size: 1.125rem; color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75; }
.final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Sticky mobile CTA --- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1); z-index: 100; display: none;
}

/* --- Floating Action Button --- */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  background: var(--teal); color: white; padding: 1rem 1.25rem;
  border-radius: var(--r-full); display: flex; align-items: center;
  gap: .5rem; font-weight: 600; font-size: .875rem;
  box-shadow: var(--shadow-teal); cursor: pointer; transition: all var(--t);
}
.fab:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(13,148,136,.4); }
.fab svg { width: 18px; height: 18px; }

/* --- Page Hero (Unterseiten) --- */
.page-hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, var(--teal-dark) 100%);
  padding: 5rem 0; color: white; text-align: center;
}
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.page-hero__sub { font-size: 1.125rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 0; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: .75rem; }
.legal-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: .375rem; }
.legal-content a:not(.btn) { color: var(--teal); text-decoration: underline; }
.legal-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.5rem; margin: 1.5rem 0; }

/* --- Login --- */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--gray-50), var(--white), var(--teal-50)); padding: 2rem; }
.login-card { background: var(--white); border-radius: var(--r-2xl); padding: 3rem; max-width: 440px; width: 100%; box-shadow: var(--shadow-xl); }
.login-card__logo { text-align: center; margin-bottom: 2rem; }
.login-card__title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: .375rem; }
.login-card__sub { font-size: .875rem; color: var(--gray-400); text-align: center; margin-bottom: 2rem; }
.login-card__form { display: flex; flex-direction: column; gap: 1rem; }
.login-card__forgot { text-align: right; font-size: .875rem; }
.login-card__forgot a { color: var(--teal); text-decoration: underline; }
.login-card__signup { text-align: center; margin-top: 1.5rem; font-size: .875rem; color: var(--gray-400); }
.login-card__signup a { color: var(--teal); text-decoration: underline; }

/* --- Scroll Animations --- */
.anim { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* --- Utilities --- */
.text-center { text-align: center; }
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-center { justify-content: center; }
.gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* --- Footer --- */
.footer { background: var(--gray-900); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer__brand-name { font-size: 1.25rem; font-weight: 800; color: white; }
.footer__brand-name span { color: var(--teal-light); }
.footer__brand-text { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer__col-title { font-size: .8125rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.footer__link:hover { color: var(--teal-light); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8125rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 1rem;
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.3); transition: color var(--t-fast); }
.footer__legal a:hover { color: rgba(255,255,255,.65); }
.footer__logo-mark {
  width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary-light), var(--teal));
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
}
.footer__logo-mark svg { width: 18px; height: 18px; color: white; }

/* --- Responsive --- */
@media (max-width:1024px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; order: -1; }
  .trial-banner { padding: 1.5rem; }
  .trial-banner__content { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .trial-banner__title { font-size: 1.125rem; }
  .overage-grid { flex-direction: column; align-items: center; }
  .forwarding-grid { grid-template-columns: 1fr; }
  .forwarding-modes { grid-template-columns: repeat(1, 1fr); }
  .impact-point { gap: 1.25rem; padding: 1.75rem 0; }
  .impact-point__marker { font-size: 2rem; width: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width:768px) {
  :root { }
  .section { padding: 3rem 0; }
  .section--lg { padding: 4.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 2rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: block; position: static; bottom: auto; left: auto; right: auto; padding: 1rem; box-shadow: none; border-top: none; background: transparent; }
  .fab { bottom: 5.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 360px; }
  .nav__actions .btn:not(.btn--primary) { display: none; }
  /* Header kompakt halten, damit der Menü-Button (Burger) immer Platz hat
     und kein horizontaler Scroll entsteht. */
  .nav__inner { gap: 1rem; }
  .nav__actions { gap: .5rem; }
  .nav__actions .btn--primary { padding: .5rem .875rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .section-title { font-size: 1.875rem; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .countdown-timer { gap: 1rem; }
  .cdu__num { font-size: 2.5rem; min-width: 56px; }
  /* Schmale Phones (z. B. S25+): "Gratis starten" weiter verkleinern + Telefon-Icon
     ausblenden, damit Logo + Button + Burger sicher in die Zeile passen. */
  .nav .container { padding: 0 1rem; }
  .nav__inner { gap: .5rem; }
  .nav__actions .btn--primary { padding: .5rem .7rem; font-size: .8125rem; }
  .nav__actions .btn--primary svg { display: none; }
}

/* ================================================
   100-TAGE GARANTIE
   ================================================ */
.guarantee-section {
  background: linear-gradient(135deg, #0d2340 0%, #0a3d5c 45%, var(--teal-dark) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.guarantee-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(20,184,166,.15) 0%, transparent 70%);
  pointer-events: none;
}
.guarantee-section__inner {
  display: flex; align-items: center; gap: 4rem; flex-wrap: wrap;
}
.guarantee-section__seal-col {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.guarantee-seal {
  width: 176px; height: 176px; border-radius: 50%;
  background: white; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; flex-shrink: 0;
  box-shadow: 0 12px 48px rgba(0,0,0,.35), 0 0 0 6px rgba(255,255,255,.12), 0 0 0 12px rgba(255,255,255,.06);
}
.guarantee-seal::after {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.3);
}
.guarantee-seal__days { font-size: 3.5rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--primary), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.guarantee-seal__days-sub { font-size: .65rem; font-weight: 800; color: var(--gray-500); text-transform: uppercase; letter-spacing: .14em; margin-top: -.1rem; }
.guarantee-seal__divider { width: 60%; height: 1px; background: var(--gray-200); margin: .4rem 0; }
.guarantee-seal__title { font-size: .6rem; font-weight: 900; color: var(--teal); text-transform: uppercase; letter-spacing: .12em; }
.guarantee-seal__sub { font-size: .6rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; margin-top: .1rem; }
.guarantee-section__trust {
  display: flex; flex-direction: column; gap: .6rem; align-items: center;
}
.guarantee-section__trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: rgba(255,255,255,.7); font-weight: 500;
}
.guarantee-section__trust-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.guarantee-section__body { flex: 1; min-width: 260px; }
.guarantee-section__label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: 1rem; }
.guarantee-section__title { font-size: clamp(1.75rem, 3.5vw, 2.625rem); font-weight: 900; color: white; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.guarantee-section__text { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; }
.guarantee-section__condition { font-size: .875rem; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 2rem; line-height: 1.65; }
.guarantee-section__cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.guarantee-section__fine { font-size: .75rem; color: rgba(255,255,255,.35); }
@media (max-width: 768px) {
  .guarantee-section__inner { flex-direction: column; text-align: center; }
  .guarantee-section__body { text-align: left; }
  .guarantee-section__trust { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .guarantee-section__cta { justify-content: flex-start; }
}

/* Inline guarantee badge (in form / pricing) */
.guarantee-inline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, rgba(13,148,136,.08), rgba(13,148,136,.04));
  border: 1px solid rgba(13,148,136,.25); border-radius: var(--r-full);
  padding: .4rem 1rem; font-size: .8125rem; font-weight: 600; color: var(--teal);
}
.guarantee-inline svg { width: 14px; height: 14px; flex-shrink: 0; }
/* Small seal for pricing cards */
.pricing-guarantee {
  display: flex; align-items: center; justify-content: center; gap: .625rem;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-100);
  font-size: .8125rem; color: var(--gray-500);
}
.pricing-guarantee__seal {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 900; color: white; text-align: center; flex-shrink: 0;
  line-height: 1.1; padding: 4px;
}

/* ================================================
   COOKIE CONSENT — Modal mit erzwungener Entscheidung
   ================================================
   Vorher eine Leiste am unteren Rand: leicht zu ignorieren, und weil Consent
   Mode v2 auf „denied" startet, hiess Ignorieren = null Analytics-/Ads-Signal.
   Jetzt ein zentriertes Modal mit Backdrop und Scroll-Sperre.

   WICHTIG (rechtlich, § 25 TDDDG + DSK-Orientierungshilfe + EDPB):
    - Erzwungen wird die ENTSCHEIDUNG, nicht die Zustimmung. „Nur notwendige"
      ist ein Klick mit exakt gleichem Gewicht (gleiche Groesse, gleich
      gefuellt, flex:1) — sonst waere die Einwilligung nicht freiwillig.
    - Kein X, kein Schliessen per Klick auf den Backdrop. ESC = nur notwendige
      (datenschutzfreundlich, niemals stille Zustimmung).
    - Datenschutz/Impressum sind aus dem Modal erreichbar, und auf den
      Rechtsseiten selbst erscheint es nicht (siehe NO_MODAL in
      js/components.php) — Pflichtseiten muessen ohne Einwilligung nutzbar sein.
*/
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.cookie-modal.is-mounted { display: flex; }
.cookie-modal__backdrop {
  position: absolute; inset: 0; background: rgba(9,20,33,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.cookie-modal.visible .cookie-modal__backdrop { opacity: 1; }
.cookie-modal__dialog {
  position: relative; width: min(560px, 100%);
  max-height: calc(100dvh - 3rem); overflow-y: auto;
  background: var(--white); border-radius: var(--r-xl);
  padding: 2rem; box-shadow: 0 40px 80px -20px rgba(9,20,33,.5);
  opacity: 0; transform: translateY(16px) scale(.985);
  transition: opacity .3s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.cookie-modal.visible .cookie-modal__dialog { opacity: 1; transform: none; }
.cookie-modal__dialog:focus { outline: none; }
.cookie-modal__head { display: flex; align-items: center; gap: .75rem; margin-bottom: .875rem; }
.cookie-modal__icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.cookie-modal__title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin: 0; }
.cookie-modal__text { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; margin: 0 0 1.25rem; }
.cookie-modal__list { display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1.5rem; }
.cookie-modal__row { display: flex; gap: .625rem; font-size: .875rem; color: var(--gray-600); line-height: 1.5; }
.cookie-modal__row b { color: var(--gray-900); font-weight: 700; }
.cookie-modal__mark { flex-shrink: 0; color: var(--teal); font-weight: 800; }
.cookie-modal__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-modal__actions .btn { flex: 1 1 12rem; justify-content: center; }
/* „Nur notwendige" bewusst etwas leiser: navy umrandet statt navy gefuellt
   (Vorgabe Markus). Bewusste Abweichung von der strengen Gleichgewichtung —
   Groesse, Position, Schriftgrad und Ecken bleiben IDENTISCH und der Rand ist
   kraeftig (--primary, nicht grau), damit die Ablehnung klar erkennbar und mit
   einem Klick erreichbar bleibt (§ 25 TDDDG / DSK-Orientierungshilfe). */
.cookie-modal__quiet {
  background: var(--white); color: var(--primary);
  border-color: var(--primary); box-shadow: var(--shadow-sm);
}
.cookie-modal__quiet:hover {
  background: var(--primary-50); border-color: var(--primary-dark);
  color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.cookie-modal__links {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: .8125rem; color: var(--gray-400);
}
.cookie-modal__links a, .cookie-modal__link {
  color: var(--gray-500); text-decoration: underline; background: none;
  border: none; padding: 0; font-family: inherit; font-size: inherit; cursor: pointer;
}
.cookie-modal__links a:hover, .cookie-modal__link:hover { color: var(--teal); }
/* Scroll-Sperre, solange die Entscheidung offen ist. */
html.cookie-lock, body.cookie-lock { overflow: hidden; }

@media (max-width: 640px) {
  /* Auf dem Handy als Bottom-Sheet: Buttons immer erreichbar, Safe-Area
     beachtet (braucht viewport-fit=cover, ist auf allen Seiten gesetzt). */
  .cookie-modal { padding: 0; align-items: flex-end; }
  .cookie-modal__dialog {
    width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 1.5rem);
    transform: translateY(24px);
  }
  .cookie-modal__title { font-size: 1.125rem; }
  .cookie-modal__text { font-size: .875rem; margin-bottom: 1rem; }
  .cookie-modal__list { margin-bottom: 1.25rem; }
  .cookie-modal__actions .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-modal__backdrop, .cookie-modal__dialog { transition: none; }
  .cookie-modal__dialog { transform: none; }
}

/* ================================================
   READ-MORE — JS kuerzt den Text und haengt inline „… mehr" an (unterstrichen,
   klickbar). Aufgeklappt: voller Text + „weniger".
   ================================================ */
.readmore__more { color: var(--teal); cursor: pointer; font-weight: 600; white-space: nowrap; text-decoration: none; padding: 2px 4px; margin: 0 -2px; border-radius: 4px; }
.readmore__more:hover { color: var(--teal-dark, #0b7d73); }
.readmore__more-label { text-decoration: underline; text-underline-offset: 2px; }   /* Wort = klar als Link erkennbar */
.readmore__more:hover .readmore__more-label { text-decoration-thickness: 2px; }
.readmore__caret { margin-left: .3em; font-size: .8em; text-decoration: none; display: inline-block; }   /* Pfeil signalisiert Auf-/Zuklappen */

/* ================================================
   COOKIE SETTINGS PAGE
   ================================================ */
.cookie-status-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 1rem 1.5rem; margin-bottom: 2rem;
}
.cookie-status-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.cookie-status-dot--green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.cookie-status-dot--orange { background: var(--orange); box-shadow: 0 0 0 3px rgba(245,158,11,.2); }
.cookie-category {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--gray-200); overflow: hidden; margin-bottom: 1rem;
  transition: border-color .2s;
}
.cookie-category:has(.cookie-toggle input:checked) { border-color: rgba(13,148,136,.3); }
.cookie-category__header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer;
}
.cookie-category__left { display: flex; align-items: flex-start; gap: 1rem; flex: 1; }
.cookie-category__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.3; }
.cookie-category__name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .2rem; }
.cookie-category__desc { font-size: .8125rem; color: var(--gray-500); line-height: 1.6; }
.cookie-category__badge {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .7rem; border-radius: var(--r-full); white-space: nowrap; flex-shrink: 0;
}
.cookie-category__badge--required { background: var(--teal-50); color: var(--teal); }
.cookie-category__badge--optional { background: var(--gray-100); color: var(--gray-500); }
.cookie-category__details {
  padding: 0 1.5rem 1.25rem; border-top: 1px solid var(--gray-100);
  display: none;
}
.cookie-category__details.open { display: block; }
.cookie-details-toggle {
  font-size: .8125rem; color: var(--teal); background: none; border: none;
  cursor: pointer; padding: .75rem 0 .25rem; font-weight: 600; display: flex; align-items: center; gap: .35rem;
}
.cookie-details-toggle:hover { text-decoration: underline; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .8125rem; margin-top: .75rem; }
.cookie-table th {
  text-align: left; font-weight: 600; color: var(--gray-500); padding: .5rem .75rem;
  background: var(--gray-50); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
}
.cookie-table td { padding: .625rem .75rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); vertical-align: top; line-height: 1.5; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table td:first-child { font-family: monospace; font-size: .8rem; color: var(--gray-800); white-space: nowrap; }
.cookie-toggle {
  position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__track {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--gray-300); border-radius: var(--r-full);
  transition: background .25s ease;
}
.cookie-toggle__track::before {
  content: ''; position: absolute; width: 20px; height: 20px;
  left: 3px; bottom: 3px; background: white; border-radius: 50%;
  transition: transform .25s ease; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--teal); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(22px); }
.cookie-toggle input:disabled + .cookie-toggle__track { background: var(--teal); opacity: .55; cursor: not-allowed; }
.cookie-save-bar {
  position: sticky; bottom: 0; background: white; border-top: 1px solid var(--gray-200);
  padding: 1rem 0; margin-top: 2rem; box-shadow: 0 -4px 20px rgba(0,0,0,.08); z-index: 100;
}
.cookie-save-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cookie-save-bar p { font-size: .8125rem; color: var(--gray-500); margin: 0; }
.cookie-save-bar__btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ================================================
   Jump to Top Button (Desktop only)
   ================================================ */
.jump-to-top {
  position: fixed; bottom: 6.5rem; right: 1.5rem; z-index: 99;
  width: 48px; height: 48px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s ease;
  color: var(--gray-600); padding: 0; outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.jump-to-top:hover {
  background: var(--teal); color: white; box-shadow: 0 4px 20px rgba(13,148,136,.25);
  transform: translateY(0px);
}
.jump-to-top.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0px);
}
.jump-to-top svg { width: 22px; height: 22px; }

/* ================================================
   Preismodell 2.0 — Preis-Magnet, Trust-Strip,
   4er-Tarifleiter, Rechner, Add-ons, Toggle
   ================================================ */

/* --- Hero: Preis-Magnet (Subline) --- */
.price-magnet {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: 800; line-height: 1.35;
  color: var(--gray-900); letter-spacing: -.01em; margin: 1.25rem 0 .375rem;
}
.price-magnet strong { color: var(--teal); white-space: nowrap; }
.price-magnet--light { color: #fff; }
.price-magnet--light strong { color: var(--teal-light); }
.price-magnet-sub { font-size: .9375rem; color: var(--gray-500); margin-bottom: 1rem; }
.price-magnet-sub--light { color: rgba(255,255,255,.75); }

/* --- Trust-Strip (eine Zeile, above the fold) --- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .375rem 1.25rem; margin: 1rem 0 1.5rem;
  font-size: .875rem; font-weight: 600; color: var(--gray-600);
}
.trust-strip__item { display: inline-flex; align-items: center; gap: .375rem; white-space: nowrap; }
.trust-strip--light { color: rgba(255,255,255,.85); }

/* --- Tarifleiter: 4 Karten --- */
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pricing-grid--4 .pricing-card { padding: 1.75rem 1.5rem; }
.pricing-grid--4 .pricing-card__amount { font-size: 2.25rem; }
.pricing-card__cap {
  font-size: .8125rem; color: var(--teal-dark); background: var(--teal-50);
  border: 1px solid rgba(13,148,136,.18); border-radius: var(--r);
  padding: .5rem .75rem; margin-bottom: 1.25rem; line-height: 1.5;
}
.pricing-card__billing-note { font-size: .78rem; color: var(--gray-400); margin-top: .375rem; }
.pricing-card__save {
  font-size: .8125rem; font-weight: 600; color: var(--teal);
  margin-top: .25rem;
}
.pricing-card__save strong { color: var(--teal); }
.pricing-cap-principle {
  text-align: center; margin-top: 2rem; font-size: 1rem; color: var(--gray-600);
}
.pricing-cap-principle strong { color: var(--gray-900); }

/* --- Founding-Member (Pro) --- */
.founding-note {
  background: var(--orange-50); border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r-md); padding: .75rem .875rem; margin-bottom: 1.25rem;
}
.founding-note p { font-size: .8125rem; color: var(--gray-700); line-height: 1.55; margin: 0; }
.founding-note__counter {
  margin-top: .375rem !important; font-weight: 700; color: var(--orange) !important;
  font-size: .8125rem;
}

/* --- Monatlich/Jaehrlich-Toggle --- */
.billing-toggle {
  display: flex; justify-content: center; gap: .375rem; margin: 0 auto 2rem;
  background: var(--gray-100); border-radius: var(--r-full); padding: .3rem;
  width: fit-content; max-width: 100%;
}
.billing-toggle__btn {
  padding: .55rem 1.25rem; border-radius: var(--r-full); font-size: .9375rem;
  font-weight: 600; color: var(--gray-500); transition: all var(--t-fast);
  display: inline-flex; align-items: center; gap: .5rem;
}
.billing-toggle__btn.is-active { background: #fff; color: var(--gray-900); box-shadow: var(--shadow-sm); }
.billing-toggle__save {
  font-size: .6875rem; font-weight: 700; color: var(--teal);
  background: var(--teal-50); border-radius: var(--r-full); padding: .15rem .5rem;
  white-space: nowrap;
}

/* --- Preisrechner --- */
.calc-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto;
}
.calc-label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; color: var(--gray-800); font-size: 1rem; margin-bottom: 1rem; }
.calc-calls { font-size: 1.75rem; font-weight: 900; color: var(--teal); font-variant-numeric: tabular-nums; }
.calc-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
  border-radius: var(--r-full); background: var(--gray-200); outline: none; cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); border: 4px solid #fff; box-shadow: 0 2px 10px rgba(13,148,136,.4);
  cursor: grab;
}
.calc-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal);
  border: 4px solid #fff; box-shadow: 0 2px 10px rgba(13,148,136,.4); cursor: grab;
}
.calc-scale { display: flex; justify-content: space-between; font-size: .75rem; color: var(--gray-400); margin-top: .5rem; }
.calc-result { text-align: center; margin: 2rem 0 1.5rem; }
.calc-result__label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: .375rem; }
.calc-result__plan { font-size: 1.5rem; font-weight: 800; color: var(--teal); margin-bottom: .25rem; }
.calc-result__price { font-size: clamp(2.5rem, 5vw, 3.25rem); font-weight: 900; color: var(--gray-900); line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc-result__period { font-size: 1.125rem; color: var(--gray-400); font-weight: 500; }
.calc-result__cap { font-size: .9375rem; font-weight: 600; color: var(--teal-dark); margin-top: .625rem; }
.calc-all { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
/* Kacheln sind Links auf die jeweilige Tarifkarte (#tarif-… auf preise.php). */
.calc-all__item {
  display: block; text-align: center; text-decoration: none;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--r-md); padding: .625rem .5rem; transition: all var(--t-fast);
}
.calc-all__item:hover {
  background: #fff; border-color: rgba(13,148,136,.45);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.calc-all__item:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.calc-all__item.is-best { background: var(--teal-50); border-color: rgba(13,148,136,.35); }
.calc-all__name { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); }
.calc-all__item.is-best .calc-all__name { color: var(--teal); }
.calc-all__val { display: block; font-size: 1rem; font-weight: 800; color: var(--gray-700); font-variant-numeric: tabular-nums; }
.calc-all__go { display: block; margin-top: .2rem; font-size: .6875rem; font-weight: 600; color: var(--gray-400); transition: color var(--t-fast); }
.calc-all__item:hover .calc-all__go, .calc-all__item.is-best .calc-all__go { color: var(--teal); }
.calc-compare { text-align: center; border-top: 1px dashed var(--gray-200); padding-top: 1.25rem; }
.calc-compare p { font-size: .9375rem; color: var(--gray-600); }
.calc-compare__pers { margin: 0 0 .5rem; }
.calc-compare__pers strong { color: var(--gray-800); font-weight: 800; font-variant-numeric: tabular-nums; }
.calc-compare__save-line { margin: 0; font-weight: 600; color: var(--gray-700); }
.calc-compare__save {
  display: block; margin-top: .15rem; font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 900;
  color: var(--green-dark); line-height: 1.15; font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.calc-cta { text-align: center; margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .625rem; }
.calc-cta__sub { font-size: .8125rem; color: var(--gray-400); }
.calc-footnote { font-size: .75rem; color: var(--gray-400); margin-top: 1.25rem; text-align: center; line-height: 1.6; }

/* --- Sticky "Preis berechnen" (untere rechte Ecke, Desktop) ---
   Vorher ein vertikaler Tab mittig an der Fensterkante. Problem: Der Text steht
   in einer 1200px-Spalte in der Mitte — je breiter der Schirm, desto groesser
   die Luecke dazwischen (bei 2560px 680px), der Button driftet aus dem
   Blickfeld. Jede Breiten-Schwelle dagegen waere willkuerlich.
   Loesung: untere rechte Ecke. Die ist bei 1440px genauso weit weg wie bei
   3440px — das Problem entfaellt komplett, und das Label ist endlich waagerecht
   lesbar statt um 90 Grad gedreht. Farbe bleibt Signal-Orange + Navy-Schrift. */
/* Rand-Abstaende exakt wie beim „Gratis starten"-FAB (.fab: 1.5rem), damit
   beide buendig uebereinander stehen. */
.calc-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 998;
}
.calc-fab__btn {
  display: flex; flex-direction: row; align-items: center; gap: .5rem;
  padding: .9rem 1.15rem; border: none; cursor: pointer;
  border-radius: var(--r-full);
  background: var(--orange); color: var(--primary); font-family: inherit;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  box-shadow: 0 14px 36px rgba(245,158,11,.34), 0 4px 8px rgba(245,158,11,.22);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.calc-fab__btn:hover {
  background: #D97706; transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(245,158,11,.42), 0 4px 10px rgba(245,158,11,.26);
}
.calc-fab__btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.calc-fab__icon { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.calc-fab__label { letter-spacing: .01em; white-space: nowrap; }
/* Die untere rechte Ecke kann DREI Schwebe-Elemente tragen. Reihenfolge von
   unten nach oben — wichtigstes zuerst (Hoehen im Browser gemessen):
     1. .fab          „Gratis starten"  bottom  1.5rem,  54px hoch
     2. .calc-fab     „Preis berechnen" bottom  5.75rem, 59px hoch
     3. .jump-to-top  Pfeil nach oben   bottom 10.25rem, 48px hoch
   Ergibt 14px bzw. 13px Luft dazwischen. Beide Klassen setzt js/main.js,
   sobald die Pille auf einer Seite mit #fab entsteht — ohne die Verschiebung
   laege der Pfeil hinter der Pille (z-index 99 gegen 998). */
.calc-fab--stacked { bottom: 5.75rem; }
body.has-fab-stack .jump-to-top { bottom: 10.25rem; }
@media (max-width: 768px) { .calc-fab { display: none; } }

/* --- Vergleichstabelle: Kategorie-Zwischenueberschriften --- */
.compare-cat td {
  background: var(--gray-100) !important; font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500);
  padding-top: .875rem; padding-bottom: .875rem;
}

/* --- Add-on-Karten --- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.addon-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-xl);
  padding: 1.5rem; text-align: center; transition: all var(--t);
}
.addon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.addon-card__icon { font-size: 1.75rem; margin-bottom: .625rem; }
.addon-card__name { font-weight: 800; color: var(--gray-900); font-size: .9375rem; margin-bottom: .25rem; }
.addon-card__price { font-size: 1.25rem; font-weight: 900; color: var(--teal); margin-bottom: .5rem; }
.addon-card__price span { font-size: .78rem; font-weight: 500; color: var(--gray-400); }
.addon-card__text { font-size: .8125rem; color: var(--gray-500); line-height: 1.6; }

/* --- Multicalls-USP --- */
.multi-visual {
  display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; margin: 2rem 0;
}
.multi-line {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-50); border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--r-full); padding: .45rem 1rem;
  font-size: .8125rem; font-weight: 600; color: var(--teal-dark);
}
.multi-line--busy { background: var(--red-50); border-color: rgba(239,68,68,.25); color: #b91c1c; }
.multi-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: multiPulse 1.6s ease-in-out infinite; }
.multi-line--busy .dot { background: var(--red); animation: none; }
@keyframes multiPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid--4 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .addon-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .calc-card { padding: 1.5rem; }
  .calc-all { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .billing-toggle__btn { padding: .5rem .875rem; font-size: .875rem; }
  .billing-toggle__save { display: none; }
  .trust-strip { gap: .375rem .875rem; font-size: .8125rem; }
}
