/* ============================================================
   TONOVA Computer Service — Light Redesign v2
   Aesthetic: clean swiss light + gold accent
   Type: Inter Tight (display) + Inter (body) + Space Mono (labels)
   ============================================================ */

:root {
  --bg:        #f2f1ef;
  --bg-2:      #e9e8e5;
  --surface:   #ffffff;
  --surface-2: #f8f7f5;
  --line:        rgba(0,0,0,.09);
  --line-strong: rgba(0,0,0,.17);
  --ink:       #111111;
  --ink-dim:   #4b4b4b;
  --ink-mute:  #8b8b8b;
  --gold:      #b8900a;
  --gold-2:    #97760a;
  --gold-soft: rgba(184,144,10,.10);
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:        0 18px 50px -22px rgba(0,0,0,.16);
  --shadow-strong: 0 28px 70px -26px rgba(0,0,0,.22);
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: 1rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
p { margin: 0 0 1rem }
h1,h2,h3,h4 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px,4vw,44px) }

.eyebrow {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  color: var(--ink-mute);
  display: inline-block;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.6em;
  font-family: 'Space Mono', monospace;
  font-size: .8rem; letter-spacing: .07em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer; font-weight: 700;
  transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink) }
.btn-primary:hover { background: #2c2c2c; transform: translateY(-2px) }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink) }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px) }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold) }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px) }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(242,241,239,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0 }
.brand img { height: 46px; width: auto }
.brand .bwordmark { display: flex; flex-direction: column; line-height: 1.1 }
.brand .bwordmark b {
  font-family: 'Inter Tight', sans-serif; font-size: 1.06rem;
  letter-spacing: .1em; color: var(--ink); font-weight: 800;
}
.brand .bwordmark span {
  font-family: 'Space Mono', monospace; font-size: .54rem;
  letter-spacing: .26em; color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0 }
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 500;
  padding: .5rem .7rem; color: var(--ink-dim); transition: color .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink) }
.nav-links a.active { color: var(--ink); font-weight: 700; position: relative }
.nav-links a.active::after {
  content: ''; position: absolute; left: .7rem; right: .7rem; bottom: .1rem;
  height: 2px; background: var(--gold);
}
.nav-cta { margin-left: .7rem }
.nav-cta .btn { padding: .65em 1.3em; font-size: .74rem }
/* CTA-Button-Text immer weiss (überschreibt .nav-links a Farbe) */
.nav-links .nav-cta a.btn-primary,
.nav-links .nav-cta a.btn-primary:hover { color: #fff }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong);
  color: var(--ink); width: 44px; height: 40px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px }

@media(max-width: 1120px) {
  .nav-toggle { display: inline-flex }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - 70px); overflow-y: auto; overscroll-behavior: contain;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .5rem clamp(20px,4vw,44px) 1.4rem;
    transform: translateY(-130%); transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: translateY(0) }
  .nav-links a { display: block; padding: 1.15rem .35rem; font-size: 1.02rem; line-height: 1.25; border-bottom: 1px solid var(--line) }
  .nav-links a.active::after { display: none }
  .nav-cta { margin: 1rem 0 0 }
  .nav-cta .btn { width: 100%; justify-content: center }
}

/* ── HERO ────────────────────────────────────────────── */
.hero { padding: clamp(48px,7vw,96px) 0 clamp(44px,6vw,80px); overflow: hidden }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px,5vw,68px); align-items: center;
}
.hero-label {
  display: flex; align-items: center; gap: .7rem;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; color: var(--ink-mute);
  margin-bottom: 1.3rem;
}
.hero-label::before { content: ''; width: 30px; height: 1px; background: var(--gold) }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.04;
  margin: 0 0 1.4rem;
}
.hero h1 .line-gold { color: var(--gold) }
.hero-lead {
  font-size: 1.05rem; color: var(--ink-dim); max-width: 48ch;
  line-height: 1.7; margin-bottom: 1.9rem;
}
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap }
.hero-meta {
  display: flex; gap: 2.2rem; margin-top: 2.5rem; padding-top: 2.1rem;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero-meta-item b {
  display: block; font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 1.55rem; color: var(--gold); line-height: 1; margin-bottom: .25rem;
}
.hero-meta-item span {
  font-family: 'Space Mono', monospace; font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute);
}

.hero-visual { position: relative }
.hero-frame { position: relative; overflow: hidden; background: #181818; box-shadow: var(--shadow-strong) }
.hero-frame img {
  width: 100%; aspect-ratio: 4/4.3; object-fit: cover; object-position: 55% 50%; display: block;
  filter: contrast(1.03) saturate(.9);
  transition: transform .8s var(--ease);
}
.hero-frame:hover img { transform: scale(1.02) }
.hero-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,13,.8));
  padding: 2rem 1.3rem .85rem;
  font-family: 'Space Mono', monospace;
  font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-badge {
  position: absolute; top: 18px; left: 0; z-index: 2;
  background: var(--gold); color: #fff;
  font-family: 'Space Mono', monospace; font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: .5em 1em;
}
@media(max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr }
  .hero-visual { order: -1; max-width: 460px }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem) }
}

/* ── SECTIONS ────────────────────────────────────────── */
section.block { padding: clamp(52px,7vw,96px) 0; position: relative }
.section-head { max-width: 700px; margin-bottom: clamp(32px,4.5vw,52px) }
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  margin: .6rem 0 .8rem; line-height: 1.1;
}
.section-head p { color: var(--ink-dim); font-size: 1.04rem; max-width: 56ch }

.bg-off { background: var(--bg-2) }
.bg-white { background: var(--surface) }

/* ── TICKER ──────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: .85rem 0; background: var(--surface);
}
.ticker { display: flex; white-space: nowrap; animation: ticker-scroll 28s linear infinite }
.ticker-item {
  flex-shrink: 0; padding: 0 2rem;
  font-family: 'Space Mono', monospace; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
  display: flex; align-items: center; gap: 1rem;
}
.ticker-item::after { content: '·'; color: var(--gold); font-size: 1rem }
@keyframes ticker-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media(prefers-reduced-motion: reduce) { .ticker { animation: none } }

/* ── SERVICE CARDS ───────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(255px,1fr)); gap: 1px }
.card {
  position: relative; background: var(--surface);
  padding: 30px 28px; transition: background .3s var(--ease); overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover { background: var(--surface-2) }
.card:hover::before { transform: scaleX(1) }
.card .ic {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.card:hover .ic { background: var(--gold); color: #fff }
.card .ic svg { width: 23px; height: 23px }
.card h3 { font-size: 1.1rem; margin-bottom: .45rem }
.card p { font-size: .93rem; color: var(--ink-dim); margin: 0 }

/* ── FEATURE SPLIT ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center }
.split.rev .split-media { order: 2 }
.split-media { overflow: hidden; box-shadow: var(--shadow-strong) }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform .7s var(--ease) }
.split-media:hover img { transform: scale(1.03) }
.split-body h2 { font-size: clamp(1.7rem,3.2vw,2.4rem); margin: .6rem 0 1rem }
@media(max-width: 820px) { .split { grid-template-columns: 1fr } .split.rev .split-media { order: 0 } }

/* ── SERVICE PILLS ───────────────────────────────────── */
.svc-list {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(225px,1fr));
  gap: 1px; margin-top: 1.3rem;
}
.svc-list div {
  display: flex; align-items: center; gap: .75rem;
  background: var(--surface); padding: .95rem 1.05rem; font-size: .93rem;
  transition: background .25s;
}
.svc-list div:hover { background: var(--surface-2) }
.svc-list div::before { content: ''; flex: 0 0 auto; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg) }

/* ── PROCESS STEPS ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 1px }
.step { position: relative; padding: 30px 26px; background: var(--surface); transition: background .3s var(--ease) }
.step:hover { background: var(--surface-2) }
.step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.step:hover::after { transform: scaleX(1) }
.step .num {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: var(--gold); opacity: .45;
  line-height: 1; display: block; margin-bottom: .55rem;
}
.step h3 { font-size: 1.06rem; margin-bottom: .4rem }
.step p { font-size: .92rem; color: var(--ink-dim); margin: 0 }

/* ── AUDIENCE ────────────────────────────────────────── */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1.3rem }
.audience .col { background: var(--surface); padding: 30px 28px }
.audience .col h3 { font-size: 1.2rem; margin: .55rem 0 .7rem }
.audience .col .tag {
  font-family: 'Space Mono', monospace; font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.audience ul { list-style: none; margin: .7rem 0 0; padding: 0; display: grid; gap: .55rem }
.audience li { display: flex; gap: .65rem; font-size: .93rem; color: var(--ink-dim) }
.audience li::before { content: '✓'; color: var(--gold); font-weight: 700; flex: 0 0 auto }
@media(max-width: 740px) { .audience { grid-template-columns: 1fr } }

/* ── TESTIMONIALS ────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 1px }
.quote { background: var(--surface); padding: 28px 26px; transition: background .3s }
.quote:hover { background: var(--surface-2) }
.quote .mark {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 3.2rem; color: var(--gold);
  line-height: .6; height: .45em; display: block; margin-bottom: 1.1rem;
}
.quote p { font-size: .94rem; color: var(--ink-dim); font-style: italic }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem }
.quote .who .av {
  width: 36px; height: 36px; background: var(--gold);
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-family: 'Inter Tight', sans-serif; font-size: .82rem;
}
.quote .who b { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: .93rem }
.stars { color: var(--gold); letter-spacing: .1em; font-size: .8rem; margin-bottom: .45rem }

/* ── BANNER ──────────────────────────────────────────── */
.banner {
  background: var(--ink); color: #f0ede8;
  padding: clamp(36px,5vw,58px) clamp(26px,4.5vw,52px);
  position: relative; overflow: hidden;
}
.banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle,rgba(184,144,10,.2),transparent 68%);
  pointer-events: none;
}
.banner h2 { font-size: clamp(1.5rem,3vw,2.2rem); max-width: 26ch; color: #f0ede8 }
.banner .lbl {
  font-family: 'Space Mono', monospace; color: var(--gold);
  text-transform: uppercase; letter-spacing: .14em; font-size: .7rem;
  display: block; margin-bottom: .85rem;
}
.banner .muted { color: rgba(240,237,232,.6) }
.banner .audience { background: transparent; gap: 14px }
.banner .audience .col { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1) }
.banner .audience .col h3 { color: #f0ede8 }
.banner .audience li { color: rgba(240,237,232,.65) }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { display: grid; gap: 1px; max-width: 880px }
.faq details { background: var(--surface); transition: background .2s }
.faq details[open] { background: var(--surface-2) }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: '+'; color: var(--gold); font-size: 1.5rem;
  font-family: 'Space Mono', monospace; transition: transform .3s; flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg) }
.faq details p { margin: 0; padding: 0 22px 18px; color: var(--ink-dim); font-size: .95rem }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,58px); align-items: start }
.contact-info dl { margin: 1.3rem 0 0; display: grid; gap: 1rem }
.contact-info dt {
  font-family: 'Space Mono', monospace; font-size: .64rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute);
}
.contact-info dd { margin: .15rem 0 0; font-size: 1.02rem }
.contact-info dd a:hover { color: var(--gold) }
.form { background: var(--surface); padding: clamp(24px,3.5vw,38px); border: 1px solid var(--line) }
.field { margin-bottom: 1rem }
.field label {
  display: block; font-family: 'Space Mono', monospace;
  font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: .4rem;
}
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--ink); padding: .8rem .95rem;
  font: inherit; font-size: .95rem; transition: border-color .2s; border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold) }
.field textarea { resize: vertical; min-height: 125px }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .75rem }
@media(max-width: 780px) { .contact-grid { grid-template-columns: 1fr } }

/* ── RELATED LINKS ───────────────────────────────────── */
.related {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(195px,1fr));
  gap: 1px; margin-top: 1.3rem;
}
.related a {
  display: block; background: var(--surface); padding: 16px 18px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: .92rem;
  transition: background .25s, color .25s;
}
.related a:hover { background: var(--ink); color: #fff }
.related a span {
  display: block; font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: .78rem; color: var(--ink-mute); margin-top: .25rem;
}
.related a:hover span { color: rgba(255,255,255,.55) }

/* ── DOWNLOADS ───────────────────────────────────────── */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1px }
.dl { display: flex; gap: 1rem; background: var(--surface); padding: 24px 22px; transition: background .25s }
.dl:hover { background: var(--surface-2) }
.dl .ic {
  flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold);
}
.dl .ic svg { width: 21px; height: 21px }
.dl h3 { font-size: 1rem; margin-bottom: .25rem; display: flex; align-items: center; gap: .4rem }
.dl h3 .ext { font-size: .76rem; color: var(--ink-mute) }
.dl p { font-size: .88rem; color: var(--ink-dim); margin: 0 }

/* ── LEGAL ───────────────────────────────────────────── */
.legal { max-width: 820px }
.legal h2 { font-size: clamp(1.8rem,3.6vw,2.5rem); margin-bottom: .4rem }
.legal h3 { font-size: 1.1rem; color: var(--gold); margin: 2rem 0 .55rem; font-family: 'Inter Tight', sans-serif }
.legal p, .legal li { color: var(--ink-dim); font-size: .98rem }
.legal ul { padding-left: 1.1rem }
.legal .card-id {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 1.3rem 0 0; font-size: 1rem; line-height: 1.85;
}
.legal .card-id a:hover { color: var(--gold) }
.legal .note { font-size: .82rem; color: var(--ink-mute); border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.1rem }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: #111111; color: #f0ede8; padding: clamp(44px,5.5vw,68px) 0 26px }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px }
.foot-brand img { height: 56px; width: auto; margin-bottom: .5rem }
.foot-brand p { font-size: .88rem; color: rgba(240,237,232,.5); max-width: 28ch }
.site-footer h4 {
  font-family: 'Space Mono', monospace; font-size: .66rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem; font-weight: 400;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem }
.site-footer li { color: rgba(240,237,232,.55); font-size: .91rem }
.site-footer a { color: rgba(240,237,232,.55); font-size: .91rem; transition: color .2s }
.site-footer a:hover { color: #f0ede8 }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 20px;
  font-family: 'Space Mono', monospace; font-size: .68rem;
  color: rgba(240,237,232,.35); letter-spacing: .04em;
}
@media(max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr } .foot-brand { grid-column: 1/-1 } }
@media(max-width: 460px) { .foot-grid { grid-template-columns: 1fr } }

/* ── COOKIE ──────────────────────────────────────────── */
.cookie {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(160%);
  z-index: 80; width: min(680px, calc(100% - 28px));
  background: var(--surface); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-strong); padding: 16px 20px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  transition: transform .5s var(--ease);
}
.cookie.show { transform: translateX(-50%) translateY(0) }
.cookie p { margin: 0; font-size: .88rem; color: var(--ink-dim); flex: 1 1 280px }
.cookie b { color: var(--ink) }
.cookie .btn { padding: .6em 1.1em; font-size: .74rem }

/* ── REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease) }
.reveal.in { opacity: 1; transform: none }
@media(prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none }
  * { scroll-behavior: auto }
}

/* ── PAGE HERO (sub pages) ───────────────────────────── */
.page-hero { padding: clamp(48px,6.5vw,84px) 0 clamp(18px,3vw,28px) }
.page-hero h1 { font-size: clamp(2rem,4.6vw,3.2rem); margin: .8rem 0 .8rem }
.page-hero p { color: var(--ink-dim); max-width: 62ch; font-size: 1.06rem }

/* ── SERVICE PAGES ───────────────────────────────────── */
.svc-hero { padding: clamp(44px,6vw,80px) 0 clamp(10px,2vw,22px) }
.svc-hero .eyebrow { margin-bottom: .9rem }
.svc-hero h1 { font-size: clamp(1.9rem,4.2vw,2.9rem); margin: .55rem 0 1rem; max-width: 22ch }
.svc-hero p { color: var(--ink-dim); font-size: 1.06rem; max-width: 62ch }
.svc-hero .hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.7rem }
.checklist { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .65rem; max-width: 760px }
.checklist li { display: flex; gap: .65rem; color: var(--ink-dim) }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex: 0 0 auto }

/* ── RATGEBER ────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 1px }
.post { display: flex; flex-direction: column; background: var(--surface); padding: 26px 24px; transition: background .3s }
.post:hover { background: var(--surface-2) }
.post .cat { font-family: 'Space Mono', monospace; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold) }
.post h3 { font-size: 1.08rem; margin: .45rem 0 .45rem }
.post p { font-size: .91rem; color: var(--ink-dim); flex: 1 }
.post .more { font-family: 'Space Mono', monospace; font-size: .76rem; color: var(--gold); margin-top: .75rem }
.article { max-width: 760px }
.article .meta { font-family: 'Space Mono', monospace; font-size: .72rem; color: var(--ink-mute); letter-spacing: .06em; margin-bottom: 1.3rem }
.article h1 { font-size: clamp(1.8rem,4vw,2.7rem); margin: .4rem 0 1rem }
.article h2 { font-size: 1.32rem; margin: 1.9rem 0 .65rem; font-family: 'Inter Tight', sans-serif }
.article p, .article li { color: var(--ink-dim); font-size: 1.01rem; line-height: 1.7 }
.article ul { padding-left: 1.1rem; display: grid; gap: .4rem }
.article .cta-box {
  background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  padding: 22px 26px; margin: 2rem 0 0;
}
.article .cta-box p { margin: 0 0 1rem }

/* ── PLANS ───────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(auto-fit,minmax(255px,1fr)); gap: 1px; align-items: stretch }
.plan { background: var(--surface); padding: 30px 26px; position: relative; transition: background .3s }
.plan:hover { background: var(--surface-2) }
.plan.featured { background: var(--ink); color: #f0ede8 }
.plan.featured:hover { background: #1a1a1a }
.plan.featured p { color: rgba(240,237,232,.65) }
.plan .badge {
  position: absolute; top: 0; right: 22px;
  background: var(--gold); color: #fff;
  font-family: 'Space Mono', monospace; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: .4em .8em;
}
.plan h3 { font-size: 1.16rem; margin-bottom: .2rem }
.plan .price { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--gold); line-height: 1; margin: .55rem 0 .2rem }
.plan .price small { font-family: 'Inter', sans-serif; font-weight: 400; font-size: .74rem; color: var(--ink-mute) }
.plan.featured .price small { color: rgba(240,237,232,.5) }
.plan ul { list-style: none; margin: .9rem 0 1.3rem; padding: 0; display: grid; gap: .48rem }
.plan li { display: flex; gap: .6rem; font-size: .91rem; color: var(--ink-dim) }
.plan.featured li { color: rgba(240,237,232,.65) }
.plan li::before { content: '✓'; color: var(--gold); font-weight: 700; flex: 0 0 auto }
.plan .btn { width: 100%; justify-content: center }

/* ── COURSES ─────────────────────────────────────────── */
.courses { display: grid; grid-template-columns: repeat(auto-fit,minmax(245px,1fr)); gap: 1px; margin-top: 1.3rem }
.course { background: var(--surface); padding: 26px 24px; display: flex; flex-direction: column; transition: background .3s }
.course:hover { background: var(--surface-2) }
.course .dur {
  align-self: flex-start; font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: .38em .75em; margin-bottom: .85rem;
}
.course h3 { font-size: 1.08rem; margin-bottom: .35rem }
.course p { color: var(--ink-dim); font-size: .91rem; flex: 1 }
.course .cost { margin-top: .9rem; font-family: 'Inter Tight', sans-serif; font-weight: 800; color: var(--gold); font-size: 1.08rem }
.course .cost small { font-family: 'Inter', sans-serif; font-weight: 400; font-size: .74rem; color: var(--ink-mute) }
.course .hint { margin-top: .45rem; font-size: .78rem; color: var(--ink-mute) }

/* ── LANG STRIP ──────────────────────────────────────── */
.lang-strip { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem }
.lang-strip span {
  font-family: 'Space Mono', monospace; font-size: .74rem; letter-spacing: .06em;
  border: 1px solid var(--line-strong); padding: .48em .95em; color: var(--ink);
}
.lang-strip span b { color: var(--gold) }

/* ── WHATSAPP FAB ────────────────────────────────────── */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 1200;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.3);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(37,211,102,.5) }
.wa-fab svg { width: 27px; height: 27px; display: block }
.wa-fab .wa-label {
  position: absolute; right: 62px; white-space: nowrap;
  background: var(--ink); color: #f0ede8;
  font-family: 'Space Mono', monospace; font-size: .66rem; letter-spacing: .04em;
  padding: .5em .85em; opacity: 0; transform: translateX(6px);
  pointer-events: none; transition: .25s;
}
.wa-fab:hover .wa-label { opacity: 1; transform: translateX(0) }
@media(max-width: 560px) { .wa-fab { width: 48px; height: 48px; right: 12px; bottom: 12px } .wa-fab .wa-label { display: none } }
@media print { .wa-fab { display: none } }

/* Telefon-FAB – über dem WhatsApp-Button, in Markengold */
.call-fab {
  position: fixed; right: 18px; bottom: 82px; z-index: 1200;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #fff;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.3);
  transition: transform .3s var(--ease), box-shadow .3s, background .25s;
}
.call-fab:hover { transform: translateY(-3px); background: var(--gold-2); box-shadow: 0 14px 30px -8px rgba(184,144,10,.5) }
.call-fab svg { width: 25px; height: 25px; display: block }
.call-fab .wa-label {
  position: absolute; right: 62px; white-space: nowrap;
  background: var(--ink); color: #f0ede8;
  font-family: 'Space Mono', monospace; font-size: .66rem; letter-spacing: .04em;
  padding: .5em .85em; opacity: 0; transform: translateX(6px);
  pointer-events: none; transition: .25s;
}
.call-fab:hover .wa-label { opacity: 1; transform: translateX(0) }
@media(max-width: 560px) { .call-fab { width: 48px; height: 48px; right: 12px; bottom: 70px } .call-fab .wa-label { display: none } }
@media print { .call-fab { display: none } }

/* ── MISC ────────────────────────────────────────────── */
.divider-line { height: 1px; background: var(--line); border: 0; margin: 0 }
.block-label {
  font-family: 'Space Mono', monospace; font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute);
  border-left: 2px solid var(--gold); padding-left: .75rem;
  display: inline-block; margin-bottom: .9rem;
}
.muted { color: var(--ink-dim) }


/* ── hairline borders on grid cells (replaces bg-line trick) ── */
.card, .svc-list div, .step, .audience .col, .quote,
.faq details, .related a, .dl, .post, .plan, .course {
  box-shadow: 0 0 0 1px var(--line);
}
.banner .audience .col { box-shadow: none }
