/* ========================================
   Treppenlifte Sauerland — CSS
   Inspiriert von peter.at: clean, bold, elegant
   ======================================== */

:root {
  --blue-900: #0A2540;
  --blue-800: #0F4C81;
  --blue-700: #1565C0;
  --blue-600: #2E86DE;
  --blue-100: #E3F0FC;
  --blue-50:  #F4F9FF;

  --white:    #FFFFFF;
  --cream:    #FAFBFD;
  --gray-50:  #F6F8FB;
  --gray-100: #EDF0F5;
  --gray-200: #D5DAE3;
  --gray-300: #B0B8C9;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;

  --orange:     #E67E22;
  --orange-dk:  #D35400;
  --orange-glow: rgba(230,126,34,.12);

  --green-light: #ECFDF5;
  --green:       #059669;
  --green-dark:  #047857;

  --gold: #F5B731;

  --font-heading: 'Merriweather', Georgia, serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --nav-h: 80px;
}

/* Reset */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; scroll-padding-top:calc(var(--nav-h) + 50px); }
body {
  font-family:var(--font-body);
  font-size:18px; line-height:1.75;
  color:var(--gray-700);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { color:var(--blue-700); text-decoration:none; }
ul { list-style:none; }

/* Container */
.container { max-width:1200px; margin:0 auto; padding:0 40px; }
.container--narrow { max-width:800px; }

/* --- Scroll Reveal --- */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity:1;
  transform:translateY(0);
}
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* Placeholder Images */
.placeholder-img {
  background:var(--gray-50);
  border:2px dashed var(--gray-200);
  border-radius:var(--radius-lg);
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:var(--gray-500);
  font-size:14px; font-weight:600;
  min-height:320px; padding:32px;
}
.placeholder-img--hero { min-height:480px; border-radius:var(--radius-xl); }
.placeholder-img--card { min-height:220px; border-radius:var(--radius-lg) var(--radius-lg) 0 0; border-bottom:none; }
.placeholder-img--avatar {
  width:56px; height:56px; min-height:56px;
  border-radius:50%; font-size:11px; border-width:1px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background:var(--blue-900);
  color:rgba(255,255,255,.85);
  text-align:center;
  padding:12px 20px;
  font-size:14px; font-weight:600;
  letter-spacing:.3px;
  position:fixed; top:0; left:0; right:0; z-index:1001;
}
.top-bar strong { color:var(--gold); }

/* ========== NAVIGATION ========== */
.nav {
  position:fixed; top:40px; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  height:var(--nav-h);
  display:flex; align-items:center;
  transition:background .4s, box-shadow .4s;
}
.nav.scrolled {
  background:rgba(255,255,255,.98);
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.nav__inner {
  display:flex; align-items:center; justify-content:space-between; width:100%;
}
.nav__logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--blue-900);
}
.nav__logo-img { height:56px; width:auto; }
.nav__links { display:flex; gap:40px; }
.nav__links a {
  color:var(--gray-700); font-weight:600; font-size:15px;
  transition:color .3s; position:relative;
}
.nav__links a::after {
  content:''; position:absolute; bottom:-6px; left:0; width:0;
  height:2px; background:var(--blue-700);
  transition:width .3s cubic-bezier(.16,1,.3,1);
}
.nav__links a:hover { color:var(--blue-900); }
.nav__links a:hover::after { width:100%; }
.nav__phone {
  display:flex; align-items:center; gap:8px;
  background:var(--orange); color:var(--white);
  font-weight:700; font-size:14px;
  padding:12px 24px; border-radius:var(--radius);
  transition:background .3s, transform .2s;
}
.nav__phone:hover { background:var(--orange-dk); transform:translateY(-1px); }
.nav__toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav__toggle span {
  display:block; width:24px; height:2px; background:var(--gray-900);
  margin:6px 0; border-radius:2px; transition:.3s;
}

/* ========== HERO ========== */
.hero {
  padding:calc(var(--nav-h) + 140px) 0 120px;
  background:var(--blue-900);
  color:var(--white);
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-30%; right:-10%; width:70%; height:160%;
  background:radial-gradient(ellipse, rgba(21,101,192,.15) 0%, transparent 70%);
  pointer-events:none;
}
.hero__inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center; position:relative;
}
.hero__title {
  font-family:var(--font-heading);
  font-size:56px; line-height:1.1;
  color:var(--white);
  margin-bottom:28px; letter-spacing:-.5px;
}
.hero__subtitle {
  font-size:20px; color:rgba(255,255,255,.7);
  margin-bottom:44px; max-width:480px; line-height:1.7;
}
.hero__ctas { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:32px; }
.hero__trust {
  display:flex; align-items:center; gap:14px;
  font-size:15px; color:rgba(255,255,255,.5);
}
.hero__stars { color:var(--gold); font-size:22px; letter-spacing:3px; }
.hero .placeholder-img--hero {
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:rgba(255,255,255,.4);
}

.hero__img {
  border-radius:var(--radius-xl);
  width:100%; height:auto;
  object-fit:cover;
}
.card__img {
  width:100%; height:220px;
  object-fit:cover;
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
}

/* ========== BUTTONS ========== */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 36px;
  font-family:var(--font-body);
  font-size:16px; font-weight:700;
  border-radius:var(--radius);
  border:2px solid transparent;
  cursor:pointer;
  transition:all .3s cubic-bezier(.16,1,.3,1);
  text-decoration:none;
}
.btn--primary {
  background:var(--orange); color:var(--white);
  border-color:var(--orange);
}
.btn--primary:hover {
  background:var(--orange-dk); border-color:var(--orange-dk);
  transform:translateY(-2px);
  box-shadow:0 8px 24px var(--orange-glow);
}
.btn--outline {
  background:transparent; color:var(--white);
  border-color:rgba(255,255,255,.3);
}
.btn--outline:hover {
  background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.5);
}
.btn--outline-dark {
  background:transparent; color:var(--blue-800);
  border-color:var(--blue-700);
}
.btn--outline-dark:hover {
  background:var(--blue-800); color:var(--white);
  transform:translateY(-2px);
}
.btn--lg { padding:20px 48px; font-size:17px; }
.btn--sm { padding:12px 24px; font-size:14px; }
.btn--white {
  background:var(--white); color:var(--blue-900);
  border-color:var(--white);
}
.btn--white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.1); }

/* ========== TRUST STRIP ========== */
.trust-strip {
  background:var(--white);
  padding:28px 0;
  border-bottom:1px solid var(--gray-100);
}
.trust-strip__items {
  display:flex; justify-content:center; flex-wrap:wrap; gap:48px;
}
.trust-strip__row {
  display:flex; justify-content:center; flex-wrap:wrap; gap:48px;
}
.trust-strip__row + .trust-strip__row { margin-top:12px; }
.trust-strip__item {
  display:flex; align-items:center; gap:10px;
  color:var(--gray-700); font-size:15px; font-weight:600;
}
.trust-strip__icon {
  width:28px; height:28px;
  background:var(--blue-50); color:var(--blue-700);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700;
}

/* ========== SECTIONS ========== */
.section { padding:140px 0; }
.section--white { background:var(--white); }
.section--light { background:var(--gray-50); }
.section--dark {
  background:var(--blue-900); color:var(--white);
}
.section--dark .section__title { color:var(--white); }
.section--dark .section__subtitle { color:rgba(255,255,255,.6); }
.section--foerderung { background:var(--blue-900); color:var(--white); }
.section--foerderung .section__title { color:var(--white); }
.section--foerderung .section__subtitle { color:rgba(255,255,255,.6); }
.section--foerderung p { color:rgba(255,255,255,.75); }
.section--foerderung .foerderung-box { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.1); }
.section--foerderung .foerderung-box__row { border-color:rgba(255,255,255,.1); color:rgba(255,255,255,.85); }
.section--foerderung .foerderung-box__row--minus { color:var(--gold); }
.section--foerderung .foerderung-box__row--result { border-color:var(--gold); color:var(--white); }
.section--cta {
  background:var(--blue-900); color:var(--white);
  position:relative; overflow:hidden;
}
.section--cta::before {
  content:''; position:absolute; top:0; left:0; right:0; bottom:0;
  background:radial-gradient(circle at 50% 0%, rgba(21,101,192,.12) 0%, transparent 60%);
}
.section--cta .section__title { color:var(--white); }
.section--cta .section__subtitle { color:rgba(255,255,255,.6); }

.section__title {
  font-family:var(--font-heading);
  font-size:44px; color:var(--blue-900);
  margin-bottom:20px; line-height:1.2;
  letter-spacing:-.3px;
}
.section__title--center { text-align:center; }
.section__subtitle {
  font-size:19px; color:var(--gray-500);
  margin-bottom:64px; text-align:center;
  max-width:560px; margin-left:auto; margin-right:auto;
  line-height:1.7;
}
.section__cta { text-align:center; margin-top:64px; }

/* ========== STATS BAR ========== */
.stats-bar {
  background:var(--blue-900);
  padding:80px 0;
}
.stats-bar__grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:40px;
  text-align:center;
}
.stat { color:var(--white); }
.stat__number {
  font-family:var(--font-heading);
  font-size:52px; font-weight:700;
  color:var(--gold);
  line-height:1;
  margin-bottom:8px;
}
.stat__label {
  font-size:15px; color:rgba(255,255,255,.6);
  font-weight:600;
}

/* ========== TWO COL ========== */
.two-col {
  display:grid; grid-template-columns:1fr 1fr;
  gap:100px; align-items:center;
}
.two-col--reverse .two-col__image { order:-1; }
.two-col__text p { margin-bottom:20px; }
.two-col__text p:last-of-type { margin-bottom:32px; }

/* ========== CARDS ========== */
.cards {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:32px; max-width:840px; margin:0 auto;
}
.card {
  background:var(--white);
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--gray-100);
  transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 60px rgba(10,37,64,.1);
}
.card__body { padding:32px; }
.card__title {
  font-family:var(--font-heading);
  font-size:22px; color:var(--blue-900); margin-bottom:10px;
}
.card__badge {
  display:inline-block;
  background:var(--blue-50); color:var(--blue-700);
  padding:5px 14px; border-radius:20px;
  font-size:12px; font-weight:700; margin-bottom:14px;
}

/* ========== STEPS ========== */
.steps {
  display:grid; grid-template-columns:repeat(4,1fr); gap:48px;
  text-align:center;
}
.step { position:relative; padding:20px 8px; }
.step__number {
  width:48px; height:48px; border-radius:50%;
  background:var(--blue-900); color:var(--gold);
  font-family:var(--font-heading);
  font-size:20px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px;
}
.step__icon { font-size:48px; margin-bottom:20px; }
.step__title {
  font-family:var(--font-heading);
  font-size:18px; color:var(--blue-900); margin-bottom:12px;
}
.step p { font-size:16px; color:var(--gray-500); line-height:1.65; }

/* ========== FÖRDERUNG BOX ========== */
.foerderung-box {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:28px;
  margin:28px 0;
  border:1px solid rgba(5,150,105,.12);
}
.foerderung-box__row {
  display:flex; justify-content:space-between;
  padding:12px 0; font-size:17px;
  border-bottom:1px solid var(--gray-100);
}
.foerderung-box__row--minus { color:var(--green); font-weight:600; }
.foerderung-box__row--result {
  border-bottom:none; border-top:2px solid var(--blue-900);
  padding-top:16px; margin-top:8px;
  font-size:24px; color:var(--blue-900);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}
.testimonial {
  background:var(--white);
  border-radius:var(--radius-xl);
  padding:40px;
  border:1px solid var(--gray-100);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.testimonial:hover { transform:translateY(-4px); }
.testimonial__stars { color:var(--gold); font-size:22px; margin-bottom:20px; letter-spacing:3px; }
.testimonial__text {
  font-size:17px; line-height:1.8;
  color:var(--gray-700); margin-bottom:28px;
  font-style:italic;
}
.testimonial__author {
  display:flex; align-items:center; gap:14px;
}
.testimonial__avatar {
  width:56px; height:56px; border-radius:50%; object-fit:cover;
  object-position:center top;
  flex-shrink:0;
}
.testimonial__author strong { display:block; color:var(--gray-900); font-size:16px; }
.testimonial__author span { font-size:14px; color:var(--gray-500); }

/* ========== QUOTE ========== */
.quote {
  border-left:4px solid var(--blue-700);
  padding:24px 32px;
  margin:32px 0;
  font-style:italic;
  color:var(--gray-700);
  background:var(--blue-50);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  font-size:19px; line-height:1.7;
}
.quote cite {
  display:block; margin-top:14px;
  font-style:normal; font-weight:700;
  color:var(--blue-800); font-size:15px;
}

/* ========== FAQ ========== */
.faq { display:flex; flex-direction:column; gap:12px; }
.faq__item {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:border-color .3s;
}
.faq__item[open] { border-color:var(--blue-100); }
.faq__question {
  padding:24px 28px;
  font-weight:700; font-size:17px;
  cursor:pointer;
  color:var(--blue-900);
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  transition:color .2s;
}
.faq__question:hover { color:var(--blue-700); }
.faq__question::after {
  content:'＋'; font-size:22px; color:var(--gray-300);
  flex-shrink:0; margin-left:16px;
  transition:transform .3s, color .3s;
}
.faq__item[open] .faq__question::after { content:'−'; color:var(--blue-700); }
.faq__question::-webkit-details-marker { display:none; }
.faq__answer { padding:0 28px 24px; color:var(--gray-700); font-size:17px; line-height:1.8; }

/* ========== CTA SECTION ========== */
.cta-microcopy {
  margin-top:20px; font-size:15px;
  color:rgba(255,255,255,.45);
}

/* ========== FOOTER ========== */
.footer {
  background:var(--gray-900);
  color:rgba(255,255,255,.6);
  padding:80px 0 0;
}
.footer__grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
}
.footer__desc { margin-top:20px; font-size:15px; line-height:1.7; }
.footer h4 {
  color:var(--white); font-size:13px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px;
  margin-bottom:24px;
}
.footer ul { display:flex; flex-direction:column; gap:12px; }
.footer a { color:rgba(255,255,255,.5); font-size:15px; transition:color .3s; }
.footer a:hover { color:var(--white); }
.footer__bottom {
  margin-top:56px; padding:28px 0;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:13px; text-align:center;
  color:rgba(255,255,255,.3);
}

/* ========== PAGES ========== */
.page-hero {
  padding:calc(var(--nav-h) + 140px) 0 100px;
  background:var(--blue-900);
  color:var(--white); text-align:center;
  position:relative;
}
.page-hero::before {
  content:''; position:absolute; top:0; left:0; right:0; bottom:0;
  background:radial-gradient(circle at 50% 30%, rgba(21,101,192,.1) 0%, transparent 50%);
}
.page-hero h1 {
  font-family:var(--font-heading);
  font-size:52px; margin-bottom:20px; position:relative;
}
.page-hero p { font-size:20px; opacity:.6; max-width:600px; margin:0 auto; position:relative; }

/* Product detail */
.product-detail {
  display:grid; grid-template-columns:1fr 1fr;
  gap:100px; align-items:center;
  padding:80px 0;
  border-bottom:1px solid var(--gray-100);
}
.product-detail:last-child { border-bottom:none; }
.product-detail__badge {
  display:inline-block; background:var(--blue-50); color:var(--blue-700);
  padding:6px 18px; border-radius:20px; font-size:13px; font-weight:700; margin-bottom:14px;
}
.product-detail h2 { font-family:var(--font-heading); font-size:34px; color:var(--blue-900); margin-bottom:16px; }
.product-detail p { font-size:18px; }
.product-detail ul { margin:20px 0; }
.product-detail li {
  margin-bottom:12px; padding-left:28px; list-style:none; font-size:17px; position:relative;
}
.product-detail li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }
.product-detail__price { font-size:28px; font-weight:700; color:var(--blue-800); margin:28px 0; }
.product-detail__price small { font-size:15px; font-weight:400; color:var(--gray-500); }

/* Team */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.team-member {
  text-align:center; background:var(--white);
  border-radius:var(--radius-xl); padding:44px 32px;
  border:1px solid var(--gray-100);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.team-member:hover { transform:translateY(-6px); }
.team-member__photo { width:160px; height:160px; border-radius:50%; margin:0 auto 24px; }
.team-member h3 { font-family:var(--font-heading); font-size:20px; color:var(--blue-900); margin-bottom:4px; }
.team-member__role { color:var(--blue-700); font-weight:600; font-size:14px; margin-bottom:14px; }
.team-member p { font-size:15px; color:var(--gray-500); line-height:1.65; }

/* Values */
.values { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; text-align:center; }
.value__icon { font-size:48px; margin-bottom:24px; }
.value h3 { font-family:var(--font-heading); font-size:20px; color:var(--blue-900); margin-bottom:10px; }

/* ========== FORMS ========== */
.form-section { max-width:640px; margin:0 auto; }
.form-group { margin-bottom:22px; }
.form-group label {
  display:block; margin-bottom:8px;
  font-weight:600; font-size:15px; color:var(--gray-700);
}
.form-group select,
.form-group input,
.form-group textarea {
  width:100%; padding:16px 20px;
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  font-family:var(--font-body);
  font-size:16px; color:var(--gray-900);
  background:var(--white);
  transition:border-color .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--blue-600);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-success {
  background:var(--green-light); color:var(--green-dark);
  padding:28px; border-radius:var(--radius-lg);
  text-align:center; font-weight:600; display:none;
}

/* Contact cards */
.contact-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:56px; }
.contact-card {
  background:var(--white); border-radius:var(--radius-xl);
  padding:40px; text-align:center;
  border:1px solid var(--gray-100);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.contact-card:hover { transform:translateY(-4px); }
.contact-card__icon { font-size:40px; margin-bottom:20px; }
.contact-card h3 { font-family:var(--font-heading); font-size:18px; color:var(--blue-900); margin-bottom:10px; }
.contact-card a { font-weight:700; color:var(--blue-700); }

/* ========== LIFT SCROLL ANIMATION ========== */
.lift-animation {
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
}
.lift-svg { display:block; width:100%; height:auto; }
.lift-animation__label {
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  background:var(--blue-900); color:var(--white);
  padding:10px 24px; border-radius:24px;
  font-size:13px; font-weight:600;
  white-space:nowrap; opacity:.85;
}

/* ========== WARUM WIR ========== */
.reasons { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.reason {
  padding:48px 32px;
  text-align:center;
  border-radius:var(--radius-xl);
  background:var(--white);
  border:1px solid var(--gray-100);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.reason:hover { transform:translateY(-6px); }
.reason__number {
  width:60px; height:60px; border-radius:50%;
  background:var(--blue-900); color:var(--gold);
  font-family:var(--font-heading);
  font-size:24px; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.reason h3 {
  font-family:var(--font-heading); font-size:22px;
  color:var(--blue-900); margin-bottom:16px;
}
.reason p { font-size:16px; color:var(--gray-500); line-height:1.7; }

/* ========== MISSION ========== */
.mission-section {
  background:var(--blue-900);
  color:var(--white);
  text-align:center;
}
.mission-section .section__title {
  max-width:720px; margin:0 auto 28px;
  font-size:40px; color:var(--white);
}
.mission-section p {
  max-width:660px; margin:0 auto;
  font-size:19px; line-height:1.85;
  color:rgba(255,255,255,.6);
}
.mission-section .btn--primary { margin-top:40px; }

/* ========== QUIZ FUNNEL ========== */
.quiz-wrapper { max-width:580px; margin:0 auto; }
.quiz-box {
  background:var(--white);
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--gray-100);
  box-shadow:0 20px 60px rgba(10,37,64,.08);
}
.quiz-header {
  background:var(--blue-900); color:var(--white);
  padding:32px 36px; text-align:center;
}
.quiz-header h2 {
  font-family:var(--font-heading); font-size:24px;
  margin-bottom:6px; color:var(--white);
}
.quiz-header p { font-size:14px; opacity:.6; }
.quiz-progress {
  height:3px; background:rgba(255,255,255,.12);
  border-radius:2px; margin-top:16px; overflow:hidden;
}
.quiz-progress-bar {
  height:100%; background:var(--gold);
  border-radius:2px; transition:width .5s cubic-bezier(.16,1,.3,1);
}
.quiz-body { padding:40px 36px; }
.quiz-step { display:none; }
.quiz-step.active { display:block; }
.quiz-step h3 {
  font-family:var(--font-heading); font-size:20px;
  margin-bottom:28px; text-align:center; color:var(--blue-900);
  line-height:1.35;
}
.quiz-options { display:flex; flex-direction:column; gap:12px; }
.quiz-option {
  display:block; background:var(--gray-50);
  border:2px solid transparent;
  border-radius:var(--radius); padding:18px 24px;
  font-size:17px; font-weight:600; cursor:pointer;
  text-align:center;
  transition:all .25s cubic-bezier(.16,1,.3,1);
  color:var(--gray-700);
}
.quiz-option:hover { border-color:var(--blue-600); background:var(--blue-50); color:var(--blue-900); }
.quiz-option.selected { border-color:var(--blue-600); background:var(--blue-50); color:var(--blue-900); }
.quiz-plz {
  width:100%; padding:18px 24px; font-size:26px;
  border:2px solid var(--gray-200); border-radius:var(--radius);
  text-align:center; font-family:var(--font-body);
  letter-spacing:8px; outline:none;
  transition:border-color .3s; color:var(--blue-900);
}
.quiz-plz:focus { border-color:var(--blue-600); }
.quiz-next {
  width:100%; margin-top:20px; background:var(--orange); color:var(--white);
  font-weight:700; font-size:18px;
  padding:18px 40px; border-radius:var(--radius); border:none; cursor:pointer;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}
.quiz-next:hover { background:var(--orange-dk); transform:translateY(-2px); }
.quiz-loading { text-align:center; padding:64px 20px; }
.quiz-loading p { font-size:17px; color:var(--gray-500); margin-bottom:28px; }
.quiz-loader {
  width:100%; max-width:300px; height:4px; background:var(--gray-100);
  border-radius:2px; margin:0 auto; overflow:hidden;
}
.quiz-loader-inner {
  height:100%; width:0;
  background:linear-gradient(90deg,var(--blue-600),var(--orange));
  border-radius:2px; transition:width 2s ease;
}
.quiz-danke { text-align:center; }
.quiz-danke__badge {
  display:inline-block; background:var(--green-light); color:var(--green);
  font-weight:700; padding:10px 24px; border-radius:30px; font-size:15px; margin-bottom:20px;
}
.quiz-danke h3 { font-size:22px; margin-bottom:10px; color:var(--blue-900); }
.quiz-danke > p { color:var(--gray-500); margin-bottom:32px; font-size:16px; line-height:1.7; }
.quiz-contact { text-align:left; max-width:360px; margin:0 auto; }
.quiz-contact label {
  display:block; font-weight:700; font-size:12px;
  margin-bottom:6px; color:var(--gray-500);
  text-transform:uppercase; letter-spacing:.8px;
}
.quiz-contact input {
  width:100%; padding:14px 18px; font-size:16px;
  border:1px solid var(--gray-200); border-radius:var(--radius);
  margin-bottom:16px; font-family:var(--font-body); outline:none;
  transition:border-color .3s; color:var(--gray-900);
}
.quiz-contact input:focus { border-color:var(--blue-600); }
.quiz-submit {
  width:100%; margin-top:8px; background:var(--orange); color:var(--white);
  font-weight:700; font-size:17px;
  padding:18px; border-radius:var(--radius); border:none; cursor:pointer;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}
.quiz-submit:hover { background:var(--orange-dk); transform:translateY(-2px); }
.quiz-micro { font-size:13px; color:var(--gray-500); margin-top:14px; text-align:center; }

/* ========== LEGAL PAGES ========== */
.legal-content h2 {
  font-family:var(--font-heading);
  font-size:26px; color:var(--blue-900);
  margin:48px 0 16px; line-height:1.3;
}
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 {
  font-family:var(--font-heading);
  font-size:20px; color:var(--blue-900);
  margin:32px 0 12px;
}
.legal-content p {
  margin-bottom:16px; color:var(--gray-700);
  font-size:17px; line-height:1.8;
}
.legal-content a { color:var(--blue-700); text-decoration:underline; }
.legal-content a:hover { color:var(--blue-900); }

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .section { padding:100px 0; }
  .cards { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:repeat(2,1fr); }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .hero__title { font-size:44px; }
  .section__title { font-size:36px; }
  .stats-bar__grid { grid-template-columns:repeat(2,1fr); gap:32px; }
}

@media(max-width:768px) {
  :root { --nav-h:64px; }
  body { font-size:17px; }
  .container { padding:0 24px; }
  .section { padding:72px 0; }

  .nav__links,.nav__phone { display:none; }
  .nav__toggle { display:block; }
  .nav__links.active {
    display:flex; flex-direction:column;
    position:absolute; top:var(--nav-h); left:0; right:0;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(20px);
    padding:28px 24px;
    gap:20px;
    border-bottom:1px solid var(--gray-100);
  }

  .hero { padding:calc(var(--nav-h) + 100px) 0 80px; }
  .hero__inner { grid-template-columns:1fr; gap:48px; text-align:center; }
  .hero__title { font-size:36px; }
  .hero__subtitle { margin:0 auto 32px; font-size:18px; }
  .hero__ctas { justify-content:center; }
  .hero__trust { justify-content:center; }
  .hero__image { order:-1; }

  .two-col { grid-template-columns:1fr; gap:48px; }
  .two-col--reverse .two-col__image { order:0; }

  .cards { grid-template-columns:1fr; max-width:400px; }
  .steps { grid-template-columns:1fr 1fr; gap:32px; }
  .testimonials { grid-template-columns:1fr; }
  .reasons { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .team-grid { grid-template-columns:1fr; }
  .values { grid-template-columns:1fr; }
  .contact-cards { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .stats-bar__grid { grid-template-columns:1fr 1fr; gap:32px; }

  .section__title { font-size:30px; }
  .section__subtitle { font-size:17px; margin-bottom:40px; }

  .page-hero h1 { font-size:34px; }

  .footer__grid { grid-template-columns:1fr; gap:32px; }
  .product-detail { grid-template-columns:1fr; gap:40px; }

  .quiz-body { padding:28px 24px; }
  .quiz-header { padding:24px; }
}
