/*
Theme Name: Fuhrken Theme
Theme URI: https://fuhrken-steuerberatung.de
Author: Wolfgang Fuhrken
Description: Modernes Theme für die Steuerkanzlei Wolfgang Fuhrken
Version: 1.0
Text Domain: fuhrken-theme
*/

/* ── VARIABLES ─────────────────────────── */
:root {
  --navy: #0D1B2E;
  --navy-mid: #162540;
  --navy-light: #1E3358;
  --gold: #C9A44A;
  --gold-light: #E2C375;
  --gold-pale: #F5EDD6;
  --cream: #F8F4ED;
  --white: #FFFFFF;
  --text-dark: #0D1B2E;
  --text-mid: #4A5568;
  --text-light: #8899AA;
  --border: rgba(201,164,74,0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(13,27,46,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,74,0.15);
}
.nav-logo {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
}
.nav-logo span:first-child {
  font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: 0.03em;
}
.nav-logo span:last-child {
  font-size: 11px; font-weight: 300; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75); font-size: 13.5px;
  font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 22px; border-radius: 4px; font-weight: 600 !important;
  font-size: 13px !important; letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── Mobile Menu Toggle ─────────────────── */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; z-index: 101;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg-lines::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,74,0.08) 0%, transparent 65%);
}
.hero-bg-lines::after {
  content: '';
  position: absolute; bottom: -50px; left: 30%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,51,88,0.6) 0%, transparent 70%);
}
.hero-grid-line {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  border-left: 1px solid rgba(201,164,74,0.12);
  background: linear-gradient(180deg, rgba(201,164,74,0.04) 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.hero-eyebrow span {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; line-height: 1.7; font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 15px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 400;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--gold-light); border-color: var(--gold); }

.hero-badges {
  position: absolute; bottom: 60px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,164,74,0.2);
  border-radius: 4px; padding: 10px 18px;
  backdrop-filter: blur(8px);
}
.hero-badge span {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

/* ── LEISTUNGSBAND ──────────────────────── */
.band {
  background: var(--gold); padding: 0 60px;
  display: flex; align-items: center; gap: 0; overflow: hidden;
  height: 64px;
}
.band-items { display: flex; gap: 0; align-items: center; }
.band-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px; border-right: 1px solid rgba(13,27,46,0.15);
  font-size: 12.5px; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.band-dot { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; opacity: 0.4; }

/* ── SECTIONS ──────────────────────────── */
.section { padding: 100px 60px; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.2; color: var(--navy); margin-bottom: 60px;
  max-width: 500px;
}
.section-title em { font-style: italic; color: var(--navy-light); }

/* ── SERVICES GRID ─────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.service-card {
  background: var(--white); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 300;
  color: rgba(201,164,74,0.18); line-height: 1; margin-bottom: 24px;
}
.service-icon {
  width: 44px; height: 44px; margin-bottom: 20px;
  background: var(--gold-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  color: var(--navy); margin-bottom: 14px; letter-spacing: 0.01em;
}
.service-card p { font-size: 14.5px; line-height: 1.7; color: var(--text-mid); font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px; font-size: 13px; font-weight: 500;
  color: var(--gold); text-decoration: none; letter-spacing: 0.04em;
}

/* ── ABOUT/USP SPLIT ────────────────────── */
.about-section {
  background: var(--navy); padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  background: var(--navy-light);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.about-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--gold); padding: 24px 32px;
  font-family: var(--font-display);
}
.about-badge .num { font-size: 48px; font-weight: 300; color: var(--navy); line-height: 1; }
.about-badge .text { font-size: 13px; color: var(--navy); font-weight: 500; letter-spacing: 0.05em; }
.about-content .section-label { color: var(--gold); }
.about-content .section-title { color: var(--white); max-width: 100%; margin-bottom: 28px; }
.about-content p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 36px; }
.usp-list { display: flex; flex-direction: column; gap: 16px; }
.usp-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(201,164,74,0.15); border-radius: 4px;
  transition: border-color 0.2s;
}
.usp-item:hover { border-color: rgba(201,164,74,0.4); }
.usp-check {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(201,164,74,0.15); display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.usp-check svg { width: 11px; height: 11px; color: var(--gold); }
.usp-item-text h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.usp-item-text p { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.5; margin-bottom: 0; }

/* ── PROZESS ────────────────────────────── */
.process-section { background: var(--cream); padding: 100px 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.process-step { position: relative; }
.process-step::after {
  content: '';
  position: absolute; top: 28px; left: calc(100% + 16px);
  width: calc(100% - 32px); height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--gold);
  margin-bottom: 20px;
}
.process-step h4 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 14px; line-height: 1.6; color: var(--text-mid); font-weight: 300; }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials { background: var(--white); padding: 100px 60px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.testimonial-card {
  background: var(--cream); padding: 36px;
  border-radius: 4px; border: 1px solid rgba(201,164,74,0.15);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 72px;
  color: var(--gold); opacity: 0.3; line-height: 0.5;
  position: absolute; top: 28px; right: 28px;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 13px; height: 13px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testimonial-card p { font-size: 14.5px; line-height: 1.7; color: var(--text-mid); font-weight: 300; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--gold-light); font-family: var(--font-display); }
.author-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.author-role { font-size: 12px; color: var(--text-light); font-weight: 300; }

/* ── CTA BAND ───────────────────────────── */
.cta-section {
  background: var(--navy); padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  border-top: 1px solid rgba(201,164,74,0.15);
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 50px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.cta-text h2 em { font-style: italic; color: var(--gold-light); }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 300; }
.cta-actions { display: flex; gap: 16px; flex-direction: column; align-items: flex-end; min-width: 220px; }

/* ── KONTAKT ────────────────────────────── */
.contact-section { background: var(--cream); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-title { margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 42px; height: 42px; min-width: 42px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail h4 { font-size: 13px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-detail p { font-size: 15px; color: var(--navy); font-weight: 400; }
.contact-form { background: var(--white); padding: 48px; border-radius: 4px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--navy);
  background: var(--cream); outline: none; transition: border-color 0.2s;
  font-weight: 300;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--navy); color: var(--white); border: none; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--navy-light); }

/* ── FOOTER ─────────────────────────────── */
footer.site-footer { background: #080F1A; padding: 60px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo span:first-child { font-size: 22px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.35); font-weight: 300; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 300; }

/* ── PAGE HERO (Unterseiten) ────────────── */
.page-hero {
  background: var(--navy); padding: 130px 60px 64px;
  border-bottom: 1px solid rgba(201,164,74,0.12);
}
.page-hero-inner { max-width: 680px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.1; color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ── STEUERRECHNER ──────────────────────── */
.rechner-section { background: var(--cream); padding: 64px 60px 80px; }

.rechner-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border-bottom: 1px solid rgba(201,164,74,0.2);
  overflow-x: auto;
}
.rechner-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--text-mid); letter-spacing: 0.02em; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.rechner-tab svg { opacity: 0.5; transition: opacity 0.2s; }
.rechner-tab:hover { color: var(--navy); }
.rechner-tab:hover svg { opacity: 0.8; }
.rechner-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.rechner-tab.active svg { opacity: 1; }

.rechner-panel { display: none; }
.rechner-panel.active { display: block; }

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

.rechner-form-card {
  background: var(--white); padding: 40px;
  border-radius: 6px; border: 1px solid var(--border);
}
.rechner-form-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--navy); margin-bottom: 28px;
}
.rechner-year {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  background: var(--gold-pale); color: var(--gold);
  padding: 2px 8px; border-radius: 20px; margin-left: 8px;
  vertical-align: middle; letter-spacing: 0.05em;
}

.input-euro { position: relative; }
.input-euro input { padding-right: 40px; width: 100%; }
.input-euro span {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--text-light); font-weight: 500; pointer-events: none;
}

.form-check-group { margin-bottom: 24px; }
.check-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 14px; color: var(--text-mid); font-weight: 300;
}
.check-label input[type="checkbox"] { display: none; }
.check-box {
  width: 18px; height: 18px; min-width: 18px; border-radius: 3px;
  border: 1.5px solid rgba(0,0,0,0.15); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.check-label input:checked + .check-box {
  background: var(--gold); border-color: var(--gold);
}
.check-label input:checked + .check-box::after {
  content: ''; display: block; width: 5px; height: 9px;
  border: 2px solid var(--navy); border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.rechner-info-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); padding: 10px 14px; border-radius: 4px;
  font-size: 12.5px; color: var(--text-mid); font-weight: 300;
  margin-bottom: 24px; border: 1px solid rgba(0,0,0,0.06);
}
.rechner-info-box svg { min-width: 14px; color: var(--gold); }

.rechner-btn {
  width: 100%; padding: 14px; background: var(--navy); color: var(--white);
  border: none; font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: background 0.2s;
  margin-top: 4px;
}
.rechner-btn:hover { background: var(--navy-light); }

/* Result states */
.rechner-result-empty {
  background: var(--white); padding: 48px 32px; border-radius: 6px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 280px;
  text-align: center; gap: 16px;
}
.rechner-result-empty p { font-size: 14px; color: var(--text-light); font-weight: 300; max-width: 220px; line-height: 1.6; }

.rechner-result {
  background: var(--navy); border-radius: 6px; overflow: hidden;
}
.result-header {
  padding: 28px 32px; background: var(--navy-light);
  border-bottom: 1px solid rgba(201,164,74,0.15); text-align: center;
}
.result-header-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 600; display: block; margin-bottom: 10px; }
.result-header-value { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--white); line-height: 1; }
.result-header-sub { font-size: 12px; color: rgba(255,255,255,0.35); display: block; margin-top: 6px; }

.result-breakdown { padding: 20px 32px 0; }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px; color: rgba(255,255,255,0.6); font-weight: 300;
}
.result-row:last-child { border-bottom: none; }
.result-row span:last-child { font-weight: 500; color: rgba(255,255,255,0.8); }
.result-minus span:last-child { color: #ff8080 !important; }
.result-plus span:last-child  { color: #7dd87d !important; }
.result-total {
  border-top: 1px solid rgba(201,164,74,0.25) !important;
  border-bottom: none !important; padding-top: 14px !important;
  margin-top: 4px; font-size: 15px !important;
  color: var(--white) !important; font-weight: 500 !important;
}
.result-total span:last-child { color: var(--gold) !important; font-size: 17px !important; font-weight: 600 !important; }

.result-divider {
  padding: 12px 0 4px; border: none !important;
}
.result-divider span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(201,164,74,0.6); font-weight: 600; }

.result-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.05); margin: 20px 0 0;
}
.result-stat { background: var(--navy); padding: 16px 12px; text-align: center; }
.result-stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.result-stat-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; line-height: 1.4; }

.result-note {
  margin: 16px 32px 20px; padding: 12px 16px;
  background: rgba(201,164,74,0.07); border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0; font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.result-note strong { color: var(--gold-light); }

.rechner-disclaimer {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--white); padding: 16px 20px; border-radius: 4px;
  border: 1px solid rgba(201,164,74,0.15); margin-top: 40px;
  font-size: 12.5px; color: var(--text-light); line-height: 1.6;
}
.rechner-disclaimer svg { min-width: 14px; margin-top: 2px; color: var(--gold); }

/* Rechner Responsive */
@media (max-width: 960px) { .rechner-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .rechner-section { padding: 40px 24px 60px; }
  .page-hero { padding: 110px 24px 48px; }
  .rechner-tab { padding: 12px 16px; font-size: 13px; }
  .rechner-form-card { padding: 28px; }
  .result-header { padding: 24px 20px; }
  .result-breakdown { padding: 16px 20px 0; }
  .result-note { margin: 12px 20px 16px; }
  .result-stats { grid-template-columns: 1fr 1fr; }
}

/* ── ANIMATIONS ─────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  nav.site-nav { padding: 0 24px; }
  .nav-links { 
    display: none; flex-direction: column; 
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,46,0.98); padding: 40px 24px;
    gap: 24px; align-items: flex-start;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  
  .hero { padding: 120px 24px 80px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-badges {
    position: relative; bottom: auto; right: auto;
    margin-top: 40px; flex-direction: row; flex-wrap: wrap; gap: 10px;
  }
  .hero-content { max-width: 100%; }
  .hero-grid-line { display: none; }
  
  .section { padding: 60px 24px; }
  .band { padding: 0 24px; height: auto; padding: 16px 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step::after { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .about-section { padding: 60px 24px; }
  .process-section { padding: 60px 24px; }
  .testimonials { padding: 60px 24px; }
  
  .cta-section { padding: 60px 24px; flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }
  
  .contact-section { padding: 60px 24px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  
  footer.site-footer { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── WordPress Admin Bar Fix ────────────── */
body.admin-bar nav.site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar nav.site-nav { top: 46px; }
}
