/* ============================================================
   kujtimdubovci.de — main.css
   Schwarz & Gold | Opulent Premium
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Farben */
  --bg:           #0a0a0a;
  --bg-raised:    #111111;
  --surface:      #161616;
  --surface-2:    #1c1c1c;
  --ink:          #f0ead6;
  --ink-muted:    rgba(240,234,214,.6);
  --ink-faint:    rgba(240,234,214,.35);
  --gold:         #c9a84c;
  --gold-light:   #e2c97e;
  --gold-dim:     rgba(201,168,76,.15);
  --gold-border:  rgba(201,168,76,.25);
  --gold-glow:    rgba(201,168,76,.12);
  --border:       rgba(255,255,255,.07);
  --border-gold:  rgba(201,168,76,.3);
  --radius:       4px;
  --max:          1080px;
  --serif:        'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Gold-Linie Utility */
.gold-line {
  display: block; width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
}
.site-header::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  position: relative;
  display: inline-block;
}
.site-header__logo img {
  display: block; max-height: 40px; width: auto;
}
.site-header__logo-text {
  font-family: var(--serif);
  font-size: 1.3rem; letter-spacing: .08em;
  color: var(--gold); text-decoration: none;
}
.site-header__nav {
  display: flex; align-items: center; gap: 2px;
}
.site-header__nav a {
  color: var(--ink-muted);
  text-decoration: none; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px;
  transition: color .2s;
}
.site-header__nav a:hover { color: var(--gold); }
.site-header__nav a.nav-cta {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  font-weight: 500;
  padding: 8px 20px;
  margin-left: 12px;
  letter-spacing: .08em;
  transition: background .2s, color .2s, border-color .2s;
}
.site-header__nav a.nav-cta:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--gold); transition: transform .2s, opacity .2s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-wrapper {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
/* Hintergrund-Textur */
.hero-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 110px 32px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: .72rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12; letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  color: var(--ink-muted); font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 44px; max-width: 400px;
  border-left: 1px solid var(--border-gold);
  padding-left: 20px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  text-decoration: none;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.25);
}
.hero-note { color: var(--ink-faint); font-size: .78rem; letter-spacing: .04em; }

/* Hero Visual */
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  padding: 32px;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute; top: -1px; left: 32px; right: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.visual-label {
  font-size: .68rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.visual-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border-gold), transparent);
}
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.metric-box {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 18px 16px;
}
.metric-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--ink); line-height: 1;
}
.metric-num.up { color: var(--gold); }
.metric-desc { font-size: .72rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: .04em; }
.bar-label {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--ink-faint);
  letter-spacing: .04em; margin-bottom: 7px;
}
.bar-track {
  background: var(--border); height: 2px;
  margin-bottom: 14px; overflow: hidden;
}
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 100px 32px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: .7rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18; letter-spacing: -.01em;
  margin-bottom: 20px;
  color: var(--ink);
}
.section-sub {
  color: var(--ink-muted); max-width: 520px;
  margin-bottom: 60px; font-size: .95rem; line-height: 1.8;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  position: relative;
}
.divider::after {
  content: '◆';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold); font-size: .5rem;
  background: var(--bg); padding: 0 12px;
}

/* ── LEISTUNGEN ───────────────────────────────────────────── */
#leistungen { background: var(--bg-raised); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background .25s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity .25s;
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--border-gold); line-height: 1;
  margin-bottom: 20px; display: block;
}
.service-card h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--ink); margin-bottom: 14px; letter-spacing: .01em;
}
.service-card p { font-size: .88rem; color: var(--ink-muted); line-height: 1.8; }

/* ── VORGEHEN ─────────────────────────────────────────────── */
#vorgehen { background: var(--bg); }
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: var(--border-gold); line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}
.step-body p { font-size: .9rem; color: var(--ink-muted); line-height: 1.8; }

/* ── ÜBER MICH ────────────────────────────────────────────── */
#ueber { background: var(--bg-raised); }
.ueber-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.ueber-photo {
  border: 1px solid var(--border-gold);
  overflow: hidden; aspect-ratio: 3/4;
  position: relative;
}
.ueber-photo::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 40px rgba(0,0,0,.4);
  pointer-events: none;
}
.ueber-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  filter: grayscale(20%) contrast(1.05);
}
.ueber-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300;
  color: var(--ink); margin-bottom: 24px;
}
.ueber-text p { color: var(--ink-muted); margin-bottom: 18px; font-size: .93rem; line-height: 1.85; }
.focus-list { list-style: none; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.focus-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: .88rem; color: var(--ink-muted);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.focus-list li:last-child { border-bottom: none; }
.focus-list li::before {
  content: '—'; color: var(--gold); font-family: var(--serif);
  flex-shrink: 0; margin-top: 1px; font-size: 1rem;
}

/* ── KONTAKTFORMULAR ──────────────────────────────────────── */
#kontakt { background: var(--bg); }
#kontakt .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.kontakt-info { padding-top: 8px; }
.kontakt-info .section-label { margin-bottom: 16px; }
.kontakt-info .section-title { margin-bottom: 20px; }
.kontakt-info p { color: var(--ink-muted); font-size: .92rem; line-height: 1.8; margin-bottom: 32px; }
.kontakt-detail {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  border: 1px solid var(--border-gold);
  background: var(--surface);
  position: relative;
}
.kontakt-detail::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.kontakt-detail-item { display: flex; flex-direction: column; gap: 3px; }
.kontakt-detail-label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.kontakt-detail-value { font-size: .9rem; color: var(--ink-muted); }

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  padding: 44px 40px;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 400;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-raised);
  border: none; border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-family: var(--sans); font-size: .93rem;
  color: var(--ink);
  transition: border-color .2s; outline: none; appearance: none;
  border-radius: 0;
}
.form-group select { padding-right: 20px; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.hp { display: none !important; }
.form-notice { font-size: .72rem; color: var(--ink-faint); margin-top: 16px; letter-spacing: .04em; }
.alert-success {
  border-left: 2px solid var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
  padding: 16px 20px; font-size: .9rem; margin-bottom: 24px;
}
.alert-error {
  border-left: 2px solid #c0392b;
  background: rgba(192,57,43,.1);
  color: #e07070;
  padding: 16px 20px; font-size: .9rem; margin-bottom: 24px;
}
.btn-submit {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 14px 40px;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; width: 100%;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-submit:hover {
  background: var(--gold); color: #0a0a0a; border-color: var(--gold);
}

/* ── SITE FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #050505;
  color: var(--ink-faint);
  text-align: center;
  padding: 60px 32px 40px;
  font-size: .82rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-gold);
  position: relative;
}
.site-footer::before {
  content: '';
  display: block; width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}
.site-footer__links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 6px 28px;
  margin-bottom: 28px;
}
.site-footer__links a {
  color: var(--ink-faint); text-decoration: none;
  font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__social {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 28px;
}
.site-footer__social a {
  color: var(--ink-faint); display: flex; align-items: center;
  transition: color .2s;
}
.site-footer__social a:hover { color: var(--gold); }
.site-footer__youtube { margin-bottom: 20px; font-size: .78rem; }
.site-footer__youtube a { color: var(--gold); text-decoration: none; }
.site-footer__youtube a:hover { text-decoration: underline; }
.site-footer__copy,
.site-footer__powered { margin-bottom: 6px; font-size: .72rem; letter-spacing: .04em; }
.site-footer__copy a,
.site-footer__powered a {
  color: var(--ink-faint); text-decoration: none; transition: color .2s;
}
.site-footer__copy a:hover,
.site-footer__powered a:hover { color: var(--gold); }
.site-footer__disclaimer {
  margin-top: 24px; font-size: .68rem;
  color: rgba(240,234,214,.18);
  max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── SCROLL FADE-IN ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ───────────────────────────────────────────── */
#seo-text {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.seo-text-wrap {
  max-width: 780px;
}
.seo-text-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}
.seo-text-wrap h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 36px 0 14px;
}
.seo-text-wrap p {
  color: var(--ink-muted);
  font-size: .93rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.seo-text-wrap p:last-child { margin-bottom: 0; }
@media (max-width: 960px) {
  #kontakt .container { grid-template-columns: 1fr; gap: 40px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-photo { max-width: 280px; aspect-ratio: 1/1; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 72px 24px 60px; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .form-wrap { padding: 32px 24px; }
  section { padding: 72px 24px; }
  .site-header__inner { padding: 0 24px; }
  .site-header__nav { display: none; flex-direction: column; align-items: flex-start; }
  .site-header__nav.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    padding: 20px 24px 24px; gap: 4px;
  }
  .site-header__nav.open a { width: 100%; padding: 10px 0; }
  .site-header__nav.open a.nav-cta { margin-left: 0; margin-top: 10px; text-align: center; padding: 10px; }
  .site-header { position: relative; }
  .nav-toggle { display: flex; }
}

/* ── SEO TEXT ─────────────────────────────────────────────── */
#seo-text {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.seo-text-wrap {
  max-width: 800px;
}

/* H1 — Hauptüberschrift mit Gold-Unterstrich */
.seo-text-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  padding-bottom: 18px;
  position: relative;
}
.seo-text-wrap h1::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 72px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

/* H2 — Abschnitts-Überschriften */
.seo-text-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 52px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

/* H3 — Unterkapitel */
.seo-text-wrap h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-text-wrap h3::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Fließtext */
.seo-text-wrap p {
  color: var(--ink-muted);
  font-size: .93rem;
  line-height: 1.95;
  margin-bottom: 20px;
}
.seo-text-wrap p:last-child { margin-bottom: 0; }

/* Listen */
.seo-text-wrap ul,
.seo-text-wrap ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: .93rem;
  line-height: 1.9;
}
.seo-text-wrap ul li,
.seo-text-wrap ol li {
  padding: 4px 0 4px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.seo-text-wrap ul li:last-child,
.seo-text-wrap ol li:last-child { border-bottom: none; }
.seo-text-wrap ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold); font-family: var(--serif);
}
.seo-text-wrap ol { counter-reset: seo-ol; }
.seo-text-wrap ol li { counter-increment: seo-ol; }
.seo-text-wrap ol li::before {
  content: counter(seo-ol) '.';
  position: absolute; left: 0;
  color: var(--gold); font-size: .8rem; font-weight: 600;
}

/* Fett & kursiv */
.seo-text-wrap strong { color: var(--ink); font-weight: 600; }
.seo-text-wrap em     { color: var(--gold-light); font-style: italic; }

/* Links */
.seo-text-wrap a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--border-gold);
  text-underline-offset: 3px;
  transition: color .2s;
}
.seo-text-wrap a:hover { color: var(--gold-light); }

/* ── PROBLEM SECTION ──────────────────────────────────────── */
#problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-gold);
  margin-bottom: 60px;
}
.problem-card {
  background: var(--surface);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
  transition: background .2s;
}
.problem-card:hover { background: var(--surface-2); }
.problem-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--border-gold);
  line-height: 1.4;
}
.problem-card p {
  font-size: .93rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
}
.problem-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.problem-cta-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.65;
  max-width: 580px;
  position: relative;
  padding: 0 0 20px;
}
.problem-cta-text::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { background: var(--bg-raised); }
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  text-align: left;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color .2s;
  line-height: 1.4;
  display: block;
}
.faq-q:hover { color: var(--gold); }
/* Plus/Minus Icon */
.faq-q::before,
.faq-q::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.faq-q::before {
  width: 14px; height: 1px;
  margin-top: -.5px;
}
.faq-q::after {
  width: 1px; height: 14px;
  margin-top: -7px;
  right: 10px;
}
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  display: none;
  padding: 0 52px 24px 0;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: .92rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin: 0;
}

/* ── FINALER CTA ──────────────────────────────────────────── */
#cta-final {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.cta-final-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.cta-final-wrap .section-title {
  text-align: center;
  margin-bottom: 20px;
}
.cta-final-wrap > p {
  text-align: center;
  color: var(--ink-muted);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-final-note {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--ink-faint);
  letter-spacing: .04em;
}

/* ── ANFRAGE-SEITE ────────────────────────────────────────── */
.anfrage-page { background: var(--bg); }
.anfrage-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.anfrage-info { padding-top: 4px; }
.anfrage-info .section-label { margin-bottom: 14px; }
.anfrage-info h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 20px;
}
.anfrage-info > p {
  color: var(--ink-muted);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 36px;
}
.fuer-wen-box {
  margin-bottom: 24px;
  border: 1px solid var(--border-gold);
  background: var(--surface);
  position: relative;
}
.fuer-wen-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.fuer-wen-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--border);
}
.fuer-wen-title.yes { color: var(--gold); }
.fuer-wen-title.no  { color: var(--ink-faint); }
.fuer-wen-list {
  list-style: none;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fuer-wen-list li {
  font-size: .87rem;
  color: var(--ink-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.fuer-wen-list li::before {
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 2px;
}
.fuer-wen-list.yes li::before { content: '✓'; color: var(--gold); }
.fuer-wen-list.no  li::before { content: '✕'; color: var(--ink-faint); }
.anfrage-dsgvo {
  font-size: .75rem;
  color: var(--ink-faint);
  line-height: 1.6;
  margin-top: 12px;
}
.anfrage-dsgvo a { color: var(--ink-faint); text-decoration: underline; }

@media (max-width: 860px) {
  .anfrage-wrap { grid-template-columns: 1fr; padding: 56px 20px 72px; gap: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
}
