/* ==============================================================
   marktpreiseinschaetzung.css
   Premium-Persönliche Landing-Page — Sarah & Dennis Will
   Nutzt WI-Design-System: Teal, Gold, Cormorant Garamond, DM Sans
============================================================== */

:root {
  --mp-teal:      #4BBFAD;
  --mp-teal-dark: #2f8a7d;
  --mp-gold:      #c5a55a;
  --mp-ink:       #1a1a1a;
  --mp-ink-soft:  #3a3a3a;
  --mp-muted:     #6b6b6b;
  --mp-line:      #e8e6e2;
  --mp-off:       #edf8f7;
  --mp-bg-warm:   #fbf8f3;
  --mp-white:     #ffffff;
  --mp-dark-bg:   #1a2430;
  --mp-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --mp-shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --mp-shadow-lg: 0 18px 64px rgba(0,0,0,0.14);
  --mp-radius:    14px;
  --mp-radius-sm: 8px;
  --mp-radius-lg: 22px;
}

/* ── Reset/Base ──────────────────────────────────────────── */
.mp-body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--mp-ink);
  background: var(--mp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mp-body * { box-sizing: border-box; }
.mp-body img { max-width: 100%; display: block; }

.mp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.mp-container--narrow { max-width: 860px; }

/* ── Typografie ──────────────────────────────────────────── */
.mp-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--mp-ink);
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.mp-h2--light { color: var(--mp-white); }
.mp-kicker {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mp-teal-dark);
  margin-bottom: 14px;
}
.mp-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--mp-ink-soft);
  max-width: 65ch;
  margin: 0 0 24px;
}
.mp-lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.mp-sec-head { margin-bottom: 52px; }
.mp-sec-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  line-height: 1;
  white-space: nowrap;
}
.mp-btn--primary {
  background: var(--mp-teal);
  color: var(--mp-white);
  border-color: var(--mp-teal);
}
.mp-btn--primary:hover {
  background: var(--mp-teal-dark);
  border-color: var(--mp-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(75,191,173,0.32);
}
.mp-btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--mp-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.mp-btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--mp-white);
}
.mp-btn--ghost-light {
  background: transparent;
  color: var(--mp-white);
  border-color: rgba(255,255,255,0.5);
}
.mp-btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--mp-white);
}
/* Ghost-Variante für helle Hintergründe (Cream / White) */
.mp-btn--ghost-dark {
  background: rgba(255,255,255,0.6);
  color: var(--mp-ink);
  border-color: rgba(15,23,42,0.18);
  backdrop-filter: blur(6px);
}
.mp-btn--ghost-dark:hover {
  background: rgba(255,255,255,0.9);
  border-color: var(--mp-teal);
  color: var(--mp-teal);
}
.mp-btn--ghost-dark svg { color: #25D366; } /* WhatsApp-Grün fürs Icon */
.mp-btn--lg { padding: 16px 32px; font-size: 16px; }
.mp-btn--full { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }

/* ── Hero ────────────────────────────────────────────────── */
.mp-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--mp-white);
  overflow: hidden;
}
.mp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mp-hero__bg picture,
.mp-hero__bg picture img,
.mp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.mp-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,28,38,0.85) 0%, rgba(18,28,38,0.52) 55%, rgba(18,28,38,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.32) 100%);
}
.mp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 100px 0 80px;
}
.mp-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-white);
  margin-bottom: 24px;
}
.mp-hero__h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--mp-white);
  text-wrap: balance;
}
.mp-hero__sub {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.96);
  max-width: 580px;
  margin: 0 0 36px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.mp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.mp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 13px;
  color: var(--mp-white);
}
.mp-pill svg { color: var(--mp-gold); }

/* ── Einladung (Zitate) ──────────────────────────────────── */
.mp-einladung {
  padding: 100px 0 80px;
  background: var(--mp-bg-warm);
}
.mp-einladung__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.mp-einladung__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mp-einladung__card {
  background: var(--mp-white);
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
  box-shadow: var(--mp-shadow-md);
  display: flex;
  flex-direction: column;
}
.mp-einladung__portrait {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mp-line);
}
.mp-einladung__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.mp-einladung__body {
  padding: 36px 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mp-einladung__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.1vw, 24px);
  font-style: italic;
  line-height: 1.45;
  color: var(--mp-ink);
  margin: 0 0 28px;
  padding: 4px 0 0 32px;
  border: none;
  position: relative;
}
.mp-einladung__quote::before {
  content: "„";
  position: absolute;
  top: -14px;
  left: -2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 54px;
  line-height: 1;
  color: var(--mp-gold);
  opacity: 0.7;
  font-style: normal;
  pointer-events: none;
}
.mp-einladung__footer {
  border-top: 1px solid var(--mp-line);
  padding-top: 18px;
}
.mp-einladung__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--mp-ink);
  margin-bottom: 2px;
}
.mp-einladung__role {
  font-size: 13px;
  color: var(--mp-muted);
}
.mp-einladung__cta {
  text-align: center;
  margin-top: 48px;
}

/* ── USPs ───────────────────────────────────────────────── */
.mp-usp-wrap {
  padding: 100px 0;
  background: var(--mp-white);
}
.mp-usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mp-usp {
  padding: 36px 32px;
  border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius);
  background: var(--mp-white);
  transition: all 200ms ease;
}
.mp-usp:hover {
  border-color: var(--mp-teal);
  box-shadow: var(--mp-shadow-md);
  transform: translateY(-2px);
}
.mp-usp__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--mp-off);
  color: var(--mp-teal-dark);
  margin-bottom: 22px;
}
.mp-usp__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--mp-ink);
  letter-spacing: -0.005em;
}
.mp-usp__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mp-ink-soft);
  margin: 0;
}

/* ── Prozess ────────────────────────────────────────────── */
.mp-prozess {
  padding: 100px 0;
  background: var(--mp-bg-warm);
}
.mp-prozess__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.mp-prozess__step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.mp-prozess__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--mp-line) 0%, var(--mp-teal) 50%, var(--mp-line) 100%);
  opacity: 0.6;
}
.mp-prozess__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--mp-gold);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.mp-prozess__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--mp-ink);
  margin: 0 0 12px;
}
.mp-prozess__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mp-ink-soft);
  max-width: 320px;
  margin: 0 auto;
}

/* ── Leistung ───────────────────────────────────────────── */
.mp-leistung {
  padding: 100px 0;
  background: var(--mp-white);
}
.mp-leistung__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.mp-leistung__list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--mp-bg-warm);
  border-radius: var(--mp-radius);
  padding: 32px 32px 28px;
}
.mp-leistung__item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(197,165,90,0.18);
  font-size: 15px;
  line-height: 1.55;
  color: var(--mp-ink);
}
.mp-leistung__item:last-child { border-bottom: none; padding-bottom: 4px; }
.mp-leistung__check {
  flex-shrink: 0;
  color: var(--mp-teal);
  margin-top: 2px;
}

/* ── Region ─────────────────────────────────────────────── */
.mp-region {
  padding: 100px 0;
  background: var(--mp-off);
}
.mp-region__orte {
  list-style: none;
  padding: 0;
  margin: 40px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mp-region__ort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--mp-white);
  border: 1px solid rgba(75,191,173,0.22);
  border-radius: 999px;
  font-size: 14px;
  color: var(--mp-ink);
}
.mp-region__ort svg { color: var(--mp-teal); }
.mp-region__note {
  font-size: 14px;
  color: var(--mp-muted);
  font-style: italic;
  margin: 12px 0 0;
}

/* ── Kontakt-Formular ────────────────────────────────────── */
.mp-form-wrap {
  padding: 100px 0;
  background: var(--mp-white);
  scroll-margin-top: 110px;
}
.mp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.mp-form-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mp-form-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mp-ink-soft);
}
.mp-form-trust svg { color: var(--mp-teal); flex-shrink: 0; }

.mp-form-alt {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--mp-line);
}
.mp-form-alt__label {
  font-size: 13px;
  color: var(--mp-muted);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mp-form-alt__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--mp-ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mp-form-alt__phone:hover { color: var(--mp-teal-dark); }
.mp-form-alt__phone svg { color: var(--mp-teal); }

.mp-form {
  background: var(--mp-bg-warm);
  padding: 44px 40px 40px;
  border-radius: var(--mp-radius-lg);
  border: 1px solid var(--mp-line);
}
.mp-field { margin-bottom: 20px; }
.mp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.mp-field-row .mp-field { margin-bottom: 0; }
.mp-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--mp-ink-soft);
  margin-bottom: 8px;
}
.mp-req { color: var(--mp-teal-dark); }
.mp-input {
  width: 100%;
  padding: 13px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--mp-ink);
  background: var(--mp-white);
  border: 1.5px solid var(--mp-line);
  border-radius: var(--mp-radius-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.mp-input:focus {
  outline: none;
  border-color: var(--mp-teal);
  box-shadow: 0 0 0 4px rgba(75,191,173,0.15);
}
.mp-input:focus-visible {
  outline: 2px solid var(--mp-teal);
  outline-offset: 2px;
}
.mp-btn:focus-visible {
  outline: 2px solid var(--mp-teal);
  outline-offset: 3px;
}
.mp-btn--ghost:focus-visible,
.mp-btn--ghost-light:focus-visible {
  outline: 2px solid var(--mp-white);
  outline-offset: 3px;
}
.mp-faq__q:focus-visible {
  outline: 2px solid var(--mp-teal);
  outline-offset: -2px;
}
.mp-textarea { resize: vertical; min-height: 120px; }
.mp-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.mp-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mp-ink-soft);
  margin: 8px 0 24px;
}
.mp-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--mp-teal);
  cursor: pointer;
}
.mp-consent a { color: var(--mp-teal-dark); }

.mp-form-msg {
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  border-radius: var(--mp-radius-sm);
}
.mp-form-msg--ok {
  padding: 12px 16px;
  background: rgba(75,191,173,0.12);
  color: var(--mp-teal-dark);
  border: 1px solid rgba(75,191,173,0.3);
}
.mp-form-msg--err {
  padding: 12px 16px;
  background: rgba(220,80,80,0.08);
  color: #a63232;
  border: 1px solid rgba(220,80,80,0.25);
}

/* ── FAQ ────────────────────────────────────────────────── */
.mp-faq {
  padding: 100px 0;
  background: var(--mp-bg-warm);
}
.mp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-faq__item {
  background: var(--mp-white);
  border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.mp-faq__item[open] { border-color: var(--mp-teal); }
.mp-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--mp-ink);
  cursor: pointer;
  list-style: none;
}
.mp-faq__q::-webkit-details-marker { display: none; }
.mp-faq__chev {
  color: var(--mp-teal-dark);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.mp-faq__item[open] .mp-faq__chev { transform: rotate(180deg); }
.mp-faq__a {
  padding: 0 28px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mp-ink-soft);
}

/* ── Closing / CTA ──────────────────────────────────────── */
.mp-closing {
  padding: 120px 0;
  background: var(--mp-dark-bg);
  color: var(--mp-white);
  position: relative;
  overflow: hidden;
}
.mp-closing::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(75,191,173,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.mp-closing__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mp-closing__lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 16px 0 36px;
}
.mp-closing__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Alt-Tool (nachrangig) ──────────────────────────────── */
.mp-alt-tool {
  padding: 48px 0 64px;
  background: var(--mp-white);
  border-top: 1px solid var(--mp-line);
}
.mp-alt-tool__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.85;
}
.mp-alt-tool__h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--mp-ink);
  margin: 0 0 10px;
}
.mp-alt-tool__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mp-muted);
  margin: 0 0 18px;
}
.mp-alt-tool__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mp-teal-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--mp-teal-dark);
  padding-bottom: 2px;
  transition: color 150ms ease;
}
.mp-alt-tool__link:hover { color: var(--mp-ink); border-color: var(--mp-ink); }

/* ── Responsive ─────────────────────────────────────────── */

/* Tablet: 768–960px — Form-Grid entspannen, USPs in 2 Spalten beibehalten */
@media (max-width: 960px) and (min-width: 768px) {
  .mp-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mp-einladung__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mp-leistung__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mp-prozess__steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .mp-hero { min-height: 580px; }
  .mp-einladung, .mp-usp-wrap, .mp-prozess, .mp-leistung, .mp-region, .mp-form-wrap, .mp-faq {
    padding: 84px 0;
  }
}

@media (max-width: 960px) {
  .mp-container { padding: 0 20px; }
  .mp-einladung__grid { grid-template-columns: 1fr; gap: 24px; }
  .mp-usp-grid { grid-template-columns: 1fr; }
  .mp-prozess__steps { grid-template-columns: 1fr; gap: 44px; }
  .mp-prozess__step:not(:last-child)::after { display: none; }
  .mp-leistung__grid { grid-template-columns: 1fr; gap: 36px; }
  .mp-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .mp-field-row { grid-template-columns: 1fr; gap: 0; }
  .mp-field-row .mp-field { margin-bottom: 20px; }
  .mp-hero { min-height: 560px; }
  .mp-hero__inner { padding: 80px 0 60px; }
  .mp-hero__bg-overlay {
    background:
      linear-gradient(180deg, rgba(18,28,38,0.45) 0%, rgba(18,28,38,0.82) 60%),
      linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  }
  .mp-closing { padding: 80px 0; }
  .mp-einladung, .mp-usp-wrap, .mp-prozess, .mp-leistung, .mp-region, .mp-form-wrap, .mp-faq {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .mp-hero__ctas { flex-direction: column; align-items: stretch; }
  .mp-hero__ctas .mp-btn { justify-content: center; }
  .mp-closing__ctas { flex-direction: column; align-items: stretch; }
  .mp-form { padding: 28px 22px 26px; }
  .mp-einladung__body { padding: 26px 24px 24px; }
  .mp-usp { padding: 28px 22px; }
}

/* ── Print (für Druck-Einschätzung optional) ───────────── */
@media print {
  .mp-hero__ctas, .mp-closing__ctas, .mp-form-wrap, .mp-alt-tool { display: none; }
  .mp-hero__bg-overlay { background: rgba(255,255,255,0.9); }
  .mp-hero, .mp-hero__h1, .mp-hero__sub { color: var(--mp-ink); }
}
