/*
Theme Name:  Kaufpreisaufteilung Gutachter – Ronny Kreher
Theme URI:   https://www.kaufpreisaufteilung-gutachter.de
Author:      Ronny Kreher
Author URI:  https://www.investment-gutachten.de
Description: Professionelles Theme für Kaufpreisaufteilung-Gutachten. Landingpage + Blog + 36 Unterseiten.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: kpa-gutachter
Tags:        immobilien, gutachter, landingpage, blog
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2d42;
  --navy-dark:   #070f18;
  --gold:        #c8932a;
  --gold-light:  #e8b84b;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --text-muted:  #8a9bb0;
  --text-dark:   #3a4a5a;
  --green:       #2ecc71;
  --red:         #e74c3c;
  --border-gold: rgba(200,147,42,0.2);
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 20px 60px rgba(13,27,42,0.15);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY – Google Fonts loaded in functions.php
═══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 800px; }

.section { padding: 100px 0; }
.section--cream  { background: var(--cream); color: var(--navy); }
.section--dark   { background: var(--navy); }
.section--mid    { background: var(--navy-mid); }
.section--darker { background: var(--navy-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(13,27,42,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
}
.site-logo span { color: var(--white); }

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-menu a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,147,42,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,147,42,.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__title {
  margin-bottom: 22px;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__divider {
  height: 1px;
  background: var(--border-gold);
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.5;
}
.hero__photo {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0a1825 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__photo::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,147,42,.12) 0%, transparent 70%);
}
.hero__photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 100px 40px 60px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
}
.hero__photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero__photo-badge {
  width: 100%;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,147,42,.3);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__photo-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(46,204,113,.6);
}
.hero__photo-name { font-size: 14px; font-weight: 700; color: var(--white); }
.hero__photo-title { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════════ */
.about { background: var(--cream); }
.about h2 { color: var(--navy); }
.about__photo-wrap {
  position: relative;
  display: inline-block;
}
.about__photo-wrap img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  text-align: center;
}
.about__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.about__badge-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; line-height: 1.4; }
.about__text { color: var(--text-dark); line-height: 1.8; margin-bottom: 14px; }
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.about__chip {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.about__chip-icon { font-size: 14px; }

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem-box {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 40px;
  border-left: 4px solid var(--red);
}
.problem-box__label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.problem-box h3 { color: var(--white); margin-bottom: 20px; }
.problem-list { list-style: none; }
.problem-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
  color: rgba(255,255,255,.72);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '✕';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   STEPS
═══════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.step {
  background: var(--navy-mid);
  padding: 36px 28px;
}
.step:first-child { border-radius: 10px 0 0 10px; }
.step:last-child  { border-radius: 0 10px 10px 0; }
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(200,147,42,.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; color: var(--white); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════
   VORTEILE CARDS
═══════════════════════════════════════════ */
.benefit-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 32px;
  border-bottom: 3px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.section--cream .benefit-card { background: var(--white); }
.benefit-card__icon { font-size: 28px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.section--cream .benefit-card h3 { color: var(--navy); }
.benefit-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }
.section--cream .benefit-card p  { color: #4a5a6a; }

/* ═══════════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 0;
}
.trust-bar__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-badge { text-align: center; }
.trust-badge__icon {
  width: 60px; height: 60px;
  background: var(--navy-mid);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 10px;
}
.trust-badge__label { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-card {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial-card__text {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-card__author { display: flex; gap: 12px; align-items: center; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--white); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { background: var(--cream); }
.faq h2 { color: var(--navy); text-align: center; margin-bottom: 12px; }
.faq__intro { text-align: center; color: var(--text-dark); margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid rgba(13,27,42,.12); }
.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.faq-item__icon {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--gold); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item__answer p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  padding-bottom: 20px;
}
.faq-item.open .faq-item__answer { max-height: 400px; }

/* ═══════════════════════════════════════════
   KONTAKTFORMULAR
═══════════════════════════════════════════ */
.contact { background: var(--navy); }
.contact__intro-photo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact__intro-photo img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.contact__intro-name { font-size: 15px; font-weight: 700; color: var(--white); }
.contact__intro-title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.contact__intro-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}
.contact__status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.contact__status-label { font-size: 12px; color: var(--green); font-weight: 500; }
.contact h2 { color: var(--white); margin-bottom: 16px; }
.contact__sub { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact__perks { list-style: none; margin-bottom: 0; }
.contact__perks li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact__perks li::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 16px; }

.form-box {
  background: var(--navy-mid);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 40px;
}
.form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 700;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color .2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.28); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select option { background: var(--navy-mid); }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ═══════════════════════════════════════════
   BLOG / ARCHIVE
═══════════════════════════════════════════ */
.blog-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 16px; }
.blog-hero p  { color: var(--text-muted); font-size: 18px; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  padding: 80px 0;
}
.post-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border-gold);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 28px; }
.post-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.post-card__title { font-size: 18px; color: var(--white); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.post-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.post-card__meta { font-size: 12px; color: var(--text-muted); }
.post-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 16px;
}
.post-card__read:hover { color: var(--gold); }

/* Single Post */
.single-hero {
  background: var(--navy-mid);
  padding: 140px 0 60px;
}
.single-hero__cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.single-hero h1 { color: var(--white); max-width: 760px; margin-bottom: 20px; }
.single-hero__meta { font-size: 14px; color: var(--text-muted); }

.entry-content {
  background: var(--cream);
  padding: 80px 0;
  color: var(--navy);
}
.entry-content .container--narrow { max-width: 760px; }
.entry-content h2 { color: var(--navy); margin: 40px 0 16px; }
.entry-content h3 { color: var(--navy); margin: 28px 0 12px; }
.entry-content p  { font-size: 17px; line-height: 1.85; color: var(--text-dark); margin-bottom: 18px; }
.entry-content ul,
.entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content li { font-size: 16px; color: var(--text-dark); line-height: 1.8; margin-bottom: 6px; }
.entry-content strong { color: var(--navy); }
.entry-content a { color: var(--gold); }
.entry-content a:hover { color: var(--navy); }

.entry-content .highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--gold);
}
.entry-content .highlight-box p { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════
   CITY / STATE PAGES
═══════════════════════════════════════════ */
.local-hero {
  background: var(--navy-mid);
  padding: 140px 0 80px;
}
.local-hero h1 { color: var(--white); margin-bottom: 16px; }
.local-hero h1 em { color: var(--gold-light); font-style: italic; }
.local-hero__sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 640px; margin-bottom: 36px; }

.local-content { background: var(--cream); padding: 80px 0; color: var(--navy); }
.local-content h2 { color: var(--navy); margin: 0 0 16px; }
.local-content p  { font-size: 16px; color: var(--text-dark); line-height: 1.8; margin-bottom: 16px; }
.local-content ul { padding-left: 0; list-style: none; margin-bottom: 24px; }
.local-content ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(13,27,42,.1);
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.local-content ul li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════
   SIDEBAR WIDGET
═══════════════════════════════════════════ */
.sidebar-widget {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  color: var(--white);
}
.sidebar-widget h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.sidebar-cta {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.sidebar-cta p  { font-size: 14px; color: rgba(13,27,42,.75); margin-bottom: 16px; }
.sidebar-cta .btn--primary { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 32px;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { font-size: 18px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.45); margin-left: 20px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__photo { min-height: 420px; }
  .hero__content { padding: 120px 40px 60px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-radius: 0 10px 0 0; }
  .step:nth-child(3) { border-radius: 0 0 0 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px; border-bottom: 1px solid var(--border-gold); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero__content { padding: 100px 20px 48px; }
  .hero__title { font-size: 36px; }
  .hero__stats { gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step, .step:first-child, .step:last-child, .step:nth-child(2), .step:nth-child(3) { border-radius: 0; }
  .step:first-child { border-radius: 10px 10px 0 0; }
  .step:last-child  { border-radius: 0 0 10px 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
  .posts-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 20px; }
  .form-box { padding: 28px 20px; }
  .about__badge { bottom: -16px; right: -12px; }
}
