/* ============================================================
   ki-ansagen.at
   Design: Editorial, emotional, image-driven
   Font: Inter (body) + Playfair Display (accents)
   ============================================================ */

:root {
  --bg:       #f7f8f9;
  --bg-dark:  #1a2732;
  --surface:  #e9ecef;
  --text:     #1a2732;
  --muted:    #525c65;
  --border:   #d9dfe5;
  --primary:  #90ce00;
  --primary-h:#72a300;
  --accent:   #1a2732;
  --accent-h: #0f1a24;
  --accent-soft: rgba(26,39,50,.06);
  --primary-soft: rgba(144,206,0,.08);
  --white:    #fff;

  --font:     'Geist', system-ui, sans-serif;
  --serif:    'Geist', system-ui, sans-serif;

  --nav-h:    64px;
  --radius:   8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 720px; }

/* ---- Links ---- */
.link { color: var(--primary); border-bottom: 1px solid transparent; transition: border-color .2s; }
.link:hover { border-color: var(--primary); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  transition: all .25s var(--ease); border: 1px solid transparent; min-height: 48px;
  letter-spacing: .01em;
}
.btn--dark { background: var(--accent); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--dark:hover { background: var(--accent-h); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: var(--accent); font-weight: 700; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-h); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--text); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: #f0f0f0; box-shadow: var(--shadow-md); }
.btn--glass { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.btn--glass:hover { background: rgba(255,255,255,.25); }
.btn--lg { padding: 16px 40px; font-size: 1.08rem; }
.btn--full { width: 100%; }

/* ============================================================
   NAV – minimal, floating
   ============================================================ */
/* ---- Topbar (hidden, contact info moved to nav) ---- */
.topbar { display: none; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

/* Contact info in nav */
.nav__contact {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
  font-size: .78rem; color: var(--muted);
}
.nav__contact a {
  color: var(--muted); transition: color .15s; font-weight: 400;
  padding: 0 8px;
}
.nav__contact a:hover { color: var(--text); }
.nav__contact .nav__sep { color: var(--border); font-size: .6rem; }

/* Nav CTA button */
.btn--nav {
  background: var(--primary); color: var(--accent); font-weight: 700;
  padding: 9px 22px; border-radius: 100px; font-size: .85rem;
  margin-left: 12px; flex-shrink: 0; letter-spacing: .01em;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: var(--shadow-sm);
}
.btn--nav:hover { background: var(--primary-h); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav__logo { font-weight: 700; font-size: 1.1rem; letter-spacing: -.03em; }
.nav__logo .dot { color: var(--primary); }

.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__link { font-size: .875rem; color: var(--muted); transition: color .15s; }
.nav__link:hover { color: var(--text); }
.nav__link--cta { color: var(--accent); font-weight: 600; }
.nav__link--cta:hover { color: var(--accent-h); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 6px; padding: 8px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav__hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: all .2s; }
.nav__hamburger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ============================================================
   HERO – full-bleed image, cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero__box {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 540px;
  margin: 0 0 0 max(24px, 8vw);
  box-shadow: var(--shadow-lg);
}
.hero__kicker {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 16px;
}
.hero__h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px;
  color: var(--text);
}
.hero__sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--muted);
  margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof { background: var(--white); border-bottom: none; padding: 32px 0; box-shadow: 0 1px 0 var(--border); }
.proof__items { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.proof__item { padding: 0 28px; font-size: .875rem; color: var(--muted); white-space: nowrap; }
.proof__item strong { color: var(--accent); font-weight: 700; }
.proof__sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   LISTEN – bento-ish grid with images
   ============================================================ */
.listen { padding: 120px 0; background: var(--bg); }
.listen__intro { max-width: 560px; margin-bottom: 56px; }
.listen__h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; line-height: 1.15; }
.listen__lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

.listen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.listen__card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.listen__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.listen__card--wide { grid-column: span 2; }

.listen__img { width: 100%; height: 180px; object-fit: cover; }
.listen__body { padding: 20px; }
.listen__label {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 10px;
  background: var(--accent-soft); padding: 3px 10px; border-radius: 3px;
}
.listen__text {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  font-style: italic; margin-bottom: 14px;
}

/* ---- Player ---- */
.player { display: flex; align-items: center; gap: 10px; }
.player__btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
.player__btn:hover { background: var(--primary-h); }
.player__bar { flex: 1; height: 4px; background: var(--surface); border-radius: 2px; overflow: hidden; }
.player__progress { width: 0; height: 100%; background: var(--primary); border-radius: 2px; transition: width .1s linear; }
.player__time { font-size: .75rem; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 2.5em; }

/* ============================================================
   DIVIDER IMAGE
   ============================================================ */
.divider-img { height: 360px; overflow: hidden; }
.divider-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

/* ============================================================
   FLOW (so geht's)
   ============================================================ */
.flow { padding: 120px 0; background: var(--white); border-top: none; }
.flow__h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 56px; max-width: 500px; line-height: 1.15;
}

.flow__steps { display: flex; flex-direction: column; gap: 0; max-width: 640px; }

.flow__step {
  display: flex; gap: 28px; padding: 36px 0;
  border-top: 1px solid var(--border);
}
.flow__step:last-child { border-bottom: 1px solid var(--border); }

.flow__num {
  font-size: .8rem; font-weight: 700; color: var(--accent);
  min-width: 32px; padding-top: 4px; letter-spacing: .04em;
}
.flow__content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.flow__content p { font-size: .92rem; color: var(--muted); line-height: 1.7; }

.flow__cta { margin-top: 48px; }

/* ============================================================
   BIGQUOTE
   ============================================================ */
.quote-section {
  position: relative; padding: 120px 0; color: var(--white); text-align: center; overflow: hidden;
}
.quote-section__bg { position: absolute; inset: 0; }
.quote-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-section__overlay { position: absolute; inset: 0; background: rgba(15,17,21,.4); }
.quote-section .wrap { position: relative; z-index: 2; }
.bigquote p {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3; max-width: 700px; margin: 0 auto;
  color: #fff; letter-spacing: -.02em;
}

/* ============================================================
   COMPAT
   ============================================================ */
.compat { padding: 80px 0; background: var(--bg); text-align: center; }
.compat__h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.compat__lead { color: var(--muted); margin-bottom: 36px; font-size: 1rem; }
.compat__logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.compat__tag {
  padding: 10px 22px; border-radius: 100px; border: none;
  font-size: .85rem; font-weight: 600; color: var(--text); background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), color .2s;
}
.compat__tag:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--accent); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 120px 0; background: var(--bg); }

.pricing__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

.pricing__left {
  background: var(--white); border: none; border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-md);
}
.pricing__h2 {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 4px;
}
.pricing__sub { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.pricing__vat { font-size: .825rem; color: var(--muted); margin-bottom: 28px; }

.pricing__list { list-style: none; margin-bottom: 32px; }
.pricing__list li {
  padding: 9px 0 9px 24px; font-size: .9rem; color: var(--text);
  border-bottom: 1px solid var(--border); position: relative;
}
.pricing__list li:last-child { border-bottom: none; }
.pricing__list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.pricing__right { padding-top: 8px; }

.pricing__vs {
  background: var(--bg); border: none; border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
}
.pricing__vs h3 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.pricing__vs-price { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; color: var(--muted); }
.pricing__vs ul { list-style: none; }
.pricing__vs li {
  padding: 6px 0 6px 20px; font-size: .85rem; color: var(--muted);
  position: relative;
}
.pricing__vs li::before { content: '—'; position: absolute; left: 0; color: var(--border); }

.pricing__bridge {
  padding: 20px 24px; border-left: 3px solid var(--primary); border-radius: 2px;
}
.pricing__bridge p { font-size: .9rem; color: var(--muted); margin-bottom: 6px; }

/* ============================================================
   FAQ – using native <details>
   ============================================================ */
.faq { padding: 120px 0; background: var(--white); }
.faq__h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 40px;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}
.accordion__item:first-child { border-top: 1px solid var(--border); }

.accordion__trigger {
  display: block; width: 100%; padding: 20px 0; font-size: .95rem;
  font-weight: 600; color: var(--text); cursor: pointer; list-style: none;
  font-family: var(--font);
}
.accordion__trigger::-webkit-details-marker { display: none; }
.accordion__trigger::marker { display: none; content: ''; }

.accordion__body {
  padding: 0 0 20px;
}
.accordion__body p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   FINALE CTA
   ============================================================ */
.finale {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); overflow: hidden;
}
.finale__bg { position: absolute; inset: 0; }
.finale__bg img { width: 100%; height: 100%; object-fit: cover; }
.finale__overlay { position: absolute; inset: 0; background: rgba(255,255,255,.7); }
.finale__content { position: relative; z-index: 2; padding: 60px 24px; color: var(--text); }
.finale__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  margin-bottom: 12px; line-height: 1.15; letter-spacing: -.03em;
}
.finale__content p { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.5); padding: 56px 0 0; font-size: .85rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 40px; }
.footer__brand { max-width: 300px; }
.footer__logo { display: block; font-weight: 700; font-size: 1.05rem; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.footer__logo .dot { color: var(--primary); }
.footer__brand p { line-height: 1.65; }
.footer__contact { margin-bottom: 12px; }
.footer__contact a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer__contact a:hover { color: #fff; }
.footer__links { display: flex; gap: 56px; }
.footer__col { display: flex; flex-direction: column; gap: 6px; }
.footer__col h4 { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.footer__col a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer__col a:hover { color: #fff; }

.footer__legal {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.footer__memberof {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.35); transition: color .15s;
}
.footer__memberof:hover { color: rgba(255,255,255,.6); }
.footer__memberof span { display: inline-flex; align-items: center; }
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a { color: rgba(255,255,255,.3); transition: color .15s; }
.footer__legal-links a:hover { color: rgba(255,255,255,.6); }
.footer__b2b { padding: 28px 0 20px; font-size: .75rem; color: rgba(255,255,255,.25); text-align: center; }
.footer__b2b p { margin: 0; }

/* Pricing B2B hint */
.pricing__b2b { font-size: .75rem; color: var(--muted); margin-top: 16px; line-height: 1.5; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .listen__grid { grid-template-columns: repeat(2, 1fr); }
  .listen__card--wide { grid-column: span 2; }
  .pricing__split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav__contact { display: none; }
  .nav { top: 0; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; gap: 0; padding: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity .2s, transform .2s;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav__link { display: block; padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: .95rem; }
  .nav__hamburger { display: flex; }

  .hero__h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__sub { font-size: 1rem; }

  .proof__items { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 8px; }
  .proof__sep { display: none; }

  .listen__grid { grid-template-columns: 1fr; }
  .listen__card--wide { grid-column: span 1; }
  .listen__img { height: 160px; }

  .divider-img { height: 220px; }

  .flow__step { flex-direction: column; gap: 12px; }

  .pricing__split { grid-template-columns: 1fr; gap: 24px; }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .listen { padding: 72px 0; }
  .flow { padding: 72px 0; }
  .pricing { padding: 72px 0; }
  .faq { padding: 72px 0; }
  .wrap { padding: 0 16px; }
}

/* ============================================================
   SECTION TEXT (SEO prose)
   ============================================================ */
.section-text { padding: 80px 0; background: var(--white); }
.section-text h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -.02em; }
.section-text p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.section-text p:last-child { margin-bottom: 0; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.kontakt-info h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.kontakt-block { margin-top: 28px; }
.kontakt-block h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.kontakt-block p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.kontakt-hint { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.link--prominent { font-size: 1.1rem; font-weight: 600; color: var(--primary); }

.kontakt-form-wrap {
  background: var(--white); border: none; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.kontakt-form h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600; color: var(--text);
  margin-bottom: 5px; letter-spacing: .01em;
}
.form-group .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: .9rem; color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }

@media (max-width: 768px) {
  .kontakt-split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-form-wrap { padding: 24px; }
}

/* ============================================================
   GENERATOR PAGE
   ============================================================ */
.gen-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.gen-step { background: var(--white); border: none; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.gen-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gen-step__num { font-size: .8rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.gen-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.gen-step p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.gen-section { margin-top: 56px; }
.gen-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -.02em; }
.gen-section > p { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.gen-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gen-tip { background: var(--white); border: none; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.gen-tip h4 { font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.gen-tip p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.gen-tip code { font-family: ui-monospace, monospace; font-size: .82em; background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: 1px 5px; }

.gen-vorlagen { display: flex; flex-direction: column; gap: 14px; }
.gen-vorlage { background: var(--white); border: none; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.gen-vorlage h4 { font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.gen-vorlage p { font-size: .88rem; color: var(--muted); line-height: 1.65; font-style: italic; border-left: 2px solid var(--border); padding-left: 14px; }

.gen-usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gen-usp { padding: 20px; border-top: 3px solid var(--primary); background: var(--white); border-radius: 0 0 var(--radius) var(--radius); border: none; box-shadow: var(--shadow-sm); }
.gen-usp h4 { font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.gen-usp p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .gen-steps { grid-template-columns: 1fr; }
  .gen-tips { grid-template-columns: 1fr; }
  .gen-usps { grid-template-columns: 1fr; }
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.page { padding-bottom: 80px; }
.page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.15; }
.page h2 { font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px; letter-spacing: -.01em; }
.page p, .page li { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.page__lead { font-size: 1.05rem; margin-bottom: 32px; }
.page__breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.page__steps { padding-left: 20px; margin-bottom: 24px; }
.page__steps li { margin-bottom: 12px; }
.page__steps li strong { color: var(--text); }
.page__list { padding-left: 20px; margin-bottom: 24px; }
.page__list li { margin-bottom: 8px; }
.page__list li strong { color: var(--text); }
.page code { font-family: ui-monospace, monospace; font-size: .88em; background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: 1px 6px; }
.page__cta { margin-top: 40px; }

/* Page top spacing variants */
.page--topbar { padding-top: calc(var(--nav-h) + 32px + 60px); }
.page--no-topbar { padding-top: calc(var(--nav-h) + 60px); }
.page--topbar-lg { padding-top: calc(var(--nav-h) + 92px); }

/* Footer compact variant */
.footer__legal--compact { padding-top: 24px; padding-bottom: 24px; }

@media print {
  .nav, .finale { display: none !important; }
  body { background: white; color: black; }
}