/* ==========================================================
   Buzzard AI — Hausverwaltungssoftware / Mängelmanagement
   Seite 6 / 7 · Cormorant Garamond + DM Sans + Space Grotesk
   Warm Cream · Teal · Copper accents
   ========================================================== */

:root {
  --teal:        #2D5A5A;
  --teal-mid:    #3A7070;
  --teal-dark:   #112626;
  --teal-soft:   rgba(45, 90, 90, 0.08);
  --cream:       #FDF8F2;
  --cream-dark:  #F5EDE3;
  --sand:        #E8DDD0;
  --copper:      #B87333;
  --copper-soft: rgba(184, 115, 51, 0.10);
  --sage:        #8FA88A;
  --sage-soft:   rgba(143, 168, 138, 0.12);
  --ink:         #1A1A1A;
  --ink-soft:    #555555;
  --ink-muted:   #999999;
  --line:        #E8DDD0;
  --line-soft:   #F0E8DC;
  --warn:        #C13A1B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Space Grotesk', monospace;
}

/* ====== Reset ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--copper); color: var(--cream); }

/* ====== Type primitives ====== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.eyebrow.teal { color: var(--teal-mid); }

/* ====== Layout ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 120px 0;
}

/* ====== Top Nav ====== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
}
.nav-logo em { font-style: italic; color: var(--copper); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--teal);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--teal-mid); }

/* ====== Buttons ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--teal);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--copper);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--copper); color: var(--copper); }

/* ====== HERO ====== */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(45,90,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--teal-dark);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ====== HERO VISUAL — Process X-Ray ====== */
.hero-visual {
  position: relative;
}

/* Floating cards */
.xray-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 24px rgba(45, 90, 90, 0.09);
  font-size: 12.5px;
  color: var(--ink);
  max-width: 220px;
}
.xray-card .card-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.xray-card .card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.xray-card .card-meta {
  font-size: 11.5px;
  color: var(--ink-soft);
}
.xray-card .card-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--warn);
  margin-right: 6px;
  vertical-align: middle;
  animation: blink 2s infinite;
}
.xray-card .card-dot.green { background: var(--sage); }
.xray-card .card-dot.copper { background: var(--copper); animation: blink 1.4s infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Card positions */
.xray-card.card-mangel {
  top: 20px; left: 0;
  animation: float-a 4s ease-in-out infinite;
  border-left: 3px solid var(--warn);
}
.xray-card.card-call {
  bottom: 120px; left: 20px;
  animation: float-b 4.5s ease-in-out infinite;
  border-left: 3px solid var(--copper);
}
.xray-card.card-whatsapp {
  top: 0; right: 10px;
  animation: float-c 5s ease-in-out infinite;
  border-left: 3px solid var(--sage);
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Buzzard center layer */
.xray-buzzard {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  background: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow:
    0 0 0 12px rgba(45,90,90,0.1),
    0 0 0 24px rgba(45,90,90,0.05),
    0 0 40px rgba(184,115,51,0.25);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 12px rgba(45,90,90,0.1), 0 0 0 24px rgba(45,90,90,0.05), 0 0 40px rgba(184,115,51,0.2); }
  50% { box-shadow: 0 0 0 16px rgba(45,90,90,0.12), 0 0 0 32px rgba(45,90,90,0.06), 0 0 60px rgba(184,115,51,0.35); }
}
.xray-buzzard .bz-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.xray-buzzard .bz-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  line-height: 1.5;
}

/* Output card */
.xray-output {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--teal-dark);
  color: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 210px;
  box-shadow: 0 8px 32px rgba(17,38,38,0.25);
  animation: float-b 4.8s ease-in-out infinite;
}
.xray-output .out-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.xray-output .out-item {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(253,248,242,0.85);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.xray-output .out-item::before {
  content: "→";
  color: var(--copper);
  flex-shrink: 0;
  font-size: 11px;
}

/* Flow lines (SVG connector cues via pseudo) */
.xray-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  height: 1px;
  opacity: 0.3;
  animation: flow-line 2.5s linear infinite;
}
@keyframes flow-line {
  0% { opacity: 0; }
  30% { opacity: 0.4; }
  70% { opacity: 0.4; }
  100% { opacity: 0; }
}
.xray-line.l1 { width: 80px; top: 68px; left: 195px; transform: rotate(30deg); }
.xray-line.l2 { width: 70px; top: 275px; left: 180px; transform: rotate(-20deg); }
.xray-line.l3 { width: 80px; top: 50px; right: 185px; transform: rotate(140deg); }
.xray-line.l4 { width: 90px; bottom: 120px; right: 200px; transform: rotate(-10deg); }

/* ====== SECTION: Schmerz ====== */
.section-schmerz {
  background: var(--cream-dark);
}
.section-schmerz .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section-schmerz h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.section-schmerz h2 em { font-style: italic; color: var(--copper); }
.section-intro {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.schmerz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.schmerz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(45, 90, 90, 0.06);
  position: relative;
  overflow: hidden;
}
.schmerz-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  opacity: 0.6;
}
.schmerz-icon {
  width: 44px; height: 44px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.schmerz-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.schmerz-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.schmerz-card .schmerz-tag {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warn);
}

/* ====== SECTION: Fehlannahme ====== */
.section-fehlannahme {
  background: var(--cream);
}
.fehlannahme-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fehlannahme-text h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 22px;
}
.fehlannahme-text h2 em { font-style: italic; color: var(--copper); }
.fehlannahme-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.fehlannahme-text .callout {
  background: var(--copper-soft);
  border-left: 3px solid var(--copper);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* Portal tool list */
.portal-tools {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(45,90,90,0.06);
}
.portal-tools-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--ink);
}
.tool-item:last-child { border-bottom: 0; }
.tool-item .tool-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--teal-dark);
}
.tool-item .tool-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-soft);
  padding: 3px 8px;
  border-radius: 999px;
}
.portal-caveat {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.portal-caveat strong { color: var(--copper); font-weight: 600; }

/* ====== SECTION: Buzzard-Layer ====== */
.section-layer {
  background: var(--teal-dark);
  color: var(--cream);
}
.section-layer .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-layer .eyebrow { color: var(--copper); }
.section-layer h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.section-layer h2 em { font-style: italic; color: var(--copper); }
.section-layer .section-intro {
  color: rgba(253,248,242,0.72);
}
.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.layer-grid .layer-card:nth-child(4),
.layer-grid .layer-card:nth-child(5) {
  /* 5th card — center it in 3-col row */
}
.layer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(253,248,242,0.12);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.layer-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0.6;
}
.layer-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  color: var(--copper);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}
.layer-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.layer-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(253,248,242,0.72);
}
/* Last two cards: span extra in last row */
.layer-last-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ====== SECTION: Prozess ====== */
.section-prozess {
  background: var(--cream-dark);
}
.section-prozess .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-prozess h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.section-prozess h2 em { font-style: italic; color: var(--copper); }
.prozess-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 20px;
}
/* connector line */
.prozess-track::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  opacity: 0.3;
}
.prozess-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.prozess-icon {
  width: 56px; height: 56px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
  box-shadow: 0 2px 12px rgba(45,90,90,0.08);
}
.prozess-step:hover .prozess-icon {
  border-color: var(--copper);
}
.prozess-step-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.prozess-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.prozess-step p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
/* Arrow between steps */
.prozess-arrow {
  position: absolute;
  top: 26px;
  right: -10px;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 16px;
  opacity: 0.5;
  z-index: 2;
}

/* ====== SECTION: Proof ====== */
.section-proof {
  background: var(--cream);
}
.section-proof .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-proof h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.section-proof h2 em { font-style: italic; color: var(--copper); }
.proof-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
/* Baduvia card */
.proof-card-main {
  background: var(--teal-dark);
  border-radius: 24px;
  padding: 40px;
  color: var(--cream);
}
.proof-card-main .proof-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 6px;
}
.proof-card-main .proof-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}
.proof-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.proof-number {
  border-top: 1px solid rgba(253,248,242,0.18);
  padding-top: 14px;
}
.proof-number .n-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-number .n-label {
  font-size: 12px;
  color: rgba(253,248,242,0.65);
  line-height: 1.4;
}
.proof-card-main p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(253,248,242,0.75);
  margin-bottom: 20px;
}
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(184,115,51,0.4);
  padding: 10px 18px;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.proof-link:hover { border-color: var(--copper); color: var(--cream); }

/* Noa card */
.proof-card-noa {
  background: var(--cream-dark);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}
.proof-card-noa .proof-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.proof-card-noa .proof-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 20px;
}
.proof-card-noa p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.proof-card-noa .proof-link {
  color: var(--teal);
  border-color: rgba(45,90,90,0.3);
}
.proof-card-noa .proof-link:hover { color: var(--teal-dark); border-color: var(--teal); }

/* ====== SECTION: FAQ ====== */
.section-faq {
  background: var(--cream-dark);
}
.section-faq .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.section-faq h2 em { font-style: italic; color: var(--copper); }
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.faq-a {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  text-wrap: pretty;
}
.faq-a strong { color: var(--teal); font-weight: 600; }

/* ====== SECTION: CTA Funnel ====== */
.section-cta {
  background: var(--teal-dark);
  color: var(--cream);
  text-align: center;
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-cta .eyebrow { color: var(--copper); }
.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 20px 0 24px;
}
.section-cta h2 em { font-style: italic; color: var(--copper); }
.section-cta p {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(253,248,242,0.75);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,248,242,0.45);
}

/* ====== Footer strip ====== */
.footer {
  background: #0A1A1A;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  opacity: 0.8;
}
.footer-logo em { font-style: italic; color: var(--copper); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,248,242,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--copper); }

/* ====== Responsive ====== */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }

  .site-nav { padding: 14px 24px; }

  .hero { padding-top: 120px; padding-bottom: 64px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .xray-card { max-width: 180px; }
  .xray-buzzard { width: 120px; height: 120px; }

  .fehlannahme-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .schmerz-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .layer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .layer-last-row {
    grid-template-columns: 1fr;
  }

  .prozess-track {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }
  .prozess-track::before { display: none; }
  .prozess-step { flex-direction: row; text-align: left; gap: 18px; }
  .prozess-step .prozess-icon { flex-shrink: 0; }
  .prozess-arrow { display: none; }
  .prozess-step-content { flex: 1; }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer { padding: 28px 24px; }
  .footer-links { gap: 16px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }

  .hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .proof-numbers { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  .xray-card.card-call { bottom: 60px; }
  .xray-output { right: 0; bottom: 0; max-width: 180px; }

  .section-cta h2 { font-size: clamp(34px, 8vw, 48px); }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .site-nav { padding: 12px 16px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
}
