/* ============================================================
   PINKE PINKE — Marketing Pages CSS
   For: Landing, Pricing, Legal pages
   ============================================================ */

body.marketing {
  background: var(--void);
  color: var(--silver);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-tiles.small { width: 32px; height: 32px; }
.logo-tiles.tiny { width: 18px; height: 18px; gap: 2px; }
.logo-text.tiny { font-size: 11px; }
.site-header .logo-text { font-size: 18px; }
.site-nav { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.site-nav a {
  color: var(--gray-100);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--emerald);
  color: var(--void) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--emerald-bright); color: var(--void) !important; }
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--emerald-soft);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  font-size: 12px;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 24px;
}
.hero h1 .emerald { color: var(--emerald); font-style: italic; }

.hero-sub {
  font-size: 18px;
  color: var(--gray-100);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--emerald);
  color: var(--void);
}
.btn-primary:hover {
  background: var(--emerald-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--emerald-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-medium);
}
.btn-secondary:hover { border-color: var(--emerald); color: var(--emerald); }
.btn-primary.big, .btn-secondary.big {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  color: var(--gray-200);
}

/* ============================================================
   PHONE DEMO
   ============================================================ */
.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 320px;
  height: 640px;
  background: #0a0e18;
  border: 8px solid #1a1f2e;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(124, 179, 66, 0.1),
    0 0 80px rgba(124, 179, 66, 0.15);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0a0e18;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--obsidian);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.demo-app {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.demo-status {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px 8px;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.demo-stage {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.demo-mic-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--void);
  margin-bottom: 24px;
  animation: pulse-mic 2s infinite;
  box-shadow: 0 0 0 0 var(--emerald-glow);
}
.demo-mic-circle svg { width: 36px; height: 36px; }
@keyframes pulse-mic {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(124, 179, 66, 0); }
}

.demo-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  margin-bottom: 16px;
}
.wave-bar {
  width: 4px;
  height: 100%;
  background: var(--emerald);
  border-radius: 2px;
  animation: wave 1.2s infinite ease-in-out;
}
.wave-bar:nth-child(1) { animation-delay: 0.0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.5s; }
.wave-bar:nth-child(9) { animation-delay: 0.4s; }
.wave-bar:nth-child(10) { animation-delay: 0.3s; }
.wave-bar:nth-child(11) { animation-delay: 0.2s; }
.wave-bar:nth-child(12) { animation-delay: 0.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.demo-transcript {
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  min-height: 60px;
  padding: 0 8px;
}

.demo-loading {
  font-size: 16px;
  color: var(--emerald);
  font-weight: 500;
}

.demo-quote-header {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  padding: 16px 24px;
  text-align: center;
}
.demo-tags {
  display: flex;
  gap: 6px;
  padding: 0 24px 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.demo-tag {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--emerald-soft);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  color: var(--emerald);
}
.demo-positions {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 24px;
  overflow-y: auto;
  scrollbar-width: none;
}
.demo-positions::-webkit-scrollbar { display: none; }
.demo-pos {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--gray-100);
  animation: fadeInUp 0.4s var(--ease) backwards;
}
.demo-pos:nth-child(1) { animation-delay: 0.0s; }
.demo-pos:nth-child(2) { animation-delay: 0.1s; }
.demo-pos:nth-child(3) { animation-delay: 0.2s; }
.demo-pos:nth-child(4) { animation-delay: 0.3s; }
.demo-pos:nth-child(5) { animation-delay: 0.4s; }
.demo-pos:nth-child(6) { animation-delay: 0.5s; }
.demo-pos.more { color: var(--gray-300); font-style: italic; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo-total {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--slate);
  border-top: 2px solid var(--emerald);
  font-size: 12px;
  color: var(--gray-100);
}
.demo-amount {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--emerald);
}

/* PDF Preview Stage */
.demo-pdf-preview {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  animation: fadeIn 0.4s ease;
}
.demo-pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.demo-pdf-logo {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.05em;
}
.demo-pdf-title {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.demo-pdf-client {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.demo-pdf-line {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 4px 0;
}
.demo-pdf-pos {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  padding: 2px 0;
}
.demo-pdf-total {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 4px 0;
}
.demo-pdf-dl {
  margin-top: 8px;
  background: var(--emerald);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-stat .trust-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 4px;
}
.trust-stat .trust-label {
  font-size: 12px;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.problem, .solution, .features, .pricing-teaser, .faq, .final-cta {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-label.emerald { color: var(--emerald); }

.problem h2, .solution h2, .features h2, .pricing-teaser h2, .faq h2, .final-cta h2, .roi-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 16px;
  max-width: 800px;
}

.section-sub {
  font-size: 18px;
  color: var(--gray-200);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 0 60px;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}
.problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--white);
  margin: 0 0 12px;
}
.problem-card p {
  color: var(--gray-200);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--onyx);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.step-number {
  position: absolute;
  top: -20px;
  left: 32px;
  width: 40px;
  height: 40px;
  background: var(--emerald);
  color: var(--void);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Fraunces', serif;
}
.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--white);
  margin: 16px 0 12px;
}
.step-card p {
  color: var(--gray-200);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}
.feature:hover {
  border-color: var(--border-accent);
  background: var(--slate);
  transform: translateY(-2px);
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}
.feature p {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   ROI CALCULATOR — "Rechne selbst"
   ============================================================ */
.roi-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--obsidian), transparent);
}
.roi-section h2 {
  margin: 16px 0 20px;
}
.roi-section .section-sub {
  max-width: 720px;
  margin: 0 0 48px;
  color: var(--gray-100);
  font-size: 17px;
  line-height: 1.6;
}
.roi-section .section-sub strong {
  color: var(--silver);
  font-weight: 600;
}

.roi-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 56px;
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 40px;
}
.roi-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.roi-label-text {
  font-size: 13px;
  color: var(--gray-200);
  font-weight: 500;
}
.roi-input {
  background: var(--void);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--silver);
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  transition: all 0.15s ease;
  -moz-appearance: textfield;
}
.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.roi-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}

/* ═══════════════════════════════════════════════════════════
   v3.5.13: Slider-Variante (range + number daneben)
   ═══════════════════════════════════════════════════════════ */
.roi-control {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;  /* Damit Flex-Children shrinken können */
}
.roi-slider {
  flex: 1 1 auto;
  min-width: 0;  /* CRITICAL: erlaubt Slider shrinken statt überquellen */
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.roi-slider:hover {
  background: rgba(124,179,66,0.15);
}
/* Webkit-Thumb */
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald);
  border: 3px solid var(--void);
  box-shadow: 0 0 0 1px var(--emerald), 0 2px 8px rgba(124,179,66,0.4);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 1px var(--emerald), 0 4px 12px rgba(124,179,66,0.6);
}
.roi-slider::-webkit-slider-thumb:active {
  transform: scale(1.25);
}
/* Firefox-Thumb */
.roi-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald);
  border: 3px solid var(--void);
  box-shadow: 0 0 0 1px var(--emerald), 0 2px 8px rgba(124,179,66,0.4);
  cursor: pointer;
}
.roi-slider:focus {
  background: rgba(124,179,66,0.2);
}

/* Mini-Input neben Slider — Desktop default */
.roi-input-mini {
  background: var(--void);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 8px;
  color: var(--silver);
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  outline: none;
  transition: all 0.15s ease;
  width: 72px;
  flex-shrink: 0;
  text-align: center;
  -moz-appearance: textfield;
}
.roi-input-mini::-webkit-outer-spin-button,
.roi-input-mini::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.roi-input-mini:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}

.roi-divider {
  height: 1px;
  background: var(--border-light);
  margin: 32px 0;
}

.roi-headline {
  text-align: center;
  font-size: 13px;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 28px;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
  align-items: end;
}
.roi-result {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 90px;
}
.roi-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.05;
  margin-bottom: 10px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.roi-result-hero .roi-number {
  font-size: 48px;
}
.roi-number.emerald {
  color: var(--emerald);
}
.roi-caption {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.4;
}

.roi-slogan {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 32px;
}
.roi-slogan-1 {
  color: var(--silver);
  font-weight: 400;
}
.roi-slogan-2 {
  color: var(--emerald);
  font-style: italic;
  font-weight: 400;
}

.roi-cta {
  text-align: center;
  margin-bottom: 32px;
}

.roi-disclaimer {
  font-size: 13px;
  color: var(--gray-300);
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   PRICING TEASER
   ============================================================ */
.pricing-teaser {
  background: linear-gradient(180deg, transparent, var(--obsidian));
}
.pricing-cards-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}
.price-card-mini {
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card-mini.featured {
  border-color: var(--emerald);
  background: var(--slate);
  transform: scale(1.03);
}
.price-card-mini .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--void);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--gray-100, #ddd);
  font-size: 14px;
  line-height: 1.4;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--emerald);
  font-weight: 700;
}
.plan-name {
  font-size: 14px;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.plan-price span {
  font-size: 14px;
  color: var(--gray-200);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.plan-total {
  font-size: 13px;
  color: var(--emerald);
  font-weight: 500;
}

.pricing-cta {
  text-align: center;
}
.pricing-note {
  font-size: 13px;
  color: var(--gray-200);
  margin-top: 16px;
}
.pricing-renewal-note {
  font-size: 13px;
  color: var(--gray-200);
  margin: 16px auto 0;
  max-width: 720px;
  padding: 12px 18px;
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid #d4af37;
  border-radius: 4px;
  text-align: left;
  line-height: 1.55;
}
.pricing-renewal-note strong { color: #d4af37; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--emerald);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-100);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, var(--emerald-glow) 0%, transparent 70%);
}
.final-cta h2 {
  margin: 0 auto 16px;
  font-size: 52px;
}
.final-cta p {
  font-size: 18px;
  color: var(--gray-100);
  margin: 0 0 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-link { margin-bottom: 14px; }
.footer-tagline {
  color: var(--gray-200);
  font-size: 14px;
  margin: 0 0 28px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 32px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social-link:hover {
  color: var(--emerald);
  border-color: rgba(124, 179, 66, 0.4);
  background: rgba(124, 179, 66, 0.05);
}
.footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.footer-social-link:hover svg {
  opacity: 1;
}
.footer-copy {
  color: var(--gray-300);
  font-size: 12px;
  margin: 0;
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--emerald); }

/* ============================================================
   PRICING PAGE SPECIFIC
   ============================================================ */
.pricing-page {
  padding: 60px 0 100px;
}
.pricing-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.pricing-page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.pricing-page-header p {
  font-size: 18px;
  color: var(--gray-100);
  line-height: 1.6;
}

.calculator-card {
  max-width: 700px;
  margin: 0 auto 60px;
  background: var(--onyx);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 40px;
}
.calculator-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 8px;
}
.calculator-card .calc-sub {
  color: var(--gray-200);
  font-size: 14px;
  margin: 0 0 32px;
}
.calc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.calc-row label {
  font-size: 14px;
  color: var(--gray-100);
  font-weight: 500;
  flex-shrink: 0;
}
.calc-slider {
  flex: 1;
  appearance: none;
  height: 6px;
  background: var(--slate);
  border-radius: 3px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--void);
  box-shadow: 0 0 0 1px var(--emerald);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--void);
}
.calc-value {
  background: var(--slate);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  color: var(--emerald);
  min-width: 80px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
}

.pricing-cards-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}
.price-card-full {
  background: var(--onyx);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  /* v3.5 #4 — Spring-Hover statt linear: cubic-bezier(0.34, 1.56, 0.64, 1)
     gibt einen leichten overshoot beim translateY, fühlt sich physikalisch an. */
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease,
              opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.price-card-full ul {
  flex: 1;
}
.price-card-full .btn-primary {
  margin-top: auto;
}
.price-card-full:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
}
.price-card-full.featured {
  border-color: var(--emerald);
  background: linear-gradient(180deg, var(--slate), var(--onyx));
  transform: scale(1.03);
}
.price-card-full.featured:hover { transform: scale(1.03) translateY(-6px); }

/* v3.5 #3 — Scroll-Reveal: Cards starten unsichtbar, faden gestaffelt rein.
   Stagger via inline style transition-delay per Card. */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}
.price-card-full.reveal-on-scroll {
  /* Auf Cards mit eigener featured-transform muss das Reveal-Transform
     additiv funktionieren — wir kapseln es daher in eine eigene Klasse
     und triggern das Sichtbar-Werden durch .in. */
}
.price-card-full.reveal-on-scroll.in {
  opacity: 1;
  transform: translateY(0);
}
.price-card-full.featured.reveal-on-scroll.in {
  transform: scale(1.03);
}
.tier-info-panel.reveal-on-scroll {
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.tier-info-panel.reveal-on-scroll.in {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility: bei Reduce-Motion-Setting alle Reveal-Animationen sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll, .price-card-full.reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .price-card-full.featured.reveal-on-scroll { transform: scale(1.03) !important; }
  .price-card-full { transition: border-color 0.2s ease !important; }
  .price-card-full:hover { transform: none !important; }
  .price-card-full.featured:hover { transform: scale(1.03) !important; }
}
.price-card-full .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--void);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-card-full h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 8px;
  text-align: center;
}
.price-card-full .duration {
  text-align: center;
  color: var(--gray-200);
  font-size: 13px;
  margin-bottom: 24px;
}
.price-card-full .big-price {
  text-align: center;
  margin-bottom: 8px;
}
.big-price-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.big-price-cur {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--gray-100);
  vertical-align: top;
  margin-right: 4px;
}
.big-price-period {
  font-size: 13px;
  color: var(--gray-200);
}
.dynamic-total {
  text-align: center;
  padding: 16px;
  background: var(--slate);
  border-radius: 10px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--gray-100);
}
.dynamic-total .total-amount {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--emerald);
  display: block;
  margin-top: 4px;
}
.dynamic-total .total-vat-hint {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--gray-200);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.75;
}

.tier-info {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: rgba(124, 179, 66, 0.04);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 12px;
  color: var(--gray-100);
}
.tier-row span:last-child {
  color: var(--emerald);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.discount-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--emerald-soft);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  font-size: 11px;
  color: var(--emerald);
  font-weight: 600;
}
.price-card-full ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.price-card-full li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-card-full li {
  position: relative;
  padding-left: 22px;
}
.price-card-full li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--emerald);
  border-bottom: 1.5px solid var(--emerald);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.price-card-full .btn-primary {
  width: 100%;
  margin-top: 16px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-page h1 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.legal-page .updated {
  color: var(--gray-300);
  font-size: 13px;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 40px 0 16px;
}
.legal-page h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-100);
  margin: 24px 0 12px;
}
.legal-page p, .legal-page li {
  color: var(--gray-100);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page strong { color: var(--white); }
.legal-page .placeholder {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--gold);
  margin: 16px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* ROI Calculator — tablet/iPad (769–1024px): Card schmaler */
  .roi-card { padding: 40px 36px; }
  .roi-results { gap: 18px; }
  .roi-number { font-size: 32px; }
  .roi-slogan { font-size: 32px; }

  /* Header: mobile-menu kicks in EARLIER (was 768px → now 1024px) to prevent dead-zone overlap */
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--obsidian);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
  }
  .mobile-menu { display: block; }
}

@media (max-width: 768px) {
  /* ROI Calculator — mobile (Handy) */
  .roi-section { padding: 64px 0; }
  .roi-card {
    padding: 28px 18px;
    border-radius: 16px;
  }
  .roi-inputs {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }
  .roi-label-text { font-size: 14px; }
  .roi-input {
    padding: 16px 16px;      /* Größere Tap-Targets */
    font-size: 22px;         /* Für Fat-Finger-Tippen gut ablesbar */
    border-radius: 12px;
  }
  /* v3.5.13: Slider mobile — größere Tap-Targets + breiteres Mini-Input */
  .roi-control { gap: 10px; }
  .roi-slider {
    height: 8px;           /* Etwas dicker für Touch */
    border-radius: 4px;
  }
  .roi-slider::-webkit-slider-thumb {
    width: 32px;
    height: 32px;
    border-width: 4px;
  }
  .roi-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-width: 4px;
  }
  .roi-input-mini {
    width: 78px;
    padding: 12px 6px;
    font-size: 20px;
    border-radius: 10px;
  }
  .roi-divider { margin: 24px 0; }
  .roi-results {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .roi-result { min-height: auto; }
  .roi-headline { font-size: 12px; margin-bottom: 20px; }
  .roi-number { font-size: 36px; margin-bottom: 6px; white-space: normal; }
  .roi-result-hero .roi-number { font-size: 42px; }
  .roi-caption { font-size: 14px; }
  .roi-slogan {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .roi-section .section-sub { font-size: 15px; }
  .roi-disclaimer { font-size: 12px; line-height: 1.55; }
  .roi-cta .btn-primary.big {
    width: 100%;              /* Full-width CTA wie Hero auf Mobile */
    text-align: center;
  }

  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .phone-frame { width: 280px; height: 560px; }

  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-stat .trust-num { font-size: 28px; }

  .problem, .solution, .features, .pricing-teaser, .faq, .final-cta {
    padding: 60px 0;
  }
  .problem h2, .solution h2, .features h2, .pricing-teaser h2, .faq h2, .final-cta h2, .roi-section h2 {
    font-size: 32px;
  }

  .problem-grid, .steps-grid, .pricing-cards-mini, .pricing-cards-full {
    grid-template-columns: 1fr;
  }
  .price-card-mini.featured, .price-card-full.featured { transform: none; }

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

  .pricing-page-header h1 { font-size: 36px; }
  .calculator-card { padding: 24px; }
  .calc-row { flex-direction: column; align-items: stretch; }

  .legal-page h1 { font-size: 32px; }
}

/* ============================================================
   GLASSMORPHISM + DESIGN POLISH (Phase 0a)
   ============================================================ */

/* Glass-card utility — adds glassmorphic surface to any card */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(124, 179, 66, 0.03) 100%
  ) !important;
  border-color: rgba(124, 179, 66, 0.18) !important;
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(124, 179, 66, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
.glass-card.featured {
  background: linear-gradient(
    135deg,
    rgba(124, 179, 66, 0.08) 0%,
    rgba(124, 179, 66, 0.02) 100%
  ) !important;
  border-color: rgba(124, 179, 66, 0.25) !important;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 179, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Trust check — clean SVG-style checkmark replacement for emoji checkmarks */
.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(124, 179, 66, 0.15);
  border: 1px solid rgba(124, 179, 66, 0.3);
  position: relative;
  flex-shrink: 0;
}
.trust-check::after {
  content: '';
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--emerald);
  border-bottom: 1.5px solid var(--emerald);
  transform: rotate(45deg) translate(-1px, -1px);
}

.trust-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.trust-item-clean {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--gray-100);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Tier-Explainer in calculator card */
.tier-explainer {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.tier-explainer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tier-explainer-row:last-of-type {
  border-bottom: none;
}
.tier-explainer-label {
  color: var(--gray-100);
  font-weight: 500;
}
.tier-explainer-value {
  color: var(--white);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.tier-explainer-value span {
  color: var(--emerald);
  font-weight: 600;
}
.tier-explainer-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 11px;
  color: var(--gray-200);
  text-align: center;
  letter-spacing: 0.3px;
}

/* Cleaner dynamic-total label */
.dynamic-label {
  font-size: 12px;
  color: var(--gray-200);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* Hero gradient enhancement for glassmorphic feel */
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Pricing teaser background polish */
.pricing-teaser {
  position: relative;
}
.pricing-teaser::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 179, 66, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Tier info panel (replaces old slider calculator) */
.tier-info-panel {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 40px 48px;
  border-radius: 18px;
}
.tier-info-panel h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.tier-info-panel .tier-info-sub {
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 620px;
}
.tier-info-panel .tier-explainer {
  margin-top: 0;
}
@media (max-width: 720px) {
  .tier-info-panel { padding: 28px 24px; }
  .tier-info-panel h3 { font-size: 18px; }
}

/* ============================================================
   ICON REMOVAL — Phase 0a fix
   Hide any remaining icon containers, polish icon-less cards
   ============================================================ */
.feature-icon,
.problem-icon {
  display: none !important;
}

/* Polish icon-less feature cards — center title, more breathing room */
.feature {
  padding: 36px 28px;
  text-align: center;
}
.feature h3 {
  margin-top: 0;
  font-size: 19px;
  letter-spacing: -0.2px;
}
.feature p {
  margin-top: 12px;
}

/* Polish icon-less problem cards */
.problem-card {
  padding: 36px 32px;
}
.problem-card h3 {
  margin-top: 0;
}

/* Polish step cards — they have number badges, stay compact */
.step-card {
  padding: 36px 32px;
}

/* ============================================================
   PRICING CARD BUTTON ALIGNMENT FIX
   Ensure all 3 cards have their CTA button at the same height
   regardless of feature-list length
   ============================================================ */
.pricing-cards-full {
  align-items: stretch;
}
.price-card-full {
  display: flex;
  flex-direction: column;
}
.price-card-full ul {
  flex: 1;
}
.price-card-full .btn-primary {
  margin-top: auto;
}

/* ════════════════════════════════════════════════════════════════
   SO FUNKTIONIERT'S
   ════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 96px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.how-it-works h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin: 12px 0 56px;
  color: var(--white);
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hiw-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}
.hiw-number {
  position: absolute;
  top: -16px; left: 28px;
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #04060c;
}
.hiw-icon {
  font-size: 32px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.hiw-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.hiw-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}
.hiw-arrow {
  font-size: 24px;
  color: var(--green);
  padding-top: 60px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { transform: rotate(90deg); padding-top: 0; text-align: center; }
}

/* FAQ Onboarding Steps */
.faq-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.faq-step-num {
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================================
   HERO SLOGAN
   ============================================================ */
.hero-slogan {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 12px 0 8px;
}
.hero-h1-sub {
  font-size: 0.72em;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-style: italic;
}
h1 {
  line-height: 1.15;
}

/* ============================================================
   HIW EQUAL GRID
   ============================================================ */
.hiw-grid-equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;     /* alle Karten gleiche Höhe */
}
@media (max-width: 768px) {
  .hiw-grid-equal { grid-template-columns: 1fr; }
}
.hiw-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;             /* Karte füllt komplette Spaltenhöhe */
}
.hiw-icon-lg {
  font-size: 36px;
  line-height: 1;
  height: 44px;             /* feste Höhe → Icons aller Karten exakt auf gleicher Linie */
  display: flex;
  align-items: center;
}
.hiw-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  min-height: 28px;         /* Headlines auch bei Umbruch alle auf gleicher Linie */
}
.hiw-card h3.emerald,
.hiw-card .emerald {
  color: var(--emerald-bright, #8bc34a);  /* Headlines grün wie gewünscht */
}
.hiw-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  flex: 1;                  /* Beschreibungen füllen Restraum → bündige Bottom-Kanten */
}

/* ============================================================
   HIW ACCEPT WORKFLOW (zweite Sektion: Angebot → Auftrag)
   ============================================================ */
.hiw-sub-intro {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hiw-sub-intro .section-label {
  margin-bottom: 12px;
}
.hiw-sub-intro h2 {
  margin: 0 0 12px;
}
.hiw-sub-lead {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.hiw-grid-accept {
  margin-top: 32px;
}
.hiw-grid-accept .hiw-card {
  position: relative;
  padding-top: 36px;
}
.hiw-icon-svg {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.25);
  color: #8bc34a;
  margin-bottom: 4px;
}
.hiw-icon-svg svg {
  width: 22px;
  height: 22px;
}
.hiw-step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(139, 195, 74, 0.35);
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hiw-sub-intro { margin-top: 48px; padding-top: 32px; }
  .hiw-step-num { font-size: 18px; top: 16px; right: 20px; }
  .hiw-icon-svg { width: 38px; height: 38px; }
  .hiw-icon-svg svg { width: 18px; height: 18px; }
}

/* ============================================================
   FAQ GREEN BULLET LIST
   ============================================================ */
.faq-green-list {
  list-style: none;
  padding: 0 8px 0 20px;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-green-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.faq-green-list li::before {
  content: "●";
  color: var(--emerald);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Header logo + slogan */
.logo-with-slogan {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-slogan {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  padding-left: 2px;
  text-transform: uppercase;
}

/* Logo stack — slogan under PINKE PINKE text */
.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.header-slogan {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* HIW inside FAQ */
.hiw-in-faq {
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hiw-in-faq .section-label { margin-bottom: 8px; }
.hiw-in-faq h2 { margin-bottom: 24px; }

/* FAQ item open — ensure content has padding */
.faq-item[open] summary { margin-bottom: 16px; }
.faq-steps, .faq-green-list { padding-bottom: 8px; }

/* ============================================================
   COMPREHENSIVE MOBILE OVERHAUL — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {

  /* Base */
  .container { padding: 0 16px; }

  /* Header */
  .site-header { padding: 12px 0; }
  .logo-tiles.small { width: 26px; height: 26px; }
  .site-header .logo-text { font-size: 15px; }
  .header-slogan { font-size: 8px; }

  /* Hero */
  .hero { padding: 32px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .hero h1 { font-size: 34px; line-height: 1.1; }
  .hero-sub { font-size: 15px; line-height: 1.6; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; font-size: 15px; }
  .hero-trust { flex-wrap: wrap; gap: 8px 16px; }
  .trust-item { font-size: 12px; }
  .phone-frame { width: 240px; height: 480px; margin: 0 auto; }

  /* Sections */
  .problem, .solution, .features, .how-it-works,
  .pricing-teaser, .faq, .final-cta { padding: 48px 0; }
  
  .section-label { font-size: 10px; }

  /* Headings */
  .problem h2, .solution h2, .features h2,
  .faq h2, .final-cta h2, .how-it-works h2, .roi-section h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .section-sub { font-size: 14px; }

  /* Cards — full width, comfortable padding */
  .problem-card, .step-card, .feature,
  .hiw-card { padding: 24px 20px; }
  .problem-grid, .steps-grid,
  .features-grid, .hiw-grid-equal { gap: 12px; }

  /* HIW inside FAQ */
  .hiw-in-faq { margin-bottom: 32px; }
  .hiw-in-faq h2 { font-size: 22px; }

  /* FAQ */
  .faq-item summary { font-size: 15px; padding: 16px 20px; }
  .faq-item p, .faq-green-list li { font-size: 13px; }
  .faq-green-list { padding: 0 20px 16px; }

  /* Pricing teaser */
  .pricing-cards-mini { grid-template-columns: 1fr; gap: 12px; }
  .price-card-mini.featured { transform: none; }
  .pricing-teaser h2 { font-size: 26px; }

  /* Final CTA */
  .final-cta p { font-size: 14px; }
  .final-cta .btn-primary { width: 100%; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 13px; }
  .footer-tagline, .footer-copy { font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
}

/* ============================================================
   TABLET — 481px–768px
   ============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .container { padding: 0 20px; }

  .hero h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; gap: 10px; max-width: 320px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; }
  .phone-frame { width: 260px; height: 520px; margin: 0 auto; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  
  .problem h2, .solution h2, .features h2,
  .faq h2, .final-cta h2, .roi-section h2 { font-size: 28px; }
}

/* Footer logo block — tagline centered under PINKE PINKE */
.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-logo-block .logo-link {
  margin-bottom: 0;
}
.footer-logo-block .footer-tagline {
  margin: 0;
  padding-left: 44px; /* align under text, past the icon */
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════════
   PRICE CALCULATOR — interactive seat + duration picker on /preise
   ════════════════════════════════════════════════════════════════════ */
.calc-panel {
  margin: 0 auto 60px;
  max-width: 720px;
  padding: 32px;
  border: 1px solid var(--border-accent, rgba(124,179,66,0.3));
}
.calc-header { text-align: center; margin-bottom: 28px; }
.calc-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--white);
  margin: 0 0 8px;
}
.calc-sub {
  color: var(--gray-200);
  font-size: 14px;
  margin: 0;
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .calc-controls { grid-template-columns: 1fr; gap: 20px; }
}
.calc-control { text-align: center; }
.calc-control > label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-200);
  margin-bottom: 12px;
  font-weight: 600;
}
.calc-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-200);
  opacity: 0.75;
}

/* Seat stepper */
.seat-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
.seat-btn {
  background: transparent;
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.seat-btn:hover { background: rgba(124,179,66,0.15); }
.seat-btn:active { background: rgba(124,179,66,0.25); }
.seat-count {
  display: inline-block;
  min-width: 56px;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 0 8px;
}

/* Duration toggle */
.duration-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.duration-btn {
  background: transparent;
  border: none;
  color: var(--gray-200);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.duration-btn:hover { color: var(--white); }
.duration-btn.active {
  background: var(--emerald);
  color: var(--void);
}

/* Breakdown list */
.calc-breakdown {
  background: rgba(0,0,0,0.20);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.breakdown-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-200);
  margin-bottom: 12px;
  font-weight: 600;
}
.breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.breakdown-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 8px 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.breakdown-line:last-child { border-bottom: none; }
.bl-label   { color: var(--white); font-weight: 500; }
.bl-formula { color: var(--gray-200); font-size: 12px; opacity: 0.7; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.bl-amount  { color: var(--white); font-weight: 600; min-width: 80px; text-align: right; }
@media (max-width: 480px) {
  .breakdown-line {
    grid-template-columns: 1fr auto;
    grid-template-areas: "label amount" "formula formula";
  }
  .bl-label   { grid-area: label; }
  .bl-amount  { grid-area: amount; }
  .bl-formula { grid-area: formula; padding-top: 2px; }
}

.breakdown-totals {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 14px;
  margin-top: 8px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 14px;
  color: var(--gray-200);
}
.breakdown-row-vat { font-size: 13px; opacity: 0.85; }
.breakdown-row-final {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.breakdown-avg {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,0.10);
  text-align: center;
  font-size: 13px;
  color: var(--gray-200);
}
.breakdown-avg span {
  color: var(--white);
  font-weight: 700;
}

.calc-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0;
}

/* ════════════════════════════════════════════════════════════════════
   SETUP-FEE AKTION BANNER — prominent, brand-grün, hebt sich ab
   ════════════════════════════════════════════════════════════════════ */
.setup-action-banner {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.12), rgba(139, 195, 74, 0.08));
  border: 2px solid var(--emerald, #7cb342);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 40px rgba(124, 179, 66, 0.15);
  position: relative;
}
.setup-action-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139, 195, 74, 0.12), transparent 60%);
  border-radius: 14px;
  pointer-events: none;
}
.setup-action-label {
  display: inline-block;
  background: var(--emerald, #7cb342);
  color: var(--void, #04060c);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.setup-action-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.setup-struck {
  color: var(--gray-200, #aaa);
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-thickness: 3px;
  font-family: 'Fraunces', serif;
}
.setup-free {
  color: var(--emerald-bright, #8bc34a);
  font-size: 22px;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  padding: 4px 16px;
  background: rgba(139, 195, 74, 0.15);
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.setup-action-sub {
  color: var(--gray-100, #ddd);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Inline in each pricing card — dezenter */
.setup-inline {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--emerald-bright, #8bc34a);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.setup-inline-struck {
  color: var(--gray-200, #aaa);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-decoration-thickness: 2px;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 600px) {
  .setup-action-banner { padding: 20px 20px; margin-bottom: 32px; }
  .setup-struck { font-size: 16px; }
  .setup-free { font-size: 18px; padding: 3px 12px; }
  .setup-action-price { gap: 10px; }
}

/* ══════════════════════════════════════════════════════════════════
   FEATURE-BADGE "Bald" (für Kundenportal)
   ══════════════════════════════════════════════════════════════════ */
.feature-badge-soon {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--emerald-soft, rgba(124, 179, 66, 0.15));
  color: var(--emerald);
  border: 1px solid rgba(124, 179, 66, 0.35);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ══════════════════════════════════════════════════════════════════
   GEWERKE-SECTION — Laufband + Warteliste
   ══════════════════════════════════════════════════════════════════ */
.gewerke-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, var(--obsidian));
  position: relative;
  overflow: hidden;
}

.gewerke-headline {
  margin: 16px 0 20px;
}

.gewerke-intro {
  max-width: 720px;
  color: var(--gray-100);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 40px;
}

/* Laufband */
.gewerke-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 56px;
  /* Fade links+rechts gegen harten Rand */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.gewerke-marquee {
  display: flex;
  width: max-content;
}

.gewerke-track {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  animation: gewerke-scroll 60s linear infinite;
  will-change: transform;
}

@keyframes gewerke-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gewerke-marquee-wrap:hover .gewerke-track {
  animation-play-state: paused;
}

.gewerke-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #0c1220;
  border: 1px solid rgba(124, 179, 66, 0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #8bc34a;
  white-space: nowrap;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.2px;
}

/* Warteliste */
.gewerke-waitlist {
  max-width: 720px;
  background: var(--onyx, #0c1220);
  border: 1px solid var(--border-light, rgba(255,255,255,0.1));
  border-radius: 20px;
  padding: 40px 44px;
}

.gewerke-waitlist-head h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--silver, #e4e8ef);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.gewerke-waitlist-head p {
  color: var(--gray-200, #c8d0dc);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.gewerke-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.gewerke-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--silver-dim, #9aa3b0);
  cursor: pointer;
}
.gewerke-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--brand-green, #8fc320);
  cursor: pointer;
}
.gewerke-consent a {
  color: var(--brand-green, #8fc320);
  text-decoration: underline;
}

.gewerke-select,
.gewerke-email {
  background: var(--void, #04060c);
  border: 1px solid var(--border-light, rgba(255,255,255,0.1));
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--silver, #e4e8ef);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.gewerke-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%239aa5b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.gewerke-select:focus,
.gewerke-email:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow, rgba(124, 179, 66, 0.15));
}

.gewerke-submit {
  white-space: nowrap;
}

.gewerke-success {
  display: none;
  padding: 18px 22px;
  background: rgba(124, 179, 66, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 12px;
  color: var(--silver, #e4e8ef);
  font-size: 15px;
  line-height: 1.5;
}
.gewerke-success strong { color: var(--emerald); font-weight: 600; }

/* Tablet/Mobile */
@media (max-width: 768px) {
  .gewerke-section { padding: 64px 0; }
  .gewerke-waitlist { padding: 28px 22px; }
  .gewerke-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gewerke-chip { padding: 8px 16px; font-size: 13px; }
  .gewerke-track { animation-duration: 45s; }
  .gewerke-submit { width: 100%; padding: 16px; }
}



/* ════════════════════════════════════════════════════════════════
   v3.4.4 — Trust Strip (auf-Brand mit existing trust-check style)
   ════════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 48px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.04) 50%, transparent 100%);
  border-top: 1px solid rgba(154, 165, 184, 0.1);
  border-bottom: 1px solid rgba(154, 165, 184, 0.1);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-strip .trust-item-clean {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.5;
  align-items: flex-start;
}
.trust-strip .trust-item-clean .trust-check {
  margin-top: 3px;
  flex-shrink: 0;
}
.trust-strip .trust-item-clean strong {
  color: var(--white, #fff);
  font-weight: 600;
}
@media (max-width: 720px) {
  .trust-strip { padding: 32px 0; }
  .trust-strip-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.0 — Billing-Mode-Badges in Plan-Cards
   ════════════════════════════════════════════════════════════════ */
.billing-mode-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  margin-top: 8px;
}
.billing-monthly {
  background: rgba(124, 179, 66, 0.15);
  color: #7cb342;
  border: 1px solid rgba(124, 179, 66, 0.3);
}
.billing-upfront {
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ════════════════════════════════════════════════════════════════
   v3.5.3 — FAQ Step-List (Wie fange ich an?)
   Saubere Grid-Ausrichtung mit nummerierten Kreisen.
   Mobile: stapelt sich vertikal mit korrektem Wrap.
   ════════════════════════════════════════════════════════════════ */
.faq-step-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-step-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.faq-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(124, 179, 66, 0.15);
  color: var(--emerald, #7cb342);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  font-family: inherit;
  margin-top: 1px;
}
.faq-step-body { min-width: 0; }
.faq-step-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--white, #e4e8ef);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.faq-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .faq-step-list { gap: 14px; }
  .faq-step-list li { gap: 10px; grid-template-columns: 26px 1fr; }
  .faq-step-num { width: 24px; height: 24px; font-size: 12px; }
  .faq-step-title { font-size: 14px; }
  .faq-step-desc { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════
   v2.5.60 — E-Rechnung Specs (ersetzt weißen SVG-Badge)
   Themen-konsistente Spec-Liste statt weißem Block
   ════════════════════════════════════════════════════════════════ */
.erechnung-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(124, 179, 66, 0.15);
}
.erechnung-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.4;
}
.erechnung-spec strong {
  color: var(--text-primary, #e4e8ef);
  font-weight: 600;
}

@media (max-width: 480px) {
  .erechnung-spec { font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   v2.5.60 — Hero Trust-Items: Single-Column auf Mobile
   War vorher chaotisch auf 2 Spalten. Auf <480px volle Breite,
   ein Item pro Zeile — sauber lesbar.
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero-trust .trust-item {
    font-size: 13px;
    width: 100%;
  }
}

/* Tablet 481-680px: 2 saubere Spalten mit gleichmäßiger Breite */
@media (min-width: 481px) and (max-width: 680px) {
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
  .hero-trust .trust-item { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.8 — Gewerk-Switcher + Hero-Erweiterungen
   ════════════════════════════════════════════════════════════════ */

/* Gewerk-Switcher (Tabs im Hero) */
.hero-gewerk-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(154, 165, 184, 0.18);
  border-radius: 999px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.gewerk-tab {
  padding: 8px 18px;
  border: 0;
  background: transparent;
  color: var(--gray-200, #c8d0dc);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.gewerk-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white, #e4e8ef);
}
.gewerk-tab.active {
  background: var(--emerald, #7cb342);
  color: #0a0a0a;
}
.gewerk-tab.active:hover {
  background: var(--emerald, #7cb342);
}

/* Schmerz-Zeile im Hero */
.hero-pain {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: var(--gray-200, #c8d0dc);
  margin: -8px 0 18px;
  line-height: 1.4;
  max-width: 540px;
}

/* Tagline (zweite Headline kleiner) */
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--white, #e4e8ef);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  opacity: 0.85;
}

/* Mobile-Anpassungen */
@media (max-width: 720px) {
  .hero-gewerk-switcher {
    width: 100%;
    justify-content: stretch;
  }
  .gewerk-tab {
    flex: 1;
    padding: 8px 6px;
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .hero-pain {
    font-size: 16px;
    margin: -4px 0 14px;
  }
  .hero-tagline {
    font-size: 18px;
    margin: 0 0 14px;
  }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.8 — "Tag-im-Leben"-Vergleich
   ════════════════════════════════════════════════════════════════ */
.day-compare-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(124, 179, 66, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #04060c 0%, #06080e 100%);
}
.day-compare-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 12px;
  max-width: 700px;
}
.day-compare-section .section-sub {
  font-size: 18px;
  color: var(--gray-100);
  margin: 0 0 56px;
  max-width: 640px;
  line-height: 1.6;
}
.day-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.day-compare-col {
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid rgba(154, 165, 184, 0.12);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}
.day-compare-col.with-pp {
  border-color: rgba(124, 179, 66, 0.3);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 179, 66, 0.06) 0%, transparent 70%),
    rgba(12, 18, 32, 0.7);
}
.day-compare-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 8px;
  font-weight: 600;
}
.day-compare-col.with-pp .day-compare-label {
  color: var(--emerald);
}
.day-compare-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 28px;
}
.day-compare-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.day-compare-timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(154, 165, 184, 0.08);
  align-items: baseline;
}
.day-compare-timeline li:last-child { border-bottom: 0; }
.day-compare-timeline .day-when {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  color: var(--gray-200);
  letter-spacing: 0.5px;
}
.day-compare-timeline .day-what {
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.5;
}
.day-compare-col.with-pp .day-compare-timeline .day-what {
  color: var(--white);
}
.day-compare-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(154, 165, 184, 0.15);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.day-compare-col.with-pp .day-compare-result {
  border-top-color: rgba(124, 179, 66, 0.3);
  color: var(--emerald);
}
.day-compare-result small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: var(--gray-200);
  margin-top: 4px;
  letter-spacing: 0;
}
.day-compare-footer {
  text-align: center;
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(12, 18, 32, 0.5);
  border: 1px solid rgba(154, 165, 184, 0.1);
  border-radius: 10px;
}
.day-compare-footer p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.4;
}
.day-compare-footer small {
  display: block;
  font-size: 13px;
  color: var(--gray-200);
  font-style: normal;
}

@media (max-width: 720px) {
  .day-compare-section { padding: 60px 0; }
  .day-compare-section h2 { font-size: 28px; }
  .day-compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .day-compare-col { padding: 22px 18px; }
  .day-compare-title { font-size: 20px; }
  .day-compare-timeline li { grid-template-columns: 70px 1fr; gap: 10px; }
  .day-compare-footer p { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.8 — Testimonial-Section
   ════════════════════════════════════════════════════════════════ */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #04060c 0%, #07090f 50%, #04060c 100%);
  text-align: center;
}
.testimonial-section blockquote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  position: relative;
}
.testimonial-section blockquote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: var(--emerald);
  opacity: 0.4;
  line-height: 1;
  font-family: 'Fraunces', serif;
}
.testimonial-cite {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-200);
  letter-spacing: 0.3px;
}
.testimonial-cite-role {
  font-weight: 400;
  color: var(--gray-200);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .testimonial-section { padding: 60px 0; }
  .testimonial-section blockquote { font-size: 22px; }
  .testimonial-section blockquote::before { font-size: 70px; top: -28px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.12 — Mobile-Conversion-Optimierungen
   - Sticky-CTA-Bar
   - Hero-Straffung (Trust-Items kompakter)
   - Loss-Frame im ROI-Rechner
   - Progressive Disclosure (Features + FAQ)
   ════════════════════════════════════════════════════════════════ */

/* ─── Sticky-CTA-Bar (Mobile only) ─── */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 16px;
  background: rgba(12, 18, 32, 0.96);
  border: 1px solid rgba(124, 179, 66, 0.4);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta-btn {
  flex: 1;
  display: block;
  padding: 14px 16px;
  background: var(--emerald, #7cb342);
  color: #0a0a0a;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.sticky-cta-btn:hover { background: #8bc24a; }
.sticky-cta-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 165, 184, 0.2);
  color: var(--gray-200, #c8d0dc);
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  font-family: inherit;
  padding: 0;
}
.sticky-cta-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Nur auf Mobile zeigen — auf Desktop wäre die obere Nav-CTA besser */
@media (min-width: 901px) {
  .sticky-cta { display: none !important; }
}

/* ─── Loss-Frame Banner ─── */
.roi-loss-banner {
  text-align: center;
  padding: 24px 16px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(231, 76, 60, 0.03) 100%);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 10px;
}
.roi-loss-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-200, #c8d0dc);
  font-weight: 600;
  margin-bottom: 8px;
}
.roi-loss-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.roi-loss-sub {
  font-size: 13px;
  color: var(--gray-200, #c8d0dc);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .roi-loss-banner { padding: 20px 14px; margin-bottom: 22px; }
  .roi-loss-amount { font-size: 42px; }
  .roi-loss-sub { font-size: 12px; }
}

/* ─── Hero-Straffung auf Mobile ─── */
@media (max-width: 720px) {
  /* Trust-Items kompakter, aber alle sichtbar */
  .hero-trust { gap: 6px 12px; margin-bottom: 16px; }
  /* Tagline kleiner */
  .hero-tagline { font-size: 16px; margin-bottom: 12px; opacity: 0.75; }
  /* Sub kürzer Padding */
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  /* Pain etwas dezenter */
  .hero-pain { font-size: 15px; margin: -2px 0 12px; }
  /* Phone-Demo kleiner damit sie nicht halb-Bildschirm frisst */
  .phone-frame { width: 220px !important; height: 440px !important; }
}

/* ─── Progressive Disclosure (Features + FAQ) ─── */
.disclosure-fade {
  position: relative;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.disclosure-fade.collapsed {
  max-height: 460px;
}
.disclosure-fade.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, #04060c 100%);
  pointer-events: none;
}
.disclosure-toggle-wrap {
  text-align: center;
  margin-top: 20px;
}
.disclosure-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(154, 165, 184, 0.2);
  color: var(--white, #e4e8ef);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.disclosure-toggle:hover {
  background: rgba(124, 179, 66, 0.08);
  border-color: rgba(124, 179, 66, 0.3);
}
.disclosure-toggle .toggle-arrow {
  transition: transform 0.2s;
}
.disclosure-toggle.expanded .toggle-arrow {
  transform: rotate(180deg);
}

/* Disclosure nur auf Mobile aktiv — auf Desktop alle Features sichtbar */
@media (min-width: 721px) {
  .disclosure-fade { max-height: none !important; }
  .disclosure-fade::after { display: none !important; }
  .disclosure-toggle-wrap { display: none !important; }
}

/* FAQ Progressive Disclosure (nur auf Mobile aktiv) */
@media (max-width: 720px) {
  .faq-hidden { display: none; }
}
@media (min-width: 721px) {
  .faq-hidden { display: block !important; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.14 — Demo-Story Section (8-Stage Animated Flow)
   ════════════════════════════════════════════════════════════════ */
.demo-story-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 179, 66, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #04060c 0%, #06080e 100%);
}
.demo-story-h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white, #e4e8ef);
  margin: 0 0 12px;
}
.demo-story-sub {
  font-size: 17px;
  color: var(--gray-100, #c8d0dc);
  line-height: 1.5;
  margin: 0 0 48px;
  max-width: 640px;
}
.demo-story-frame {
  background: rgba(12, 18, 32, 0.6);
  border: 1px solid rgba(154, 165, 184, 0.14);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.demo-story-stage {
  position: relative;
  height: 480px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  overflow: hidden;
}

.ds-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.ds-stage.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Caption (gleiches Pattern für alle Stages) */
.ds-caption {
  text-align: center;
  max-width: 520px;
}
.ds-caption-when {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(124, 179, 66, 0.12);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 999px;
  color: var(--emerald, #7cb342);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: ui-monospace, monospace;
}
.ds-caption-text {
  font-size: 16px;
  color: var(--white, #e4e8ef);
  line-height: 1.5;
}

/* ─── Stage 1: Baustelle ─── */
.ds-baustelle {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 280px;
  background: linear-gradient(180deg, #1a2030 0%, #0d1320 100%);
  border-radius: 12px;
  overflow: hidden;
}
.ds-baustelle-scene {
  position: absolute;
  inset: 0;
}
.ds-room-illu {
  position: absolute;
  inset: 0;
  background-image:
    /* Wandlinien */
    linear-gradient(0deg, transparent 60%, rgba(124, 179, 66, 0.06) 60%, rgba(124, 179, 66, 0.06) 61%, transparent 61%),
    linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 31%, transparent 31%),
    linear-gradient(90deg, transparent 0%, transparent 70%, rgba(255,255,255,0.04) 70%, rgba(255,255,255,0.04) 71%, transparent 71%),
    /* Boden-Fliesen-Pattern */
    repeating-linear-gradient(45deg, rgba(124, 179, 66, 0.04) 0 12px, transparent 12px 24px);
}
.ds-clock {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--emerald, #7cb342);
  letter-spacing: 1px;
}
.ds-figure {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 200px;
}
.ds-figure-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 130px;
  background: linear-gradient(180deg, var(--emerald, #7cb342) 0%, #5a8030 100%);
  border-radius: 30px 30px 8px 8px;
}
.ds-figure-body::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #d4a574;
  border-radius: 50%;
}
.ds-figure-tape {
  position: absolute;
  bottom: 60px;
  right: -20px;
  width: 60px;
  height: 4px;
  background: var(--gold, #d4af37);
  border-radius: 2px;
  transform: rotate(-15deg);
}
.ds-figure-phone {
  position: absolute;
  bottom: 80px;
  left: -10px;
  width: 28px;
  height: 44px;
  background: #0c1220;
  border: 1.5px solid var(--emerald, #7cb342);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ds-phone-pulse 1.5s ease-in-out infinite;
}
.ds-figure-phone-mic {
  font-size: 14px;
  filter: grayscale(0.3);
}
@keyframes ds-phone-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(124, 179, 66, 0); }
}

/* ─── Stage 2: Voice-Aufnahme ─── */
.ds-phone-large {
  width: 280px;
  height: 360px;
  background: linear-gradient(180deg, #0c1220 0%, #04060c 100%);
  border: 2px solid rgba(124, 179, 66, 0.3);
  border-radius: 32px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.ds-phone-large::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #04060c;
  border-radius: 0 0 12px 12px;
}
.ds-phone-screen {
  width: 100%;
  height: 100%;
  background: #04060c;
  border-radius: 22px;
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.ds-phone-time {
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 11px;
  color: var(--gray-200, #9aa5b8);
  font-family: ui-monospace, monospace;
}
.ds-phone-mic-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(124, 179, 66, 0.15);
  border: 2px solid var(--emerald, #7cb342);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald, #7cb342);
  margin: 24px 0 16px;
  animation: ds-mic-pulse 1.6s ease-in-out infinite;
}
.ds-phone-mic-circle svg { width: 36px; height: 36px; }
@keyframes ds-mic-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 16px rgba(124, 179, 66, 0);
  }
}
.ds-phone-waves {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 24px;
  margin-bottom: 16px;
}
.ds-phone-waves span {
  width: 3px;
  background: var(--emerald, #7cb342);
  border-radius: 2px;
  animation: ds-wave 1s ease-in-out infinite;
}
.ds-phone-waves span:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.ds-phone-waves span:nth-child(2) { height: 16px; animation-delay: 0.1s;  }
.ds-phone-waves span:nth-child(3) { height: 12px; animation-delay: 0.2s;  }
.ds-phone-waves span:nth-child(4) { height: 20px; animation-delay: 0.15s; }
.ds-phone-waves span:nth-child(5) { height: 14px; animation-delay: 0.05s; }
.ds-phone-waves span:nth-child(6) { height: 18px; animation-delay: 0.25s; }
.ds-phone-waves span:nth-child(7) { height: 10px; animation-delay: 0.1s;  }
.ds-phone-waves span:nth-child(8) { height: 22px; animation-delay: 0.2s;  }
.ds-phone-waves span:nth-child(9) { height: 14px; animation-delay: 0s;    }
.ds-phone-waves span:nth-child(10){ height: 16px; animation-delay: 0.15s; }
@keyframes ds-wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.2); }
}
.ds-phone-transcript {
  font-size: 13px;
  line-height: 1.45;
  color: var(--white, #e4e8ef);
  text-align: center;
  min-height: 60px;
  font-family: 'Inter', sans-serif;
  padding: 0 8px;
}
.ds-phone-transcript::after {
  content: '|';
  color: var(--emerald, #7cb342);
  animation: ds-cursor-blink 0.8s steps(2) infinite;
}
@keyframes ds-cursor-blink {
  50% { opacity: 0; }
}

/* ─── Stage 3: Verarbeitung ─── */
.ds-processing {
  text-align: center;
}
.ds-processing-spinner {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(124, 179, 66, 0.15);
  border-top-color: var(--emerald, #7cb342);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: ds-spin 1s linear infinite;
}
@keyframes ds-spin {
  to { transform: rotate(360deg); }
}
.ds-processing-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--white, #e4e8ef);
  margin-bottom: 24px;
}
.ds-processing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.ds-processing-list li {
  font-size: 14px;
  color: var(--gray-200, #c8d0dc);
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(154, 165, 184, 0.1);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
}
.ds-processing-list li::before {
  content: '○ ';
  color: var(--gray-200, #9aa5b8);
  font-weight: 700;
  margin-right: 6px;
}
.ds-stage[data-stage="3"].active .ds-processing-list li {
  animation: ds-list-pop 0.4s ease forwards;
}
.ds-stage[data-stage="3"].active .ds-processing-list li:nth-child(1) { animation-delay: 0.4s; }
.ds-stage[data-stage="3"].active .ds-processing-list li:nth-child(2) { animation-delay: 1.0s; }
.ds-stage[data-stage="3"].active .ds-processing-list li:nth-child(3) { animation-delay: 1.6s; }
.ds-stage[data-stage="3"].active .ds-processing-list li:nth-child(4) { animation-delay: 2.2s; }
@keyframes ds-list-pop {
  to {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(124, 179, 66, 0.3);
    color: var(--white, #e4e8ef);
  }
}
.ds-processing-list li.checked::before {
  content: '✓ ';
  color: var(--emerald, #7cb342);
}

/* ─── Stage 4 + 5: Quote-Result ─── */
.ds-quote-result {
  width: 100%;
  max-width: 480px;
  background: rgba(12, 18, 32, 0.85);
  border: 1px solid rgba(154, 165, 184, 0.18);
  border-radius: 12px;
  padding: 20px;
}
.ds-quote-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(154, 165, 184, 0.1);
  margin-bottom: 14px;
}
.ds-quote-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white, #e4e8ef);
}
.ds-quote-meta {
  font-size: 11px;
  color: var(--gray-200, #9aa5b8);
  font-family: ui-monospace, monospace;
}
.ds-quote-positions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.ds-pos {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-100, #c8d0dc);
  padding: 6px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.ds-pos.visible {
  opacity: 1;
  transform: translateY(0);
}
.ds-pos-name { flex: 1; }
.ds-pos-amount {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--white, #e4e8ef);
}
.ds-quote-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(154, 165, 184, 0.1);
  font-size: 14px;
  color: var(--white, #e4e8ef);
}
.ds-quote-amount {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--emerald, #7cb342);
  font-weight: 600;
}

/* Stage 5 specific */
.ds-quote-edit {
  position: relative;
}
.ds-edit-status {
  font-size: 11px;
  color: var(--gold, #d4af37);
  font-style: italic;
  font-family: ui-monospace, monospace;
}
.ds-edit-input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--emerald, #7cb342);
  color: var(--white, #e4e8ef);
  font-family: ui-monospace, monospace;
  font-size: 13px;
  width: 60px;
  text-align: right;
  padding: 2px 4px;
  animation: ds-edit-highlight 1.4s ease-in-out;
}
@keyframes ds-edit-highlight {
  0%, 100% { background: transparent; }
  50% { background: rgba(124, 179, 66, 0.15); }
}
.ds-edit-cursor {
  position: absolute;
  top: 50px;
  right: 60px;
  font-size: 12px;
  color: var(--emerald, #7cb342);
  font-family: ui-monospace, monospace;
  opacity: 0;
  animation: ds-cursor-fade 1.5s ease;
}
@keyframes ds-cursor-fade {
  0% { opacity: 0; transform: translate(-20px, -10px); }
  30% { opacity: 1; transform: translate(0, 0); }
  100% { opacity: 0; transform: translate(0, 0); }
}

/* ─── Stage 6: PDF ─── */
.ds-pdf {
  width: 100%;
  max-width: 420px;
  background: #f8f6f0;
  color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: ds-pdf-rise 0.6s ease;
}
@keyframes ds-pdf-rise {
  from { opacity: 0; transform: translateY(20px) rotate(-1deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.ds-pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.ds-pdf-logo {
  font-size: 14px;
  color: #1a1a1a;
}
.ds-pdf-num {
  font-family: ui-monospace, monospace;
  color: #5a5a5a;
  font-size: 11px;
}
.ds-pdf-line {
  height: 1px;
  background: #c8c0a8;
  margin: 8px 0;
}
.ds-pdf-client {
  display: flex;
  gap: 14px;
  font-size: 11px;
  margin: 10px 0;
}
.ds-pdf-client > div:first-child {
  color: #888;
  min-width: 30px;
}
.ds-pdf-positions .ds-pos {
  border-bottom: 1px dashed #d8d0b8;
  padding: 4px 0;
  font-size: 11px;
  color: #1a1a1a;
}
.ds-pdf-positions .ds-pos-amount {
  color: #1a1a1a;
}
.ds-pdf-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
  margin-top: 8px;
}

/* ─── Stage 7: Mail ─── */
.ds-mail {
  width: 100%;
  max-width: 460px;
  background: rgba(12, 18, 32, 0.95);
  border: 1px solid rgba(154, 165, 184, 0.18);
  border-radius: 12px;
  padding: 18px;
}
.ds-mail-header {
  border-bottom: 1px solid rgba(154, 165, 184, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.ds-mail-row {
  font-size: 13px;
  color: var(--white, #e4e8ef);
  margin: 4px 0;
}
.ds-mail-row span {
  display: inline-block;
  min-width: 60px;
  color: var(--gray-200, #9aa5b8);
  font-size: 11px;
}
.ds-mail-body {
  font-size: 12px;
  color: var(--gray-100, #c8d0dc);
  line-height: 1.6;
}
.ds-mail-body p { margin: 6px 0; }
.ds-mail-attachment {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(124, 179, 66, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--emerald, #7cb342);
  font-family: ui-monospace, monospace;
  display: inline-block;
}
.ds-mail-action {
  margin-top: 14px;
  text-align: right;
  position: relative;
  height: 40px;
}
.ds-mail-send {
  background: var(--emerald, #7cb342);
  color: #0a0a0a;
  border: 0;
  border-radius: 6px;
  padding: 9px 24px;
  font-weight: 700;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.ds-stage[data-stage="7"].active .ds-mail-send {
  animation: ds-btn-clicked 0.5s ease 1.2s forwards;
}
@keyframes ds-btn-clicked {
  0% { transform: scale(1); }
  50% { transform: scale(0.92); background: #5a8030; }
  100% { transform: scale(1); opacity: 0; }
}
.ds-mail-sent-confirm {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 24px;
  background: rgba(124, 179, 66, 0.18);
  border: 1px solid var(--emerald, #7cb342);
  border-radius: 6px;
  color: var(--emerald, #7cb342);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
}
.ds-stage[data-stage="7"].active .ds-mail-sent-confirm {
  animation: ds-confirm-appear 0.4s ease 1.7s forwards;
}
@keyframes ds-confirm-appear {
  to { opacity: 1; }
}

/* ─── Stage 8: Outcome ─── */
.ds-outcome {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 70%, rgba(124, 179, 66, 0.08) 0%, transparent 60%);
  padding: 40px 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 540px;
}
.ds-outcome-headline {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white, #e4e8ef);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ds-outcome-headline br + * {
  color: var(--emerald, #7cb342);
}
.ds-outcome-sub {
  font-size: 16px;
  color: var(--gray-100, #c8d0dc);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 28px;
}
.ds-outcome-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--emerald, #7cb342);
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: background 0.15s;
}
.ds-outcome-cta:hover {
  background: #8bc24a;
}

/* ─── Controls (Progress + Buttons) ─── */
.ds-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(154, 165, 184, 0.1);
}
.ds-progress {
  flex: 1;
  height: 4px;
  background: rgba(154, 165, 184, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.ds-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--emerald, #7cb342);
  border-radius: 2px;
  transition: width 0.2s linear;
}
.ds-progress-dots {
  display: flex;
  gap: 6px;
}
.ds-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(154, 165, 184, 0.25);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.ds-dot:hover { background: rgba(154, 165, 184, 0.5); }
.ds-dot.active { background: var(--emerald, #7cb342); }
.ds-buttons {
  display: flex;
  gap: 6px;
}
.ds-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(154, 165, 184, 0.18);
  color: var(--gray-100, #c8d0dc);
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}
.ds-btn:hover {
  background: rgba(124, 179, 66, 0.1);
  color: var(--emerald, #7cb342);
}
.ds-btn .ds-icon-play { display: none; }
.ds-btn.paused .ds-icon-pause { display: none; }
.ds-btn.paused .ds-icon-play { display: inline; }

/* ─── Mobile-Anpassungen ─── */
@media (max-width: 720px) {
  .demo-story-section { padding: 60px 0; }
  .demo-story-h2 { font-size: 28px; }
  .demo-story-sub { font-size: 14px; margin-bottom: 28px; }
  .demo-story-stage { height: 480px; }
  .ds-stage { padding: 20px; gap: 16px; }
  .ds-caption-text { font-size: 14px; }
  .ds-baustelle { height: 220px; }
  .ds-figure { width: 100px; height: 160px; }
  .ds-figure-body { width: 50px; height: 100px; }
  .ds-figure-body::before { width: 28px; height: 28px; top: -22px; }
  .ds-phone-large { width: 220px; height: 320px; }
  .ds-quote-result, .ds-pdf, .ds-mail { padding: 14px; }
  .ds-quote-title, .ds-pdf-logo { font-size: 14px; }
  .ds-pos { font-size: 12px; }
  .ds-quote-amount, .ds-pdf-total span:last-child { font-size: 18px; }
  .ds-outcome-headline { font-size: 32px; }
  .ds-outcome-sub { font-size: 14px; }
  .ds-outcome-cta { width: 100%; }
  .ds-progress-dots { display: none; }
  .ds-controls { padding: 12px 14px; }
  .ds-processing-title { font-size: 18px; }
  .ds-processing-list li { font-size: 12px; padding: 6px 10px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5.15 — ROI Stop-Icon + Loss-Banner Layout-Fixes
   ════════════════════════════════════════════════════════════════ */
.roi-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.roi-sub .roi-stop-icon {
  flex-shrink: 0;
  color: var(--emerald, #7cb342);
}
.roi-sub > span {
  flex: 1;
}
@media (max-width: 720px) {
  .roi-sub { gap: 10px; align-items: flex-start; }
  .roi-sub .roi-stop-icon {
    width: 18px; height: 18px;
    margin-top: 3px;
  }
}

/* Loss-Banner Layout straffen: zentriert, klare Hierarchie, mehr Atem */
.roi-loss-banner {
  margin-top: 10px;
  margin-bottom: 32px;
}
.roi-loss-label,
.roi-loss-amount,
.roi-loss-sub {
  display: block;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   v2.5.62 — was-du-bekommst.html Page Styles
   ════════════════════════════════════════════════════════════════ */

/* PAGE-HERO */
.features-page-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.features-page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--text-primary, #e4e8ef);
}
.features-page-hero .emerald {
  color: var(--emerald, #7cb342);
}
.features-page-sub {
  font-size: 18px;
  color: var(--gray-200, #c4cad6);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .features-page-hero { padding: 56px 0 32px; }
  .features-page-sub { font-size: 16px; }
}

/* HIGHLIGHT FEATURE — Einkaufsliste */
.highlight-feature {
  padding: 60px 0 80px;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(124,179,66,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(124,179,66,0.05) 0%, transparent 60%);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .highlight-grid { grid-template-columns: 1fr; gap: 40px; }
}

.highlight-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  color: var(--text-primary, #e4e8ef);
}
.highlight-headline .hf-line-1 { display: block; }
.highlight-headline .hf-line-2 { display: block; color: var(--emerald, #7cb342); }

.highlight-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary, #e4e8ef);
  margin-bottom: 16px;
  line-height: 1.5;
}
.highlight-explainer {
  font-size: 15px;
  color: var(--gray-200, #c4cad6);
  line-height: 1.6;
  margin-bottom: 32px;
}

.highlight-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hf-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hf-feature-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(124,179,66,0.15);
  border: 1px solid rgba(124,179,66,0.35);
  color: var(--emerald, #7cb342);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}
.hf-feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary, #e4e8ef);
  margin: 4px 0 4px;
}
.hf-feature-text p {
  font-size: 14px;
  color: var(--gray-200, #c4cad6);
  line-height: 1.55;
}

/* PDF-MOCKUP — Visualisierung der Einkaufsliste */
.highlight-visual {
  position: relative;
}
.hf-pdf-mockup {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 8px 16px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11.5px;
  line-height: 1.45;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
}
@media (max-width: 960px) {
  .hf-pdf-mockup { transform: none; }
}

.hf-pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--emerald, #7cb342);
  margin-bottom: 14px;
}
.hf-pdf-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hf-pdf-logo {
  width: 36px;
  height: 36px;
  position: relative;
  transform: rotate(45deg);
}
.hf-pdf-tile {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 2px;
}
.hf-pdf-tile.hf-t1 { top: 0;    left: 0;    background: #ffffff; border: 1px solid #c9d0db; }
.hf-pdf-tile.hf-t2 { top: 0;    left: 18px; background: #e8e8e8; border: 1px solid #c9d0db; }
.hf-pdf-tile.hf-t3 { top: 18px; left: 0;    background: #6e9533; }
.hf-pdf-tile.hf-t4 { top: 18px; left: 18px; background: #7cb342; }

.hf-pdf-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}
.hf-pdf-name .emerald { color: var(--emerald, #7cb342); }
.hf-pdf-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #888;
  text-transform: uppercase;
  margin-top: 2px;
}
.hf-pdf-meta {
  text-align: right;
  font-size: 10px;
  line-height: 1.4;
}
.hf-pdf-meta-label {
  color: #999;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hf-pdf-meta-value {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 11px;
}

.hf-pdf-title {
  margin-bottom: 14px;
}
.hf-pdf-title-h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.hf-pdf-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.hf-pdf-stat {
  display: inline-block;
  padding: 2px 8px;
  background: #f4f7ed;
  border: 1px solid #c5d8a4;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 500;
  color: #3d5a1a;
}

.hf-pdf-group {
  margin-bottom: 14px;
}
.hf-pdf-group-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--emerald, #7cb342);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #d8e3c4;
  margin-bottom: 6px;
}
.hf-pdf-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #ececec;
}
.hf-pdf-row:last-child { border-bottom: none; }
.hf-pdf-check {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--emerald, #7cb342);
  border-radius: 2px;
}
.hf-pdf-name-col {
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
}
.hf-pdf-name-col small {
  display: block;
  font-size: 9px;
  color: #888;
  font-weight: 400;
  margin-top: 1px;
}
.hf-pdf-qty {
  font-size: 11px;
  white-space: nowrap;
  color: #1a1a1a;
  text-align: right;
}
.hf-pdf-qty strong { font-weight: 700; }

.hf-pdf-footer {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-size: 8px;
  color: #999;
}

/* CTA Block am Ende */
.features-cta {
  padding: 80px 0;
  text-align: center;
}
.features-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary, #e4e8ef);
}
.features-cta p {
  font-size: 17px;
  color: var(--gray-200, #c4cad6);
  margin-bottom: 32px;
}
.features-cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-text-link {
  color: var(--gray-200, #9aa5b8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 4px;
  transition: color 0.15s ease;
  text-decoration: none;
}
.cta-text-link:hover {
  color: var(--emerald, #7cb342);
}


/* ════════════════════════════════════════════════════════════════
   v2.5.62 — Features-Teaser auf index.html (statt voller Features-Grid)
   ════════════════════════════════════════════════════════════════ */
.features-teaser {
  padding: 80px 0;
  text-align: center;
}
.features-teaser h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  color: var(--text-primary, #e4e8ef);
}
.features-teaser h2 .emerald { color: var(--emerald, #7cb342); }
.features-teaser-sub {
  font-size: 17px;
  color: var(--gray-200, #c4cad6);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 32px;
}
.features-teaser-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.ft-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(124,179,66,0.08);
  border: 1px solid rgba(124,179,66,0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-200, #c4cad6);
}
.ft-pill-highlight {
  background: rgba(124,179,66,0.18);
  border-color: rgba(124,179,66,0.55);
  color: var(--emerald, #7cb342);
  font-weight: 600;
}
.features-teaser-cta {
  margin-top: 8px;
}
@media (max-width: 640px) {
  .features-teaser { padding: 60px 0; }
  .features-teaser-sub { font-size: 15px; }
  .ft-pill { font-size: 12px; padding: 6px 12px; }
}

