/* ============================================================
   Traceon AG — Landing Page Design System & Styles
   Kampagne: K2 Cold Outreach | Paket: Wachstum
   Design: Industrial / B2B Tech / Telematik
   ============================================================ */

/* --- SELF-HOSTED FONTS --- */
@font-face {
  font-family: 'Roboto';
  src: url('assets/fonts/roboto-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
  /* Farben — Traceon AG Branding */
  --brand-primary: #C90C10;
  --brand-primary-dark: #A00A0D;
  --brand-primary-hover: #B50B0E;
  --bg-light: #F2F2F2;
  --bg-white: #FFFFFF;
  --bg-card: #FAFAFA;
  --bg-dark: #111111;
  --bg-dark-section: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-inverse: #FFFFFF;
  --border-subtle: #E0E0E0;

  /* Typografie — Roboto */
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing — grosszuegiger fuer Tech-Feeling */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-2xl: 96px;

  /* Layout */
  --container-max: 1140px;
  --container-px: 28px;
  --section-py: 88px;
  --card-radius: 4px;
  --btn-radius: 4px;
  --img-radius: 8px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --- CONTAINER --- */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  box-sizing: border-box;
}

/* --- SECTION BASE --- */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.section__headline--center {
  text-align: center;
}
.section__headline--inverse {
  color: var(--text-inverse);
}

/* --- ACCENT DIVIDER (farbiger Strich unter Headlines) --- */
.accent-divider {
  width: 48px;
  height: 3px;
  background: var(--brand-primary);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  border: none;
}
.accent-divider--center {
  margin-left: auto;
  margin-right: auto;
}
.accent-divider--dark {
  background: rgba(255, 255, 255, 0.25);
}

/* --- BUTTON SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 16px 40px;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn:hover {
  text-decoration: none;
}

/* Primaer: Brand-Farbe auf hellem Grund */
.btn--primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
  border-color: var(--brand-primary);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
}

/* Final CTA Button: Rot auf dunklem Grund */
.btn--cta-final {
  background: var(--brand-primary);
  color: var(--text-inverse);
  border-color: var(--brand-primary);
}
.btn--cta-final:hover,
.btn--cta-final:focus-visible {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  box-shadow: 0 4px 20px rgba(201, 12, 16, 0.4);
}

/* Full-width (Mobile Sticky) */
.btn--full {
  width: 100%;
}

/* --- TOPBAR (Markenbalken) — schmal, dunkel, industriell --- */
.topbar {
  background: var(--bg-dark);
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--brand-primary);
}
.topbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}
.topbar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.topbar__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ============================================================
   SEKTION 1: HERO — Split Layout mit Produktbild rechts
   ============================================================ */
.section--hero {
  background: var(--bg-light);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  text-align: left;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero__subtext {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.hero__cta-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.hero__image img {
  width: 100%;
  aspect-ratio: 615 / 410;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Trust Numbers — horizontale Zeile unter dem Hero */
.trust-numbers {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.trust-numbers__item {
  text-align: center;
}

.trust-numbers__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--brand-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.trust-numbers__label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-numbers__item--highlight .trust-numbers__value {
  font-size: 40px;
}

/* ============================================================
   SEKTION 2: PROBLEM — dunkler Hintergrund, industrial look
   ============================================================ */
.section--problem {
  background: var(--bg-dark-section);
  color: var(--text-inverse);
}

.problem__stat {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--brand-primary);
  max-width: 680px;
  margin: var(--space-xl) auto 0;
  line-height: 1.5;
}

/* ============================================================
   CARD SYSTEM — kantig, mit roter linker Border
   ============================================================ */
.card-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: left;
  border-left: 3px solid var(--brand-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card mit dezenter Hintergrund-Grafik */
.card--has-bg {
  position: relative;
}
.card--has-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  border-radius: var(--card-radius);
  pointer-events: none;
}

/* Cards in dark section */
.section--problem .card {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--brand-primary);
}
.section--problem .card__title {
  color: var(--text-inverse);
}
.section--problem .card__text {
  color: rgba(255, 255, 255, 0.7);
}
.section--problem .card__icon .icon-line {
  color: rgba(255, 255, 255, 0.2);
}

.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 0 var(--space-sm);
}
.card__icon .icon-line {
  width: 100%;
  height: 100%;
  color: var(--border-subtle);
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Process Cards — eckige Step-Badges */
.card--process {
  position: relative;
  text-align: left;
}

.card__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--card-radius);
  background: var(--brand-primary);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 var(--space-sm);
}

/* Card Person (Avatar + Label) — Schritt 1 */
.card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}

.card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.card__person-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Card Inline Image — Schritt 3 */
.card__inline-image {
  margin-top: var(--space-sm);
  border-radius: var(--img-radius);
  overflow: hidden;
}

.card__inline-image img {
  width: 100%;
  aspect-ratio: 280 / 160;
  object-fit: cover;
  border-radius: var(--img-radius);
}

/* ============================================================
   SEKTION 3: LOESUNG — Split Layout
   ============================================================ */
.section--solution {
  background: var(--bg-white);
}

.solution__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}

.solution__features .feature-list {
  margin: 0;
  max-width: none;
}

.solution__image {
  position: sticky;
  top: 100px;
}

.solution__image img {
  width: 100%;
  aspect-ratio: 615 / 410;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  max-width: 720px;
  margin: var(--space-lg) auto 0;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.feature-list__item:last-child {
  border-bottom: none;
}

.feature-list__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--card-radius);
  background: var(--brand-primary);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.feature-list__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-list__content strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.feature-list__content span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SEKTION 4: PROZESS
   ============================================================ */
.section--process {
  background: var(--bg-light);
}

/* ============================================================
   SEKTION 5: SOCIAL PROOF — Testimonials + HQ-Banner
   ============================================================ */
.section--proof {
  background: var(--bg-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.testimonial {
  position: relative;
  padding: var(--space-lg) 0 var(--space-md);
  border-top: none;
}

.testimonial__quote-icon {
  display: block;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--brand-primary);
  opacity: 0.25;
  margin-bottom: var(--space-sm);
  user-select: none;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: normal;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
}
.testimonial__info strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.testimonial__info span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* HQ Banner mit Overlay */
.proof__hq-banner {
  position: relative;
  margin-top: var(--space-xl);
  border-radius: var(--img-radius);
  overflow: hidden;
}

.proof__hq-image {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  display: block;
}

.proof__hq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.4) 100%);
  display: flex;
  align-items: center;
  padding: var(--space-lg);
}

.proof__hq-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 480px;
}

/* Vertrauens-Counter */
.proof__experience-counter {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--card-radius);
  border-left: 3px solid var(--brand-primary);
}

.proof__experience-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-subtle);
}

.stats-row__item {
  text-align: center;
}

.stats-row__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--brand-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stats-row__label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section__cta-wrap {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   SEKTION 6: PRICING
   ============================================================ */
.section--pricing {
  background: var(--bg-light);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.pricing__text {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.pricing__text strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================================
   SEKTION 7: FAQ — rote Linie links, moderner Stil
   ============================================================ */
.section--faq {
  background: var(--bg-white);
}

.faq-list {
  max-width: 720px;
  margin: var(--space-lg) auto 0;
}

.faq-item {
  border-bottom: none;
  margin-bottom: var(--space-sm);
  border-left: 3px solid var(--brand-primary);
  background: var(--bg-card);
  border-radius: var(--card-radius);
  transition: background 0.2s ease;
}
.faq-item[open] {
  background: var(--bg-light);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  list-style: none;
  gap: var(--space-sm);
  letter-spacing: -0.01em;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::marker {
  content: '';
}

/* Plus/Minus Icon */
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--brand-primary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}
.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}
.faq-item[open] .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-md);
}
.faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   SEKTION 8: FINAL CTA — dunkler Block mit persönlichem Touch
   ============================================================ */
.section--final-cta {
  background: var(--bg-dark);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.final-cta__text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* Persönlicher Block mit Avatar */
.final-cta__personal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.final-cta__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.final-cta__personal-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.final-cta__personal-info strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-inverse);
  letter-spacing: -0.01em;
}

.final-cta__personal-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.final-cta__button-wrap {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.final-cta__calendly-wrap {
  background: var(--bg-white);
  border-radius: var(--card-radius);
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

.final-cta__trust {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin-top: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   SEKTION 9: FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  text-align: center;
}

.footer__legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.footer__link:hover {
  color: var(--text-inverse);
}

.footer__sep {
  margin: 0 var(--space-xs);
  color: rgba(255, 255, 255, 0.2);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
}

.footer__contact {
  margin-bottom: var(--space-sm);
}

.footer__unsub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  margin: var(--space-sm) auto 0;
  line-height: 1.5;
}

/* Impressum Overlay */
.impressum {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.impressum h3 {
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}
.impressum__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--text-inverse);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 12px var(--container-px);
  transition: transform 0.3s ease;
  transform: translateY(100%);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   CONSENT BANNER
   ============================================================ */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: var(--space-sm) var(--container-px);
  transition: transform 0.3s ease;
  transform: translateY(100%);
  pointer-events: none;
}
.consent-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.consent-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.consent-text {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
  min-width: 200px;
}

.consent-actions {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.consent-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-white);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.consent-btn--accept {
  background: var(--brand-primary);
  color: var(--text-inverse);
  border-color: var(--brand-primary);
}
.consent-btn--accept:hover {
  background: var(--brand-primary-hover);
}
.consent-btn--deny:hover {
  background: var(--bg-light);
}

/* ============================================================
   RESPONSIVE: MOBILE-FIRST
   ============================================================ */

/* Mobile: <= 700px */
@media (max-width: 700px) {
  :root {
    --section-py: 56px;
    --space-2xl: 56px;
  }

  /* Hero: Stack vertikal */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__content {
    text-align: left;
  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__subtext {
    max-width: none;
  }

  .hero__cta-group {
    align-items: flex-start;
  }

  .hero__image img {
    aspect-ratio: 3 / 2;
  }

  .section__headline {
    font-size: 28px;
  }

  .trust-numbers {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  /* Loesung: Stack vertikal */
  .solution__split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .solution__image {
    position: static;
    order: -1;
  }

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

  .stats-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stats-row__value {
    font-size: 28px;
  }

  .trust-numbers__value {
    font-size: 28px;
  }
  .trust-numbers__item--highlight .trust-numbers__value {
    font-size: 32px;
  }

  .consent-inner {
    flex-direction: column;
    text-align: center;
  }

  .feature-list__item {
    gap: 12px;
  }

  .btn {
    white-space: normal;
    padding: 14px 24px;
    max-width: 100%;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  .final-cta__calendly-wrap {
    border-radius: 0;
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
    max-width: none;
  }

  /* HQ Banner mobile */
  .proof__hq-banner {
    border-radius: 0;
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
  }

  .proof__hq-text {
    font-size: 18px;
  }

  .proof__hq-overlay {
    padding: var(--space-md);
  }

  /* Final CTA personal */
  .final-cta__personal {
    flex-direction: column;
    text-align: center;
  }

  .final-cta__avatar {
    width: 64px;
    height: 64px;
  }

  .final-cta__personal-info {
    align-items: center;
  }

  /* Card avatar */
  .card__avatar {
    width: 60px;
    height: 60px;
  }
}

/* Tablet: 701px - 1100px */
@media (min-width: 701px) and (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__cta-group {
    align-items: center;
  }

  .hero__headline {
    font-size: 40px;
  }

  .hero__subtext {
    margin: 0 auto;
  }

  .hero__image img {
    max-width: 560px;
    margin: 0 auto;
  }

  .solution__split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .solution__image {
    position: static;
  }

  .solution__image img {
    max-width: 560px;
    margin: 0 auto;
  }

  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__headline {
    font-size: 32px;
  }

  .trust-numbers {
    gap: var(--space-lg);
  }
}

/* Desktop: > 1100px */
@media (min-width: 1101px) {
  :root {
    --container-px: 0px;
  }

  .sticky-cta {
    display: none !important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .topbar,
  .consent-banner,
  .sticky-cta,
  .final-cta__calendly-wrap {
    display: none !important;
  }
}
