/* ═══════════════════════════════════════════
   SMY ESTATE — style.css
   ═══════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --accent:   #6B1E2D;
  --accent-h: #4a1520;
  --black:    #0A0A0A;
  --dark:     #111820;
  --dark2:    #1a2530;
  --text:     #111111;
  --grey:     #555;
  --lgrey:    #999;
  --card:     #EFF2F5;
  --off:      #F4F6F8;
  --border:   #E3E6EA;
  --white:    #fff;
  --font:     'Inter', sans-serif;
  --px:       64px;  /* horizontal padding */
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SHARED BUTTONS ── */
.btn-accent {
  background: var(--accent); color: #fff;
  padding: 11px 24px; border-radius: 40px;
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  font-family: var(--font); text-decoration: none;
  transition: background .18s; display: inline-block; white-space: nowrap;
}
.btn-accent:hover { background: var(--accent-h); }
.btn-accent.lg { font-size: 15px; padding: 13px 28px; }

.btn-white {
  background: #fff; color: var(--black);
  padding: 11px 24px; border-radius: 40px;
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  font-family: var(--font); text-decoration: none;
  transition: opacity .18s; display: inline-block;
}
.btn-white:hover { opacity: .88; }
.btn-white.lg { font-size: 15px; padding: 13px 28px; }

.btn-outline-w {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.22);
  padding: 11px 24px; border-radius: 40px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  font-family: var(--font); transition: all .18s; display: inline-block;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-w.lg { font-size: 15px; padding: 13px 28px; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
header {
  position: fixed; inset: 0 0 auto; z-index: 999;
  height: 66px; padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,.88); backdrop-filter: blur(14px);
}

.logo {
  font-size: 20px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -.3px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-right {
  display: flex; align-items: center; gap: 18px;
}
.nav-phone {
  font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none;
}

/* Burger button (hidden on desktop) */
.burger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 66px; inset: 66px 0 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(14px);
  z-index: 998; flex-direction: column;
  padding: 32px var(--px) 40px;
  overflow-y: auto;
  transform: translateY(-10px); opacity: 0;
  transition: opacity .25s, transform .25s;
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0);
}
.mobile-nav ul {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.mobile-nav ul li {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav ul a {
  display: block; padding: 18px 0;
  font-size: 20px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: -.3px;
  transition: color .2s;
}
.mobile-nav ul a:hover { color: var(--accent); }
.mobile-nav .mobile-cta { margin-top: auto; }
.mobile-nav .mobile-phone {
  font-size: 14px; color: rgba(255,255,255,.4); margin-bottom: 16px; display: block;
}

/* ══════════════════════════════════════
   1. HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px var(--px) 80px;
  background: #111;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&q=80') center/cover no-repeat;
  opacity: .22;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.92) 45%, rgba(10,10,10,.3));
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%; position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 800; line-height: 1.05;
  color: #fff; letter-spacing: -2.5px; margin-bottom: 14px; max-width: 820px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.4); margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; margin-bottom: 60px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.hstat {
  padding-right: 36px; margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hstat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hstat-n { font-size: 17px; font-weight: 700; color: #fff; }
.hstat-l { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 2px; }

.hero-cards {
  position: absolute; right: var(--px); bottom: 60px;
  display: flex; gap: 14px;
}
.hcard {
  width: 210px; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.hcard-img-ph {
  width: 100%; height: 150px;
  background: linear-gradient(135deg,#1a2d3a,#2c4a5a);
  display: flex; align-items: center; justify-content: center;
}
.hcard-body { padding: 12px 14px 16px; }
.hcard-city {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 3px;
}
.hcard-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hcard-sub { font-size: 11px; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════
   2. TRUST GRID (dark)
══════════════════════════════════════ */
.trust { background: var(--dark); padding: 0 var(--px) 64px; }
.trust-inner { max-width: 1120px; margin: 0 auto; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.tcard {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 36px 32px; color: #fff;
}
.tcard-photo { padding: 0; overflow: hidden; }
.tcard-teal {
  background: var(--accent); border-color: transparent;
  display: flex; align-items: center; gap: 16px; padding: 36px 32px;
}
.tcard-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.tcard-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.5; }
.tcard-title { font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.tcard-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; }
.tcard-ph { width: 100%; min-height: 280px; background: linear-gradient(135deg,#1e3040,#2c4a5a); display: flex; align-items: center; justify-content: center; }
.tcard-teal-check { font-size: 26px; flex-shrink: 0; }
.tcard-teal-text { font-size: 15px; font-weight: 600; line-height: 1.5; }

/* ══════════════════════════════════════
   3. ZAHLEN
══════════════════════════════════════ */
.zahlen { background: #fff; padding: 96px var(--px); }
.zahlen-inner { max-width: 1120px; margin: 0 auto; }
.zahlen h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.08; margin-bottom: 48px;
}
.zahlen-card {
  background: var(--off); border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
}
.zahlen-photo { overflow: hidden; }
.zahlen-photo-ph {
  width: 100%; min-height: 340px;
  background: linear-gradient(135deg,#e8eff5,#d0dfe8);
  display: flex; align-items: center; justify-content: center;
}
.zahlen-info { padding: 52px 56px; }
.zahlen-vol {
  font-size: clamp(22px, 2.8vw, 38px); font-weight: 800;
  letter-spacing: -1.5px; margin-bottom: 28px; line-height: 1.1;
}
.zahlen-logos { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.logo-pill {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 14px;
  font-size: 11px; font-weight: 700; color: var(--grey); letter-spacing: .5px;
}
.zahlen-note {
  font-size: 13px; color: var(--lgrey); line-height: 1.75;
  margin-top: 24px;
}
.zahlen-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px;
}
.zstat { background: var(--off); border-radius: 12px; padding: 28px 32px; }
.zstat-n {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px;
}
.zstat-l { font-size: 13px; color: var(--lgrey); }

/* ══════════════════════════════════════
   4. MEHR EINHEITEN
══════════════════════════════════════ */
.mehr { background: #fff; padding: 96px var(--px); border-top: 1px solid var(--border); }
.mehr-inner { max-width: 1120px; margin: 0 auto; }
.mehr h2 {
  font-size: clamp(28px, 4.5vw, 56px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.06; margin-bottom: 64px;
}
.mehr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.mehr-card { background: var(--card); border-radius: 14px; padding: 32px; min-height: 300px; }

.slide { display: none; }
.slide.active { display: block; }

.person-rows {
  background: #fff; border-radius: 10px; padding: 20px 22px;
  margin-bottom: 20px; display: flex; flex-direction: column; gap: 14px;
}
.person-row { display: flex; align-items: center; gap: 14px; }
.person-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--card);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.person-lines { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pline { height: 8px; border-radius: 4px; background: var(--card); }

.mehr-card-title { font-size: 18px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; line-height: 1.3; }
.mehr-card-desc { font-size: 13px; color: var(--grey); line-height: 1.65; }

.mehr-right { padding-top: 4px; }
.mehr-text { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.mehr-list { margin-top: 32px; }
.mitem {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.mitem:hover .mnum { color: var(--accent); }
.mitem.active .mnum { color: var(--accent); font-weight: 700; }
.mitem.active .mtext { color: var(--black); font-weight: 600; }
.mnum { font-size: 15px; color: var(--lgrey); min-width: 16px; transition: color .2s; }
.mtext { font-size: 15px; color: var(--lgrey); line-height: 1.5; transition: color .2s; }

/* ══════════════════════════════════════
   5. WARUM
══════════════════════════════════════ */
.warum { background: var(--off); padding: 96px var(--px); }
.warum-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.warum h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.08; margin-bottom: 64px;
}
.warum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; text-align: left; }
.witem-icon { width: 38px; height: 38px; margin-bottom: 16px; }
.witem-icon svg { width: 38px; height: 38px; stroke: var(--black); fill: none; stroke-width: 1.3; }
.witem-title { font-size: 19px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; line-height: 1.3; }
.witem-desc { font-size: 14px; color: var(--grey); line-height: 1.72; }

/* ══════════════════════════════════════
   6. WIR KENNEN
══════════════════════════════════════ */
.wir { background: #fff; padding: 96px var(--px); }
.wir-inner { max-width: 1120px; margin: 0 auto; }
.wir h2 {
  font-size: clamp(26px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 40px;
}
.wir-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; }
.wir-photo { border-radius: 14px; overflow: hidden; min-height: 380px; }
.wir-photo-ph {
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(160deg,#1a2d3a,#2c4a5a);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px; position: relative; border-radius: 14px;
}
.wir-photo-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.wir-photo-label {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.08); border-radius: 8px; padding: 10px 16px;
}
.wir-photo-label span { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.wir-content {
  background: var(--off); border-radius: 14px; padding: 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.wir-title { font-size: 24px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 18px; line-height: 1.25; }
.wir-text { font-size: 15px; color: var(--grey); line-height: 1.78; margin-bottom: 28px; }

/* ══════════════════════════════════════
   7. PROCESS
══════════════════════════════════════ */
.process { background: #fff; padding: 96px var(--px); border-top: 1px solid var(--border); }
.process-inner { max-width: 1120px; margin: 0 auto; }
.process h2 {
  font-size: clamp(26px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 48px;
}
.pcard {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 14px; overflow: hidden;
  background: var(--off); margin-bottom: 16px; min-height: 280px;
}
.pcard.reverse { direction: rtl; }
.pcard.reverse > * { direction: ltr; }
.pcard-text { padding: 44px 48px; display: flex; flex-direction: column; justify-content: flex-end; }
.pcard-title { font-size: 21px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.25; }
.pcard-desc { font-size: 14px; color: var(--grey); line-height: 1.68; }
.pcard-visual {
  background: #E8EDF2; display: flex; align-items: center;
  justify-content: center; padding: 40px; position: relative; overflow: hidden;
}

.bonus {
  display: grid; grid-template-columns: 1fr .8fr;
  border-radius: 14px; overflow: hidden;
  background: var(--off); min-height: 240px;
}
.bonus-text { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
.bonus-title { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; letter-spacing: -.8px; margin-bottom: 14px; line-height: 1.25; }
.bonus-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }
.bonus-dark {
  background: var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.bonus-num { font-size: 68px; font-weight: 800; color: rgba(255,255,255,.15); letter-spacing: -4px; line-height: 1; }
.bonus-num-label { font-size: 13px; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   8. SO PROFITIEREN (dark)
══════════════════════════════════════ */
.profitieren { background: var(--dark); padding: 96px var(--px); }
.profitieren-inner { max-width: 1120px; margin: 0 auto; }
.profitieren h2 {
  font-size: clamp(26px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; color: #fff; margin-bottom: 48px; line-height: 1.1;
}
.profit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf-card { border-radius: 14px; overflow: hidden; position: relative; min-height: 380px; }
.pf-inner { width: 100%; height: 100%; min-height: 380px; display: flex; align-items: flex-end; padding: 0; border-radius: 14px; overflow: hidden; }
.pf-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
}
.pf-label-text { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }

/* ══════════════════════════════════════
   9. DARK CTA
══════════════════════════════════════ */
.dark-cta { background: var(--dark2); padding: 100px var(--px); text-align: center; }
.dark-cta h2 {
  font-size: clamp(26px, 4vw, 54px); font-weight: 800;
  letter-spacing: -2px; color: #fff; line-height: 1.08;
  margin-bottom: 16px; max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.dark-cta-sub { font-size: 16px; color: rgba(255,255,255,.35); margin-bottom: 36px; }
.dark-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   10. FINAL CTA BANNER
══════════════════════════════════════ */
.final-cta { background: #fff; padding: 0 var(--px) 96px; }
.final-inner { max-width: 1120px; margin: 0 auto; }
.final-card {
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #dce9f0 0%, #eaf2f8 100%);
  min-height: 300px;
}
.final-left {
  padding: 52px 56px; display: flex; flex-direction: column; justify-content: center;
  background: #fff; border-radius: 14px; margin: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.final-title {
  font-size: clamp(18px, 2.5vw, 32px); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px; line-height: 1.2;
}
.final-sub { font-size: 14px; color: var(--lgrey); margin-bottom: 24px; }
.final-photo { overflow: hidden; }
.final-photo-ph {
  width: 100%; height: 100%; min-height: 240px;
  background: linear-gradient(135deg, #a8c5d8, #7da8c0);
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--off); border-top: 1px solid var(--border);
  padding: 56px var(--px) 36px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-logo {
  font-size: 19px; font-weight: 800; color: var(--black);
  text-decoration: none; letter-spacing: -.3px;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-company { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.footer-addr { font-size: 13px; color: var(--lgrey); line-height: 1.9; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid var(--border);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--lgrey); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 13px; color: var(--lgrey); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--black); }

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.overlay.on { display: flex; }
.modal {
  background: #fff; border-radius: 14px; padding: 48px;
  max-width: 460px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-x {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--lgrey); font-family: var(--font); line-height: 1;
}
.modal-x:hover { color: var(--black); }
.modal-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lgrey); margin-bottom: 8px; display: block; }
.modal h3 { font-size: 24px; font-weight: 800; letter-spacing: -.8px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--grey); margin-bottom: 28px; }
.frow { margin-bottom: 13px; }
.frow label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--grey); margin-bottom: 7px; }
.frow input, .frow select {
  width: 100%; border: 1.5px solid var(--border);
  background: #fff; color: var(--black);
  padding: 12px 14px; font-size: 14px; font-family: var(--font);
  border-radius: 8px; outline: none; transition: border-color .2s;
}
.frow input:focus, .frow select:focus { border-color: var(--accent); }
.fsubmit {
  width: 100%; background: var(--accent); color: #fff; border: none;
  padding: 14px; font-size: 15px; font-weight: 700;
  font-family: var(--font); border-radius: 40px; cursor: pointer;
  margin-top: 6px; transition: background .2s;
}
.fsubmit:hover { background: var(--accent-h); }
.fnote { font-size: 12px; color: #ccc; text-align: center; margin-top: 10px; }

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --px: 40px; }
}

@media (max-width: 768px) {
  :root { --px: 20px; }

  /* NAV */
  header { height: 60px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; }
  .mobile-nav { top: 60px; inset: 60px 0 0; }

  /* HERO */
  .hero { padding: 100px var(--px) 60px; min-height: auto; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-accent, .hero-btns .btn-outline-w { width: 100%; text-align: center; }
  .hero-cards { display: none; }
  .hero-gradient { background: linear-gradient(to bottom, rgba(10,10,10,.85), rgba(10,10,10,.6)); }
  .hero-stats { gap: 24px; }
  .hstat { padding-right: 24px; margin-right: 24px; }

  /* TRUST */
  .trust { padding-bottom: 40px; }
  .trust-grid { grid-template-columns: 1fr; gap: 10px; }
  .tcard-ph { min-height: 180px; }

  /* ZAHLEN */
  .zahlen { padding: 60px var(--px); }
  .zahlen-card { grid-template-columns: 1fr; }
  .zahlen-photo-ph { min-height: 220px; }
  .zahlen-info { padding: 32px 28px; }
  .zahlen-stats { grid-template-columns: 1fr 1fr; }
  .zstat { padding: 20px 24px; }

  /* MEHR */
  .mehr { padding: 60px var(--px); }
  .mehr h2 { margin-bottom: 40px; }
  .mehr-grid { grid-template-columns: 1fr; gap: 32px; }
  .mehr-right { order: -1; }
  .mehr-text { max-width: 100%; }

  /* WARUM */
  .warum { padding: 60px var(--px); }
  .warum h2 { margin-bottom: 40px; text-align: left; }
  .warum-grid { grid-template-columns: 1fr; gap: 36px; }
  .warum-inner { text-align: left; }

  /* WIR */
  .wir { padding: 60px var(--px); }
  .wir-grid { grid-template-columns: 1fr; }
  .wir-photo-ph { min-height: 240px; }
  .wir-content { padding: 32px; }

  /* PROCESS */
  .process { padding: 60px var(--px); }
  .pcard { grid-template-columns: 1fr; }
  .pcard.reverse { direction: ltr; }
  .pcard-visual { min-height: 200px; }
  .pcard-text { padding: 28px 32px; }
  .bonus { grid-template-columns: 1fr; }
  .bonus-text { padding: 36px 32px; }
  .bonus-dark { min-height: 140px; }

  /* PROFITIEREN */
  .profitieren { padding: 60px var(--px); }
  .profit-grid { grid-template-columns: 1fr; gap: 12px; }
  .pf-card { min-height: 240px; }
  .pf-inner { min-height: 240px; }

  /* DARK CTA */
  .dark-cta { padding: 72px var(--px); }
  .dark-cta-btns { flex-direction: column; align-items: stretch; }
  .dark-cta-btns .btn-accent,
  .dark-cta-btns .btn-white { text-align: center; }

  /* FINAL CTA */
  .final-cta { padding: 0 var(--px) 60px; }
  .final-card { grid-template-columns: 1fr; }
  .final-left { margin: 12px; padding: 32px 28px; }
  .final-photo { display: none; }

  /* FOOTER */
  footer { padding: 40px var(--px) 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }

  /* MODAL */
  .modal { padding: 32px 24px; }
  .modal h3 { font-size: 20px; }
}

@media (max-width: 400px) {
  .zahlen-stats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}