/* ============================================================
   SW Immobilien — Bewertungsseite · bewertung.css
   Design-System: --gold:#c5a55a | --teal:#4BBFAD | --ink:#0a0a0a
   Fonts: Cormorant Garamond (headlines) + DM Sans (body)
   ============================================================ */

/* ── Reset & Tokens ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --teal:      #4BBFAD;
  --teal-d:    #39a596;
  --teal-bg:   #edf8f7;
  --gold:      #c5a55a;
  --ink:       #0a0a0a;
  --ink-70:    rgba(10,10,10,.70);
  --ink-40:    rgba(10,10,10,.40);
  --ink-10:    rgba(10,10,10,.07);
  --off:       #f5f4f0;
  --white:     #ffffff;

  /* Typography */
  --ff-head:   'Cormorant Garamond', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;

  /* Layout */
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(75,191,173,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 820px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(75,191,173,.35);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.btn--dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-40);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  font-weight: 500;
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: #fff;
}
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Sektion-Typografie (geteilt) ───────────────────────── */
.sec__kicker {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 12px;
}
.sec__kicker--light { color: var(--teal); }

.sec__h2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec__h2--light { color: var(--white); }

.sec__intro {
  font-size: 16px;
  color: var(--ink-70);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-10);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 44px;
  width: auto;
}
.site-header__tel {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header__tel svg { color: var(--teal); }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--teal-bg);
  border-bottom: 1px solid rgba(75,191,173,.2);
  padding: 10px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-70);
}
.trust-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.trust-bar__check {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 60px;
  background: var(--off);
  border-bottom: 1px solid var(--ink-10);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-bg);
  border: 1px solid rgba(75,191,173,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #0F6E56;
  margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-40);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero Card */
.hero__card {
  background: var(--off);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--ink-10);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.hero__card-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-40);
  margin-bottom: 20px;
}
.hero__stats { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.hero__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
}
.hero__stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero__stat-label { font-size: 13px; color: var(--ink-70); }
.hero__stat-val {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.hero__stat-unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-40);
  margin-left: 4px;
  font-family: var(--ff-body);
}

/* ── Widget-Sektion ──────────────────────────────────────── */
.sec-widget {
  padding: 64px 0;
  background: var(--off);
}
.sec-widget__kicker {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 8px;
}
.sec-widget__h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.sec-widget__sub {
  text-align: center;
  color: var(--ink-70);
  font-size: 15px;
  margin-bottom: 32px;
}
.widget-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(75,191,173,.3);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--ink-40);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.widget-placeholder strong {
  font-size: 16px;
  color: var(--ink-70);
  margin-bottom: 8px;
}

/* ── USP ─────────────────────────────────────────────────── */
.sec-usp { padding: 80px 0; background: var(--white); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--ink-10);
  transition: box-shadow .2s, transform .2s;
}
.usp-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.usp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.usp-card__icon svg { width: 22px; height: 22px; color: var(--teal); }
.usp-card__title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.usp-card__text { font-size: 14px; color: var(--ink-70); line-height: 1.5; }

/* ── Prozess ─────────────────────────────────────────────── */
.sec-prozess { padding: 80px 0; background: var(--white); }
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}
.prozess-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 0;
}
.prozess-step { text-align: center; position: relative; z-index: 1; }
.prozess-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px rgba(75,191,173,.25);
}
.prozess-step__title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.prozess-step__text { font-size: 14px; color: var(--ink-70); line-height: 1.5; }

/* ── Region ──────────────────────────────────────────────── */
.sec-region { padding: 80px 0; background: var(--off); }
.region__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 760px;
  margin-bottom: 32px;
}
.orte-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.ort-pill {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 14px;
  color: var(--ink-70);
  transition: all .15s;
}
.ort-pill--highlight {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.markt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.markt-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--ink-10);
}
.markt-card__ort { font-size: 13px; color: var(--ink-40); margin-bottom: 4px; }
.markt-card__preis {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.markt-card__einheit { font-size: 12px; color: var(--ink-40); margin-top: 4px; }

/* ── Content (SEO-Text) ──────────────────────────────────── */
.sec-content { padding: 80px 0; background: var(--white); }
.content__cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.content__body h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 32px;
  line-height: 1.25;
}
.content__body h2:first-child { margin-top: 0; }
.content__body h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 24px;
}
.content__body p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.7;
  margin-bottom: 16px;
}
.content__body ul { padding-left: 20px; margin-bottom: 16px; }
.content__body ul li { font-size: 15px; color: var(--ink-70); margin-bottom: 6px; }

/* Sidebar */
.sidebar-box {
  background: var(--off);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--ink-10);
  position: sticky;
  top: 90px;
}
.sidebar-box__title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.sidebar-box__intro {
  font-size: 14px;
  color: var(--ink-70);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sidebar-box__line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-10);
  font-size: 14px;
  color: var(--ink-70);
}
.sidebar-box__line:last-of-type { border-bottom: none; }
.sidebar-box__line svg { color: var(--teal); flex-shrink: 0; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.sec-faq {
  padding: 96px 0;
  background: var(--ink);
}
.sec-faq__kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.sec-faq__h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 56px;
}
.faq-accordion {
  border-top: 1px solid rgba(255,255,255,.12);
}
.faq-acc__item {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.faq-acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  color: #fff;
  transition: color .2s;
}
.faq-acc__q:hover { color: var(--teal); }
.faq-acc__q[aria-expanded="true"] .faq-acc__num { color: var(--teal); }
.faq-acc__num {
  flex-shrink: 0;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.35);
  width: 28px;
  transition: color .2s;
}
.faq-acc__qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.faq-acc__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, background .2s;
}
.faq-acc__q[aria-expanded="true"] .faq-acc__icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.faq-acc__a {
  padding: 0 0 28px 48px;
}
.faq-acc__a p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA-Sektion ─────────────────────────────────────────── */
.sec-cta {
  padding: 80px 0;
  background: var(--ink);
}
.cta__inner { text-align: center; }
.cta__text {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  margin-bottom: 36px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--off);
  border-top: 1px solid var(--ink-10);
  padding: 40px 0 28px;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 24px; }
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__logo {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
}
.site-footer__logo span { color: var(--teal); }
.site-footer__address {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.6;
  margin-top: 6px;
}
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__links a { font-size: 13px; color: var(--ink-40); }
.site-footer__links a:hover { color: var(--teal); }
.site-footer__copy {
  font-size: 12px;
  color: var(--ink-40);
  border-top: 1px solid var(--ink-10);
  padding-top: 20px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__card-wrap { display: none; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .markt-grid { grid-template-columns: 1fr 1fr; }
  .content__cols { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .prozess-grid::before { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .usp-grid { grid-template-columns: 1fr; }
  .markt-grid { grid-template-columns: 1fr; }
  .faq-acc__a { padding-left: 0; }
  .prozess-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar__inner { gap: 14px; }
  .btn--lg { padding: 16px 24px; font-size: 15px; }
  .sec-usp, .sec-prozess, .sec-region, .sec-content, .sec-faq, .sec-cta { padding: 56px 0; }
}
