/* ═══════════════════════════════════════════════════════════════
   ge-lp.css — Gallium Estate v48
   Leistungs-Landingpages: Prozess-Steps
════════════════════════════════════════════════════════════════ */

/* ── PROZESS-STEPS ───────────────────────────────────────── */
.ge-lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.ge-lp-step {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,106,.12);
  border-radius: 16px;
  padding: 32px 26px;
  transition: background .25s, border-color .25s;
}
.ge-lp-step:hover {
  background: rgba(201,168,106,.05);
  border-color: rgba(201,168,106,.22);
}

.ge-lp-step__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  margin-bottom: 14px;
}

.ge-lp-step__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.ge-lp-step__text {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  line-height: 1.78;
  margin: 0;
}

/* Light-Section Steps */
.ge-section--light .ge-lp-step {
  background: #fff;
  border-color: #E9E4DB;
}
.ge-section--light .ge-lp-step:hover {
  border-color: var(--gold-d);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.ge-section--light .ge-lp-step__title { color: var(--navy); }
.ge-section--light .ge-lp-step__text  { color: var(--muted); }

@media (max-width: 640px) {
  .ge-lp-steps { grid-template-columns: 1fr; gap: 16px; }
  .ge-lp-step  { padding: 24px 20px; }
}

/* ── v75: LP-Seiten-spezifische Klassen (inline-styles bereinigt) ────────── */

/* Hero-Bild: volle Abdeckung */
.ge-region-hero {
  position: relative;
  min-height: clamp(680px, 82vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #04080f;
  padding: 132px 0 108px;
}

.ge-region-hero__bg {
  position: absolute;
  inset: 0;
}

.ge-region-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.04);
}

.ge-region-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, .28) 0%, rgba(4, 8, 15, .44) 40%, rgba(4, 8, 15, .94) 100%),
    linear-gradient(105deg, rgba(4, 8, 15, .86) 0%, rgba(4, 8, 15, .52) 40%, rgba(4, 8, 15, .18) 76%);
}

.ge-region-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(4, 8, 15, 0), rgba(4, 8, 15, .92));
  pointer-events: none;
}

.ge-region-hero__orb--1 {
  position: absolute;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  left: 12%;
  top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, .18) 0%, rgba(201, 168, 106, .04) 34%, transparent 72%);
  filter: blur(18px);
  opacity: .9;
  pointer-events: none;
}

/* Hero-Container Positionierung */
.ge-region-hero .ge-container {
  position: relative;
  z-index: 2;
}

.ge-region-hero__inner {
  position: relative;
  width: min(100%, 690px);
  max-width: 690px;
  margin: 48px 0 -124px;
  padding: 34px 36px 28px;
  background: linear-gradient(170deg, rgba(7, 13, 26, .92), rgba(9, 18, 34, .82));
  border: 1px solid rgba(201, 168, 106, .20);
  border-radius: 30px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ge-region-hero__inner::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0), rgba(201, 168, 106, .72), rgba(201, 168, 106, 0));
}

.ge-hero-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 106, .24);
  background: rgba(255, 255, 255, .03);
  color: rgba(232, 208, 144, .94);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ge-hero-premium__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #c9a86a);
  box-shadow: 0 0 0 6px rgba(201, 168, 106, .12);
}

.ge-region-hero__h1 {
  max-width: 12ch;
  margin: 0 0 16px;
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.01;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: balance;
}

.ge-region-hero__title-main {
  display: block;
  max-width: 9.2ch;
}

.ge-region-hero__title-em {
  display: block;
  max-width: 14ch;
  margin-top: 12px;
  font-size: .76em;
  line-height: .94;
  color: var(--gold-l, #e8d090);
  font-style: italic;
}

.ge-region-hero__sub {
  max-width: 54ch;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.72;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .24);
}

.ge-region-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.ge-region-hero__ctas .ge-btn {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.ge-region-hero__ctas .ge-btn--primary {
  background: linear-gradient(135deg, #d4af72, #a67c32);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.ge-region-hero__ctas .ge-btn--ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .94);
}

.ge-region-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ge-region-hero__trust-div {
  display: none;
}

.ge-region-hero__trust-item {
  min-width: 0;
  padding: 14px 14px 12px;
  border: 1px solid rgba(201, 168, 106, .12);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
}

.ge-region-hero__trust-num {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-l, #e8d090);
}

.ge-region-hero__trust-lbl {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.45;
}

/* Intro-Section: zentriert, begrenzte Breite */
.ge-section--light[aria-labelledby="intro-h2"] {
  position: relative;
  padding-top: 186px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 106, .08), transparent 60%),
    linear-gradient(180deg, #f8f7f4 0%, #fffdfa 100%);
}

.ge-lp-intro-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 46px;
  text-align: center;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(201, 168, 106, .16);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(10, 22, 41, .09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ge-region-hero--immobilie-verkaufen .ge-region-hero__bg img {
  object-position: center 62%;
  transform: scale(1.01);
}

.ge-region-hero--immobilie-verkaufen .ge-region-hero__overlay {
  background:
    linear-gradient(180deg, rgba(6, 10, 18, .16) 0%, rgba(6, 10, 18, .36) 36%, rgba(6, 10, 18, .92) 100%),
    linear-gradient(108deg, rgba(6, 10, 18, .82) 0%, rgba(6, 10, 18, .50) 44%, rgba(6, 10, 18, .14) 82%);
}

.ge-region-hero--immobilie-verkaufen .ge-region-hero__inner {
  max-width: 720px;
}

.ge-region-hero--immobilie-verkaufen .ge-region-hero__sub {
  max-width: 50ch;
}

.ge-lp-intro-wrap::before {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0), rgba(201, 168, 106, .9), rgba(201, 168, 106, 0));
}

/* Intro-H2 */
.ge-lp-intro__h2 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--navy, #0A1A2F);
  margin: 12px 0 20px;
  line-height: 1.2;
}

/* Intro-Text */
.ge-lp-intro__text {
  color: var(--muted, #6B7280);
  line-height: 1.85;
  font-size: 15px;
  margin: 0;
}

/* Preistabelle-Header */
.ge-lp-section-head {
  text-align: center;
  margin-bottom: 40px;
}

/* Scroll-Bereich für Tabelle */
.ge-lp-table-scroll {
  overflow-x: auto;
}

.ge-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,106,.12);
  border-radius: 14px;
  overflow: hidden;
}

.ge-price-table th,
.ge-price-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(201,168,106,.10);
  font-size: 14px;
  line-height: 1.5;
}

.ge-price-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.035);
}

.ge-price-table tbody td {
  color: rgba(255,255,255,.82);
}

.ge-price-table tbody td strong {
  color: #fff;
  font-weight: 600;
}

.ge-price-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Preistabelle: Trendfarben (dynamisch → inline OK, aber Basisklassen hier) */
.ge-lp-trend--up { color: #16a34a; font-weight: 600; }
.ge-lp-trend--flat { color: #6b7280; font-weight: 600; }

/* Tabellen-Fußnote */
.ge-lp-table-note {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 14px;
}

.ge-lp-va-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.ge-lp-va-item {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 100%;
  padding: 26px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,245,239,.98));
  border: 1px solid rgba(201, 168, 106, .20);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(10, 22, 41, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.ge-lp-va-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(201,168,106,0), rgba(201,168,106,.9), rgba(201,168,106,0));
  opacity: .72;
}

.ge-lp-va-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 106, .32);
  box-shadow: 0 26px 56px rgba(10, 22, 41, .12);
}

.ge-lp-va-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(208,228,245,.92), rgba(255,248,225,.88));
  border: 1px solid rgba(201, 168, 106, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A5C;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.ge-lp-va-title {
  font-size: 16px;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 8px;
  line-height: 1.28;
}

.ge-lp-va-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.72;
  margin: 0;
}

.ge-lp-va-footer {
  margin-top: 42px;
  text-align: center;
}

/* Steps-Header */
.ge-lp-steps-head {
  text-align: center;
  margin-bottom: 52px;
}

/* FAQ-Header */
.ge-lp-faq-wrap {
  max-width: 820px;
}

.ge-lp-faq-head {
  text-align: center;
  margin-bottom: 48px;
}

/* CTA-Abschluss-Section */
.ge-lp-cta-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,106,.12), transparent 38%),
    linear-gradient(180deg, #07101d 0%, #091427 100%);
}

.ge-lp-cta-wrap {
  max-width: 760px;
  text-align: center;
  padding: 42px 40px 46px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(201,168,106,.16);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ge-lp-cta__text {
  color: rgba(255,255,255,.6);
  margin: 20px 0 36px;
  font-size: 15px;
  line-height: 1.8;
}

.ge-lp-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ge-lp-cta__btns .ge-btn {
  font-size: 16px;
  padding: 16px 36px;
}

.ge-lp-cta__btns .ge-btn--ghost {
  padding: 16px 28px;
}

/* v134.3 - Mobile LP hero and conversion density */
@media (max-width: 768px) {
  .ge-region-hero {
    min-height: auto !important;
    padding: 104px 0 42px !important;
    overflow: hidden !important;
  }

  .ge-region-hero::after,
  .ge-region-hero__orb--1 {
    display: none !important;
  }

  .ge-region-hero__inner {
    max-width: 100% !important;
    margin-bottom: 0 !important;
    padding: 24px 20px 18px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(7, 13, 26, .86), rgba(7, 13, 26, .72)) !important;
  }

  .ge-region-hero__bg img {
    object-position: center 30% !important;
    transform: scale(1.02) !important;
  }

  .ge-region-hero--immobilie-verkaufen .ge-region-hero__bg img {
    object-position: center 55% !important;
  }

  .ge-region-hero__h1 {
    font-size: clamp(34px, 10vw, 43px) !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
  }

  .ge-region-hero__title-main {
    max-width: none !important;
  }

  .ge-region-hero__title-em {
    max-width: 12ch !important;
    margin-top: 6px !important;
    font-size: .8em !important;
    line-height: .98 !important;
  }

  .ge-region-hero__sub {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  .ge-region-hero__ctas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .ge-region-hero__ctas .ge-btn {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    padding: 12px 16px !important;
  }

  .ge-region-hero__trust {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-top: 0 !important;
  }

  .ge-region-hero__trust-div {
    display: none !important;
  }

  .ge-region-hero__trust-item {
    min-width: 0 !important;
    padding: 10px 8px !important;
    border: 1px solid rgba(201,168,106,.18) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.045) !important;
    text-align: center !important;
  }

  .ge-region-hero__trust-num {
    font-size: 20px !important;
    line-height: 1.05 !important;
  }

  .ge-region-hero__trust-lbl {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  .ge-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .ge-section--light[aria-labelledby="intro-h2"] {
    padding-top: 56px !important;
    background: linear-gradient(180deg, #f8f7f4 0%, #fffdfa 100%) !important;
  }

  .ge-lp-intro-wrap {
    padding: 28px 20px !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 36px rgba(10, 22, 41, .08) !important;
  }

  .ge-lp-intro__h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
    margin: 8px 0 12px !important;
  }

  .ge-lp-intro__text {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .ge-lp-steps-head,
  .ge-lp-faq-head,
  .ge-lp-section-head {
    margin-bottom: 28px !important;
  }

  .ge-lp-intro-wrap {
    max-width: 100% !important;
  }

  .ge-lp-step {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }

  .ge-lp-step__num {
    font-size: 26px !important;
    margin-bottom: 8px !important;
  }

  .ge-lp-step__title {
    font-size: 17px !important;
    line-height: 1.22 !important;
    margin-bottom: 6px !important;
  }

  .ge-lp-step__text {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .ge-lp-va-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 28px !important;
  }

  .ge-lp-va-item {
    padding: 18px 16px 16px !important;
    border-radius: 14px !important;
    gap: 14px !important;
  }

  .ge-lp-va-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }

  .ge-lp-va-title {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  .ge-lp-va-text {
    font-size: 13px !important;
    line-height: 1.58 !important;
  }

  .ge-lp-va-footer {
    margin-top: 28px !important;
  }

  .ge-lp-table-scroll {
    margin: 0 -20px !important;
    padding: 0 20px 4px !important;
  }

  .ge-price-table {
    min-width: 0 !important;
    display: block !important;
    border-radius: 14px !important;
  }

  .ge-price-table thead {
    display: none !important;
  }

  .ge-price-table tbody {
    display: grid !important;
    gap: 12px !important;
  }

  .ge-price-table tr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(201,168,106,.12) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .ge-price-table td {
    display: grid !important;
    grid-template-columns: minmax(110px, 42%) 1fr !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 11px 14px !important;
    border-bottom: 1px solid rgba(201,168,106,.08) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    background: transparent !important;
  }

  .ge-price-table td:last-child {
    border-bottom: 0 !important;
  }

  .ge-price-table td::before {
    content: attr(data-label);
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: rgba(201,168,106,.72) !important;
  }

  .ge-price-table td[data-label="Stadt"] {
    padding-top: 14px !important;
  }

  .ge-price-table td[data-label="Stadt"]::before {
    color: rgba(255,255,255,.42) !important;
  }

  .ge-lp-table-note {
    font-size: 10px !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
  }

  .ge-faq-list {
    gap: 10px !important;
  }

  .ge-faq-item {
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .ge-faq-q {
    min-height: 54px !important;
    padding: 16px 18px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .ge-faq-a {
    padding: 0 18px 16px !important;
  }

  .ge-faq-a p {
    font-size: 13px !important;
    line-height: 1.58 !important;
  }

  .ge-lp-cta-section {
    padding: 56px 0 !important;
  }

  .ge-lp-cta-wrap {
    padding: 28px 20px 30px !important;
    border-radius: 18px !important;
  }

  .ge-lp-cta__text {
    margin: 14px 0 22px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .ge-lp-cta-wrap .ge-lp-cta__btns,
  .ge-lp-cta__btns--stack-mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    justify-content: stretch !important;
  }

  .ge-lp-cta-wrap .ge-lp-cta__btns .ge-btn,
  .ge-lp-cta__btns--stack-mobile .ge-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
  }

  .ge-lp-cta-wrap .ge-lp-cta__btns > a,
  .ge-lp-cta__btns--stack-mobile > a {
    width: 100% !important;
  }
}
