:root {
  /* DeepGrowth Brand-System (Logo A1_v01_navy_gold_geistbold) */
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-dark: #1a2540;     /* Navy aus Logo */
  --navy: #1a2540;
  --navy-line: #2a3653;
  --gold: #b07f0e;        /* Gold-Akzent aus Logo */
  --gold-soft: #d49a1f;
  --gold-bg: #fdf6e3;
  /* Backward-compat aliases (alte Klassen sollen weiterleben) */
  --teal: #b07f0e;        /* alte teal-Aufrufe → Gold */
  --teal-line: #d49a1f;
  --amber: #b07f0e;
  --amber-bg: #fdf6e3;
  --ink: #1a2540;
  --ink-2: #2d3a4a;
  --ink-3: #6b7280;
  --line: #e4e6eb;
  --line-soft: #f1f3f6;
  --ff-display: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-body: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand-deep { color: var(--ink); }
.brand-growth { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--teal); }
.breadcrumb {
  font-size: 13px;
  color: var(--ink-3);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

@media (max-width: 760px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero-vertical {
  padding: 80px 0 60px;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-vertical h1 {
  font-size: clamp(36px, 5.5vw, 60px);
}
.hero h1 .accent { color: var(--teal); }
.hero-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 40px;
}
.hero-vertical .hero-lede {
  font-size: 18px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
  font-family: var(--ff-body);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: white;
}

/* === HERO OUTCOME BANNER (Vertical-Spezifisch) === */
.outcome-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--amber-bg);
  border-left: 4px solid var(--amber);
  padding: 18px 26px;
  margin-bottom: 36px;
  border-radius: 0 8px 8px 0;
}
.outcome-banner-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.outcome-banner-label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-2);
}

/* === PROOF STRIP === */
.proof-strip {
  background: var(--bg-soft);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.proof-item { text-align: left; }
.proof-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.proof-value .unit {
  font-size: 0.5em;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 4px;
}
.proof-label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.section-narrow { padding: 80px 0; }
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section h2 .accent { color: var(--teal); }
.section-intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* === VERTICAL CARDS (Hub) === */
.verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertical-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.vertical-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 74, 77, 0.08);
}
.vertical-tag {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.vertical-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.vertical-outcome {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.vertical-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
  flex: 1;
}
.vertical-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vertical-arrow::after {
  content: '→';
  transition: transform 0.15s;
}
.vertical-card:hover .vertical-arrow::after { transform: translateX(4px); }
@media (max-width: 900px) {
  .verticals { grid-template-columns: 1fr; }
}

/* === METHODE === */
.methode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.methode-col {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  background: var(--bg);
}
.methode-col:last-child { border-right: none; }
.methode-col.featured {
  background: var(--bg-dark);
  color: white;
}
.methode-tag {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.methode-col.featured .methode-tag { color: var(--amber); }
.methode-col h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.methode-col.featured h3 { color: white; }
.methode-claim {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}
.methode-col.featured .methode-claim { color: white; }
.methode-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.methode-col.featured .methode-desc { color: rgba(255, 255, 255, 0.85); }
.methode-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}
.methode-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-2);
}
.methode-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.methode-col.featured .methode-list li { color: rgba(255, 255, 255, 0.85); }
.methode-col.featured .methode-list li::before { color: var(--amber); }
@media (max-width: 900px) {
  .methode { grid-template-columns: 1fr; }
  .methode-col { border-right: none; border-bottom: 1px solid var(--line); }
  .methode-col:last-child { border-bottom: none; }
}

/* === PAIN POINTS (Vertical) === */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-card {
  background: var(--bg-soft);
  border-left: 3px solid #dc2626;
  padding: 28px 28px;
  border-radius: 0 8px 8px 0;
}
.pain-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  color: #dc2626;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.pain-card h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* === SOLUTION GRID === */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 32px;
}
.sol-tag {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.sol-card h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
}
.sol-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .sol-grid { grid-template-columns: 1fr; }
}

/* === GARANTIE === */
.garantie {
  background: var(--bg-dark);
  color: white;
}
.garantie h2 { color: white; }
.garantie h2 .accent { color: var(--amber); }
.garantie .section-intro { color: rgba(255, 255, 255, 0.8); }
.garantie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 24px;
}
.garantie-block h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
}
.garantie-block p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.garantie-block ul {
  list-style: none;
  margin-top: 12px;
}
.garantie-block li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}
.garantie-block li::before {
  content: '·';
  position: absolute;
  left: 8px;
  color: var(--amber);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.garantie-callout {
  background: rgba(251, 191, 36, 0.12);
  border-left: 3px solid var(--amber);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-top: 32px;
  grid-column: 1 / -1;
}
.garantie-callout strong {
  color: var(--amber);
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.garantie-callout p { margin: 0; }
@media (max-width: 760px) {
  .garantie-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { position: relative; }
.step-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 12px;
}
.step h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '–'; }
.faq-answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* === KONTAKT === */
.kontakt { background: var(--bg-soft); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.kontakt-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.kontakt-intro ul {
  list-style: none;
  margin-top: 24px;
}
.kontakt-intro li {
  padding: 10px 0;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.kontakt-intro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 36px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--teal); }
.form-row.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-consent {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--teal); }
.form-card button {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.form-card button:hover { background: var(--teal); }
.form-hint {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 14px;
}
#form-success,
#form-error {
  display: none;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 18px;
}
#form-success {
  background: rgba(13, 74, 77, 0.08);
  border-left: 3px solid var(--teal);
  color: var(--ink);
}
#form-error {
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #dc2626;
  color: var(--ink);
}
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row.cols { grid-template-columns: 1fr; }
}

/* === LEGAL PAGES === */
.legal-content {
  padding: 80px 0 100px;
  max-width: 760px;
}
.legal-content h1 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.legal-content h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.legal-content h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content ul,
.legal-content ol {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--teal); }
.legal-note {
  background: var(--amber-bg);
  border-left: 3px solid var(--amber);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.legal-note strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 26px;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-brand .brand-growth { color: var(--amber); }
.footer-tagline {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 380px;
}
.founders-mini {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: left; }
}

/* =====================================================================
   HOMEPAGE v2: KI-Telefon-Empfang + Werbe-Performance (Stand 09.06.2026)
   ===================================================================== */

:root {
  --ff-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;
  --gold-bright: #d49a1f;
}

/* Eyebrow als technisches Label */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
}

/* ---- HERO 2-Spalter ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 84px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 460px at 88% -8%, rgba(212, 154, 31, 0.10), transparent 60%),
    radial-gradient(720px 520px at -6% 12%, rgba(26, 37, 64, 0.05), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-2col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-2col .eyebrow { margin-bottom: 20px; }
.hero-trust {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.hero-visual { position: relative; }
.hero-visual::after {
  content: '';
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 78%;
  height: 72%;
  background: var(--navy);
  border-radius: 20px;
  opacity: 0.06;
  z-index: 0;
}
.hero-visual .callcard { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 56px; }
  .hero-2col { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual::after { display: none; }
}

/* ---- CALLCARD (Anruf-Zusammenfassung) ---- */
.callcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(13, 20, 38, 0.13);
  overflow: hidden;
  max-width: 460px;
}
.callcard-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--navy);
  color: #fff;
}
.callcard-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(212, 154, 31, 0.7);
  animation: dgpulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes dgpulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 154, 31, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(212, 154, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 154, 31, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .callcard-dot { animation: none; }
}
.callcard-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.callcard-time {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.callcard-body { padding: 8px 22px 6px; }
.callcard-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.callcard-row:last-child { border-bottom: none; }
.callcard-label {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 1px;
}
.callcard-value {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}
.callcard-value.mono, .mono { font-family: var(--ff-mono); letter-spacing: 0.01em; }
.badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(176, 127, 14, 0.12);
  color: var(--gold-600, #8a6308);
  border: 1px solid rgba(176, 127, 14, 0.25);
}
.badge-urgent {
  background: rgba(220, 38, 38, 0.10);
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.25);
}
.callcard-row > .badge { justify-self: start; align-self: start; }
.callcard-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.chan {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}

/* ---- TWO PILLARS ---- */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(13, 20, 38, 0.10);
  border-color: var(--gold);
}
.pillar.lead {
  background: linear-gradient(155deg, #1f2c4d 0%, #141d33 100%);
  border-color: transparent;
}
.pillar-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.pillar.lead .pillar-num { color: var(--gold-bright); }
.pillar h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar.lead h3 { color: #fff; }
.pillar-claim {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}
.pillar.lead .pillar-claim { color: var(--gold-bright); }
.pillar-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 26px;
  flex: 1;
}
.pillar.lead .pillar-desc { color: rgba(255, 255, 255, 0.82); }
.pillar-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pillar.lead .pillar-link { color: #fff; }
.pillar-link::after { content: '→'; transition: transform 0.15s; }
.pillar:hover .pillar-link::after { transform: translateX(4px); }
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---- SPLIT (Text + Visual) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.split-visual { display: flex; justify-content: center; }
.split-h {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- FLOW (nummerierte Schritte) ---- */
.flow { list-style: none; }
.flow-step {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.flow-step:last-child { border-bottom: none; }
.flow-n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--gold-600, #8a6308);
  background: rgba(176, 127, 14, 0.10);
  border: 1px solid rgba(176, 127, 14, 0.22);
}
.flow-step h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.flow-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---- CAPS (Feature-Karten) ---- */
.caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 48px;
}
.cap {
  background: var(--bg);
  padding: 28px 26px;
}
.cap h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  padding-top: 8px;
  border-top: 2px solid var(--gold);
  display: inline-block;
}
.cap p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .caps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .caps { grid-template-columns: 1fr; }
}

/* ---- CHECK (Aufzaehlung mit Haken) ---- */
.check { list-style: none; }
.check li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.check li:last-child { border-bottom: none; }
.check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(176, 127, 14, 0.12);
  color: var(--gold-600, #8a6308);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check li strong { color: var(--ink); }

/* ---- CONTRAST (vs. Anrufbeantworter / Callcenter) ---- */
.contrast { margin-bottom: 56px; }
.contrast h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contrast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contrast-col {
  padding: 26px 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.contrast-col.good {
  background: linear-gradient(155deg, #1f2c4d 0%, #141d33 100%);
  border-color: transparent;
}
.contrast-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--ink-3);
}
.contrast-col.good .contrast-tag { color: var(--gold-bright); }
.contrast-col p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.contrast-col.good p { color: rgba(255, 255, 255, 0.85); }
@media (max-width: 760px) {
  .contrast-grid { grid-template-columns: 1fr; }
}

/* ---- AUDITCARD (Befund) ---- */
.auditcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(13, 20, 38, 0.13);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
}
.auditcard .callcard-head { background: var(--navy); }
.audit-list { list-style: none; padding: 6px 22px; }
.audit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.audit-row:last-child { border-bottom: none; }
.audit-rank {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audit-text { flex: 1; }
.audit-leak {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--ink);
}
.audit-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 3px;
  line-height: 1.4;
}
.audit-eur {
  flex-shrink: 0;
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold-600, #8a6308);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.audit-sum {
  padding: 16px 22px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---- TRACK RECORD ---- */
.track-record {
  background: var(--gold-bg, #fdf6e3);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 8px;
}
.track-record p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.track-mark {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

/* ---- FOUNDERS ---- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder {
  padding: 32px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
}
.founder-role {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600, #8a6308);
  margin-bottom: 12px;
}
.founder-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.founder-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .founders { grid-template-columns: 1fr; }
}

/* ---- SECTION HELPERS ---- */
.section-soft { background: var(--bg-soft); }
.section-cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-cta-note {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.opt { font-weight: 400; color: var(--ink-3); }


/* =====================================================================
   HOMEPAGE v3: Werbe-System-Relaunch (Stand 10.06.2026)
   Leitprodukt Werbung, Karten-Kette, Audio-Player, Preise, Garantie,
   Branchen, Vergleich. Aufbauend auf v1/v2-Komponenten.
   ===================================================================== */

/* ---- Hero: Audio-CTA-Button ---- */
#hero-audio-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.audio-cta-icon { font-size: 13px; line-height: 1; }

/* ---- Hero: Karten-Kette (Signature-Element) ---- */
.hero-visual::after { display: none; }   /* alter Schatten-Block (galt fuer Einzelkarte) */
.chain-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 430px;
  margin-left: auto;
}
.cstep { position: relative; }
.cstep-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 10px 28px rgba(13, 20, 38, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}
.cstep:not(.is-active):not(.is-static) .cstep-card { opacity: 0.9; }
.cstep.is-active .cstep-card {
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(13, 20, 38, 0.16), 0 0 0 3px rgba(176, 127, 14, 0.16);
  transform: translateY(-2px);
}
.cstep-card.cstep-done {
  background: linear-gradient(155deg, #1f2c4d 0%, #141d33 100%);
  border-color: transparent;
  color: #fff;
}
.cstep-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cstep-tag {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cstep-card.cstep-done .cstep-tag { color: #fff; }
.cstep-meta {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.cstep-card.cstep-done .cstep-meta { color: rgba(255, 255, 255, 0.65); }
.cstep-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}
.cstep-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
}
.cm-from {
  font-size: 22px;
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 114, 128, 0.5);
}
.cm-arrow { color: var(--gold); font-size: 17px; }
.cm-to { font-size: 30px; color: var(--ink); letter-spacing: -0.02em; }
.cstep-rows { display: flex; flex-direction: column; gap: 7px; }
.cstep-row { display: flex; gap: 10px; align-items: baseline; }
.cstep-row .cl {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 64px;
  flex-shrink: 0;
}
.cstep-row .cv { font-size: 14px; color: var(--ink); font-weight: 500; }
.cstep-line {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.cstep-link {
  display: flex;
  justify-content: center;
  height: 26px;
  align-items: center;
}
.cstep-arrow {
  font-family: var(--ff-mono);
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 900px) {
  .chain-hero { margin: 0 auto; max-width: 420px; }
}

/* ---- Abschluss-Zeilen je Sektion ---- */
.leck-close, .sys-note, .sprint-close, .branche-note, .empfang-solo {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 760px;
}
.sys-note { margin-top: 40px; }
.empfang-solo {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15.5px;
}
.empfang-solo a, .sys-note a { color: var(--gold); font-weight: 600; }

/* ---- System: horizontale Kette (4 Stationen) ---- */
.syschain {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: sys;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.sysnode {
  position: relative;
  padding: 30px 26px;
  background: var(--bg);
  border-right: 1px solid var(--line);
}
.sysnode:last-child { border-right: none; }
.sysnode::after {
  content: '→';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-mono);
  color: var(--gold);
  font-size: 16px;
  background: var(--bg);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.sysnode:last-child::after { display: none; }
.sysnode-step {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.sysnode h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.sysnode p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
@media (max-width: 860px) {
  .syschain { grid-template-columns: 1fr; }
  .sysnode { border-right: none; border-bottom: 1px solid var(--line); }
  .sysnode:last-child { border-bottom: none; }
  .sysnode::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -9px;
    transform: translateX(50%);
  }
}

/* ---- Sprint: Timeline ---- */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--gold);
  margin-left: 6px;
}
.tl-phase {
  position: relative;
  padding: 4px 0 32px 32px;
}
.tl-phase:last-child { padding-bottom: 0; }
.tl-phase::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 3px solid var(--gold);
}
.tl-when {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-600, #8a6308);
  margin-bottom: 8px;
}
.tl-phase p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 760px;
}

/* ---- Branchen-Karten ---- */
.branche-card { padding-top: 30px; }
.branche-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-bg, #fdf6e3);
  color: var(--gold-600, #8a6308);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.branche-icon svg { width: 26px; height: 26px; }
.branche-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.branche-card:hover .branche-cta { color: var(--gold-600, #8a6308); }

/* ---- Audio-Player ---- */
.audioplayer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--dg-shadow-sm, 0 1px 2px rgba(13,20,38,0.05));
  margin-bottom: 48px;
  max-width: 720px;
}
.ap-play {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.ap-play:hover { background: var(--gold); transform: translateY(-1px); }
.ap-icon { font-size: 14px; line-height: 1; }
.ap-icon-pause { display: none; }
.audioplayer.is-playing .ap-icon-play { display: none; }
.audioplayer.is-playing .ap-icon-pause { display: inline; }
.ap-main { flex: 1; min-width: 0; }
.ap-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
}
.ap-sub {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 6px;
}
.ap-track {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  overflow: hidden;
}
.ap-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.1s linear;
}
.ap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}
.ap-time {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.ap-transcript summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600, #8a6308);
  cursor: pointer;
  list-style: none;
}
.ap-transcript summary::-webkit-details-marker { display: none; }
.ap-transcript-body {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.ap-transcript-body p { margin-bottom: 8px; }
.ap-transcript-body p:last-child { margin-bottom: 0; }
.ap-transcript-note { color: var(--ink-3); font-size: 12.5px; }
.ap-fallback {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}
@media (max-width: 540px) {
  .audioplayer { flex-direction: column; }
}

/* ---- Preise ---- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}
.price-card.featured {
  background: linear-gradient(160deg, #1f2c4d 0%, #141d33 100%);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(13, 20, 38, 0.18);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-bright);
  padding: 5px 13px;
  border-radius: 999px;
}
.price-tier {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.price-card.featured .price-tier { color: #fff; }
.price-aud {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 20px;
  line-height: 1.4;
}
.price-card.featured .price-aud { color: rgba(255, 255, 255, 0.7); }
.price-main { display: flex; align-items: baseline; gap: 6px; }
.price-amount {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-card.featured .price-amount { color: #fff; }
.price-per { font-size: 15px; color: var(--ink-3); font-weight: 500; }
.price-card.featured .price-per { color: rgba(255, 255, 255, 0.7); }
.price-setup {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 6px;
  margin-bottom: 18px;
}
.price-card.featured .price-setup { color: rgba(255, 255, 255, 0.7); }
.price-bonus {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  background: rgba(176, 127, 14, 0.10);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}
.price-card.featured .price-bonus {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(212, 154, 31, 0.14);
  border-left-color: var(--gold-bright);
}
.price-list { list-style: none; margin-bottom: 26px; flex: 1; }
.price-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-600, #8a6308);
  font-weight: 700;
  font-size: 13px;
}
.price-card.featured .price-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.price-card.featured .price-list li::before { color: var(--gold-bright); }
.price-btn {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  background: var(--ink);
  color: #fff;
  transition: background 0.15s, transform 0.15s;
}
.price-btn:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.price-card.featured .price-btn { background: var(--gold); }
.price-card.featured .price-btn:hover { background: var(--gold-bright); color: var(--navy); }
.price-explain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.pe-item strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pe-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; gap: 28px; }
  .price-card.featured { order: -1; }
  .price-explain { grid-template-columns: 1fr; gap: 22px; }
}

/* ---- Beweise: Grosszahl-Karte ---- */
.bigcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 40px;
  background: linear-gradient(160deg, #1f2c4d 0%, #141d33 100%);
  border-radius: 18px;
  margin-bottom: 48px;
}
.bigcase-metric {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
}
.bc-from {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.bc-arrow { font-size: 28px; color: var(--gold-bright); }
.bc-to {
  font-size: 66px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.bc-unit {
  width: 100%;
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.bigcase-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}
.bigcase-attr {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--gold-bright);
}
@media (max-width: 760px) {
  .bigcase { grid-template-columns: 1fr; gap: 24px; padding: 32px 28px; }
  .bc-to { font-size: 54px; }
}

/* ---- Beweise: Befund-Split + Cases/Reviews-Platzhalter ---- */
.beweis-split { margin-bottom: 0; }
.beweis-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.cases-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.case-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  background: var(--bg);
}
.case-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
}
.cc-arrow { color: var(--gold); }
.case-quote { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.review-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 860px) {
  .cases-grid, .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- Vergleich (Agentur vs DeepGrowth) ---- */
.compare {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-col-label {
  padding: 16px 24px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
}
.compare-col-label.compare-them {
  color: var(--ink-3);
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
}
.compare-col-label.compare-us {
  color: #fff;
  background: var(--navy);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.compare-row > div {
  padding: 16px 24px;
  font-size: 15px;
  line-height: 1.45;
}
.compare-row .compare-them {
  color: var(--ink-3);
  border-right: 1px solid var(--line);
  position: relative;
  padding-left: 44px;
}
.compare-row .compare-them::before {
  content: '–';
  position: absolute;
  left: 22px;
  top: 16px;
  color: var(--ink-3);
  font-weight: 700;
}
.compare-row .compare-us {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-left: 44px;
  background: rgba(176, 127, 14, 0.04);
}
.compare-row .compare-us::before {
  content: '✓';
  position: absolute;
  left: 22px;
  top: 16px;
  color: var(--gold-600, #8a6308);
  font-weight: 700;
}
.compare-cta { margin-top: 36px; }
@media (max-width: 700px) {
  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; border-top: none; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .compare:first-child { border: none; }
  .compare-row > div { padding: 8px 16px 8px 44px; border: none; }
  .compare-row .compare-them, .compare-row .compare-us { border-right: none; background: none; }
  .compare-row .compare-them::before, .compare-row .compare-us::before { top: 8px; }
  .compare-row .compare-them { padding-top: 0; }
}

/* ---- Formular-Microcopy ---- */
.form-micro {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ---- Sticky-CTA mobil ---- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  display: none;
}
.sticky-cta .btn { width: 100%; text-align: center; padding: 14px; }
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
  .cstep-card { transition: none; }
}

/* ---- Mobile-Polish (v3) ---- */
@media (max-width: 560px) {
  .section-cta { width: 100%; }
  .section-cta .btn {
    width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.3;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn {
    width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
    padding: 15px 18px;
    line-height: 1.3;
  }
}
@media (max-width: 430px) {
  .hero h1 { font-size: 34px; }
}
