*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F4730A;
  --orange-dark: #D4600A;
  --orange-light: rgba(244,115,10,0.08);
  --orange-border: rgba(244,115,10,0.22);
  --text-primary: #0A0A0A;
  --text-secondary: #525252;
  --text-muted: #A3A3A3;
  --surface: #F8F8F7;
  --border: #E5E5E5;
  --white: #ffffff;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

/* LOGO BAR */
.logobar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 30px; width: auto; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 72px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% -5%, rgba(244,115,10,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.target-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 1.45;
}
.target-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, #E06000 100%);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 17px 36px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(244,115,10,0.35), 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244,115,10,0.42), 0 2px 6px rgba(0,0,0,0.10);
}
.btn-main:active { transform: translateY(0); }
.btn-main svg { transition: transform 0.15s; flex-shrink: 0; }
.btn-main:hover svg { transform: translateX(3px); }

.microcopy {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* PRODUCT STRIP */
.product-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.product-strip p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.product-strip strong { color: var(--text-primary); font-weight: 600; }

/* AGITATION */
.agitation { padding: 80px 24px; text-align: center; }
.agitation-inner { max-width: 720px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
}
.pain-icon {
  width: 36px;
  height: 36px;
  background: rgba(239,68,68,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pain-icon svg { color: #EF4444; }
.pain-card p { font-size: 14.5px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }

.agitation-bridge {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-block;
  max-width: 520px;
}

/* MOCKUP */
.mockup-section { padding: 0 24px 80px; }
.mockup-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(244,115,10,0.14), rgba(244,115,10,0.03));
  z-index: 0;
}
.mockup-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 12px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
  display: block;
}

/* STEPS */
.steps-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.steps-inner { max-width: 600px; margin: 0 auto; }
.steps-list { display: flex; flex-direction: column; gap: 0; }

.step { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 32px; position: relative; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
.step-num {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--orange-border);
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; letter-spacing: -0.01em; }
.step-body p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-section { padding: 88px 24px; background: var(--white); }
.testimonials-inner { max-width: 1000px; margin: 0 auto; }

.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.t-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.t-logo { height: 40px; width: auto; max-width: 130px; object-fit: contain; margin-bottom: 20px; display: block; }
.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(244,115,10,0.10), rgba(244,115,10,0.04));
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.t-quote { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 16px; flex: 1; }
.t-firma { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.01em; border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }

/* PRICING */
.pricing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.pricing-inner { max-width: 520px; margin: 0 auto; }
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--text-secondary); letter-spacing: 0; }
.pricing-trial { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 28px; }
.pricing-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 360px; margin-left: auto; margin-right: auto; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-secondary); }
.pricing-features li svg { color: var(--orange); flex-shrink: 0; }

/* FAQ */
.faq-section { padding: 80px 24px; background: var(--white); }
.faq-inner { max-width: 640px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
details { border-top: 1px solid var(--border); }
details:last-child { border-bottom: 1px solid var(--border); }
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.75; }

/* BOTTOM CTA */
.cta-section {
  background: linear-gradient(135deg, #0C0C0C 0%, #1C1005 50%, #0C0C0C 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,115,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 560px; margin: 0 auto; }
.cta-section h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  font-weight: 400;
}
.btn-main-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 17px;
  padding: 17px 36px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-main-light:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,0,0,0.35); }
.btn-main-light:active { transform: translateY(0); }
.btn-main-light svg { transition: transform 0.15s; flex-shrink: 0; }
.btn-main-light:hover svg { transform: translateX(3px); }
.cta-microcopy { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* CONFIRMATION CHECK */
.confirm-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #E06000 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 28px rgba(244,115,10,0.35);
}

/* FOUNDER */
.founder-section { padding: 96px 24px; background: var(--white); }
.founder-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-inner .section-eyebrow { justify-content: center; }
.founder-inner .section-heading { margin-bottom: 22px; }
.founder-inner .section-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  margin: 18px auto 0;
}
/* Erster Satz als Lead – größer und dunkler */
.founder-text { font-size: 15.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.founder-text:first-of-type {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.founder-text:last-child { margin-bottom: 0; }

/* PRODUKT-MOCKUPS – in HTML/CSS nachgebaut, im Stil des Startseiten-App-Mockups */
.proof-section { padding: 56px 24px 32px; background: var(--white); }
.proof-inner { max-width: 1080px; margin: 0 auto; }

.product-shot { max-width: 720px; margin: 0 auto; width: 100%; min-width: 0; }
.product-shot figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin: 18px auto 0;
  max-width: 520px;
}
.product-shot--wide { margin-top: 24px; }
.steps-inner .product-shot--wide {
  width: min(880px, 92vw);
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 64px;
}

/* App-Fenster */
.mockup {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(12,12,12,0.04),
    0 18px 40px -24px rgba(12,12,12,0.22),
    0 44px 90px -40px rgba(12,12,12,0.35);
}
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mk-dot { width: 10px; height: 10px; border-radius: 50%; background: #D4D4D4; flex-shrink: 0; }
.mk-url { margin-left: 8px; font-size: 12px; color: var(--text-muted); letter-spacing: 0.01em; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-body { padding: 22px; min-width: 0; }
.mockup-chrome { min-width: 0; }

/* Begrüßung */
.mk-greeting { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mk-hi { font-size: 16px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.01em; }
.mk-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.mk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mk-badge svg { width: 11px; height: 11px; }

/* Kennzahlen */
.mk-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
.mk-stat { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--white); min-width: 0; }
.mk-stat-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 12px; min-width: 0; }
.mk-ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mk-ic svg { width: 15px; height: 15px; }
.mk-label { font-size: 9px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; text-align: right; line-height: 1.2; min-width: 0; overflow-wrap: anywhere; }
.mk-num { font-size: 26px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1; }
.mk-unit { font-size: 10.5px; color: var(--text-muted); margin-top: 8px; }

/* Kanäle – Logos + Beschriftung */
.mk-channels { margin-bottom: 18px; }
.mk-section-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.mk-channel-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.mk-channel {
  border-radius: 10px;
  background: var(--orange-light);
  padding: 10px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  min-width: 0;
  text-align: center;
}
.mk-channel-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.mk-channel-icon img { width: 18px; height: 18px; object-fit: contain; display: block; }
.mk-channel-icon svg { width: 18px; height: 18px; }
.mk-channel-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* SURI-Hinweis */
.mk-suri {
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid var(--orange-border);
  background: var(--orange-light);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 0;
}
.mk-suri > div { min-width: 0; }
.mk-suri-ic {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
}
.mk-suri-ic svg { width: 15px; height: 15px; color: #fff; }
.mk-suri-title { font-size: 10px; font-weight: 700; color: var(--orange-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.mk-suri-text { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; margin-top: 3px; overflow-wrap: anywhere; }
.mk-suri-text strong { color: var(--text-primary); font-weight: 700; }

/* Content Factory */
.mk-factory-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mk-factory-head .mk-section-label { margin-bottom: 0; }
.mk-factory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mk-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--white); display: flex; flex-direction: column; }
.mk-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mk-ic--sm { width: 24px; height: 24px; }
.mk-ic--sm svg { width: 13px; height: 13px; }
.mk-ic img { width: 15px; height: 15px; object-fit: contain; display: block; }
.mk-ic--sm img { width: 13px; height: 13px; }
.mk-card-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.mk-preview { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.mk-thumb { height: 48px; border-radius: 8px; background: linear-gradient(135deg, var(--surface), #EFEFEE); border: 1px solid var(--border); margin-bottom: 3px; }
.mk-line { height: 8px; border-radius: 4px; background: var(--surface); }
.mk-line--title { width: 72%; height: 9px; background: #EAEAE8; }
.mk-line--short { width: 46%; }
.mk-btn {
  margin-top: auto;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mk-btn svg { width: 13px; height: 13px; }

/* KANAL-/CONTENT-ÜBERSICHT */
.channels-section {
  padding: 88px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.channels-inner { max-width: 1100px; margin: 0 auto; }
.channels-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.channels-intro .section-eyebrow { justify-content: center; display: inline-flex; }
.channels-intro .section-heading { margin-bottom: 14px; }
.channels-intro .section-text { margin: 0 auto; max-width: 560px; }
.heading-muted { color: var(--text-secondary); font-weight: 700; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.ch-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px -18px rgba(12,12,12,0.35);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-width: 0;
}
.ch-card:hover {
  border-color: var(--orange-border);
  box-shadow: 0 14px 32px -18px rgba(12,12,12,0.4);
}
.ch-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; min-width: 0; }
.ch-card-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ch-card-icon img { width: 14px; height: 14px; object-fit: contain; display: block; }
.ch-card-icon svg { width: 14px; height: 14px; }
.ch-card-label { font-size: 12px; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ch-card-preview {
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #FAFAF9;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.ch-prev-title { font-size: 11px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.ch-prev-kicker { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.ch-prev-body { font-size: 10px; color: var(--text-primary); line-height: 1.4; margin-top: 6px; }
.ch-prev-meta { font-size: 9px; color: var(--text-muted); margin-top: auto; }
.ch-skel { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.ch-skel span { display: block; height: 6px; border-radius: 3px; background: #E8E8E6; width: 100%; }
.ch-skel .w80 { width: 80%; }
.ch-skel .w75 { width: 75%; }
.ch-chip {
  margin-top: auto;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  border-radius: 5px;
  padding: 3px 8px;
}
.ch-chip--solid { background: var(--orange); color: #fff; }
.ch-chip--outline { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }
.ch-ig-box {
  height: 60px; border-radius: 6px; background: var(--orange-light);
  padding: 8px; display: flex; align-items: flex-start;
}
.ch-ig-box span { font-size: 10px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.ch-author { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--text-primary); }
.ch-avatar { width: 16px; height: 16px; border-radius: 50%; background: #D4D4D4; flex-shrink: 0; }
.ch-fb-img { margin-top: 6px; height: 32px; border-radius: 5px; background: #E8E8E6; }
.ch-sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ch-sc-grid > div { background: #F0F0EE; border-radius: 6px; padding: 6px; }
.ch-sc-num { font-size: 11px; font-weight: 800; color: var(--text-primary); margin-top: 2px; }
.ch-sc-chart { width: 100%; height: 24px; color: var(--orange); margin-top: 8px; }
.ch-ai-box {
  height: 48px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(244,115,10,0.28), rgba(244,115,10,0.05));
  display: flex; align-items: flex-end; padding: 6px;
}
.ch-ai-box span { font-size: 8px; font-weight: 700; background: rgba(255,255,255,0.75); border-radius: 4px; padding: 2px 5px; color: var(--text-primary); }
.ch-stock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.ch-stock-grid div { height: 28px; border-radius: 4px; background: #E8E8E6; }
.ch-stock-grid div.active { box-shadow: 0 0 0 2px var(--orange); }
.ch-gal-tabs { display: flex; gap: 4px; font-size: 8px; font-weight: 700; color: var(--text-muted); }
.ch-gal-tabs .on { color: var(--orange); }
.ch-gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 8px; }
.ch-gal-grid div { height: 36px; border-radius: 4px; background: #E8E8E6; }

/* TESTIMONIALS */
.testimonials-section { padding: 88px 24px; background: var(--white); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.testimonials-intro .section-eyebrow { justify-content: center; display: inline-flex; }
.testimonials-intro .section-heading { margin-bottom: 12px; }
.testimonials-intro .section-text { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin: 0;
  text-align: left;
  box-shadow: 0 10px 28px -20px rgba(12,12,12,0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.t-company { font-size: 14px; font-weight: 800; color: var(--text-primary); margin: 0; }
.t-meta { font-size: 11px; color: var(--text-muted); margin: 3px 0 0; }
.t-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 8px;
  background: var(--orange-light); color: var(--orange-dark);
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.t-result { font-size: 16px; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin: 0; letter-spacing: -0.01em; }
.t-detail { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.testimonials-foot {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.testimonials-foot p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
  margin: 0;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-outline:hover { border-color: var(--orange-border); background: var(--orange-light); }

/* PREIS-HINWEIS */
.price-note {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.price-note p {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CLOSING */
.closing-section { padding: 88px 24px 64px; text-align: center; background: var(--white); }
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-inner .section-heading { margin-bottom: 16px; }
.closing-inner .section-text { margin-bottom: 36px; }

/* SIGNUP FORM */
.signup-section {
  background: linear-gradient(135deg, #0C0C0C 0%, #1C1005 50%, #0C0C0C 100%);
  padding: 80px 24px 96px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.signup-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(244,115,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.signup-inner { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }
.signup-section .section-heading { color: #fff; margin-bottom: 32px; }
.signup-form {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  max-width: 100%;
  min-width: 0;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; text-align: left; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.field input, .field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.signup-form .btn-main { margin-top: 8px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { font-size: 13.5px; color: #DC2626; margin-top: 12px; text-align: center; min-height: 1px; }
.form-error:empty { margin-top: 0; }
.privacy-line { font-size: 12.5px; color: var(--text-muted); margin-top: 16px; text-align: center; line-height: 1.6; }

/* LEGAL */
.legal { border-top: 1px solid var(--border); text-align: center; padding: 20px 24px; font-size: 12px; color: var(--text-muted); }
.legal a { color: #737373; text-decoration: none; }
.legal a:hover { color: var(--text-secondary); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .channels-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .t-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pain-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 36px; }
  .proof-section { padding: 40px 16px 24px; }
  .proof-inner { max-width: 100%; }
  .steps-inner .product-shot--wide {
    margin-top: 48px;
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
  }
  .founder-text:first-of-type { font-size: 17.5px; }
  .mk-factory-grid { grid-template-columns: minmax(0, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channels-section { padding: 64px 16px; }
  .testimonials-section { padding: 64px 16px; }
  .testimonials-grid { grid-template-columns: minmax(0, 1fr); max-width: 480px; margin: 0 auto; }
  .mk-channel-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .mk-channel-label { font-size: 9px; }
  .mk-channel { min-height: 70px; padding: 10px 4px 8px; }
  .mk-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .mk-greeting { gap: 10px; flex-wrap: wrap; }
  .signup-section { padding: 64px 16px 80px; }
  .signup-form { padding: 28px 18px; }
  .agitation, .steps-section, .founder-section, .closing-section { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 400px) {
  .mockup-body { padding: 14px; }
  .mk-stats { gap: 8px; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); }
  .mk-stat { padding: 10px; }
  .mk-num { font-size: 21px; }
  .mk-channel-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .btn-main, .btn-main-light { width: 100%; justify-content: center; font-size: 16px; }
  .mockup-section { padding: 0 16px 64px; }
  h1 { font-size: 30px; }
  .pricing-price { font-size: 44px; }
  .testimonials-foot { flex-direction: column; }
  .btn-outline { width: 100%; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .price-note { padding-left: 16px; padding-right: 16px; }
}
