/* ============================================
   Hartung Immobilien & Werte - Globale Styles
   Markenfarben: Gold (#C58727) / Anthrazit (#3D3A3A)
   ============================================ */

:root {
  --gold: #C58727;
  --gold-dark: #A06D1E;
  --gold-light: #FAF1E1;
  --gold-soft: #F8EDD4;
  --gold-glow: rgba(197, 135, 39, 0.35);
  --dark: #3D3A3A;
  --dark-soft: #5C5858;
  --gray-500: #8E8A8A;
  --gray-300: #BFBAB6;
  --gray-200: #E6E2DF;
  --gray-100: #F2EFEC;
  --gray-50: #FAF8F6;
  --white: #FFFFFF;
  --success: #2E7D32;
  --danger: #C62828;
  --shadow-sm: 0 4px 12px rgba(61, 58, 58, 0.06);
  --shadow: 0 8px 32px rgba(61, 58, 58, 0.08);
  --shadow-lg: 0 16px 48px rgba(61, 58, 58, 0.14);
  --shadow-xl: 0 24px 64px rgba(61, 58, 58, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max: 1180px;
  --max-narrow: 760px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
}

h1 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2.2vw, 24px); font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }

p { color: var(--dark-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-head p { font-size: 17px; margin-top: 16px; }

.accent { color: var(--gold-dark); }
.text-gold { color: var(--gold-dark); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  padding: 9px 24px;
  text-align: center;
}
.announcement-bar a {
  color: var(--gold);
  font-weight: 600;
  margin-left: 6px;
}
.announcement-bar a:hover { color: #fff; }
.announcement-bar .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
@media (max-width: 600px) {
  .announcement-bar { font-size: 12px; padding: 8px 16px; }
}

/* ============================================
   HEADER / NAVIGATION
   (Styles werden inline pro Seite definiert,
    damit alle Seiten 1:1 identisch sind.
    Keine konkurrierenden Regeln hier!)
   ============================================ */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(197, 135, 39, 0.28);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::after {
  width: 320px;
  height: 320px;
}

.btn:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 135, 39, 0.42);
}

.btn > * { position: relative; z-index: 1; }

.btn-lg { padding: 20px 38px; font-size: 18px; }
.btn-block { display: flex; width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--gray-300);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(61, 58, 58, 0.25);
}
.btn-dark:hover { background: #2a2828; color: var(--white); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); color: #fff; border-color: #fff; }

/* ============================================
   HERO - Modernized
   ============================================ */
.hero {
  position: relative;
  padding: 70px 0 110px;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, var(--gold-light) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(197, 135, 39, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #FAF8F6 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
  animation: heroOrb 18s ease-in-out infinite;
}
@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 { margin-bottom: 22px; }
.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-content .lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--dark-soft);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-cta-row .micro {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
  width: 100%;
}

/* Hero Mini-Funnel Card */
.hero-funnel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.hero-funnel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.hero-funnel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-funnel-badge {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-funnel h3 {
  font-size: 21px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.hero-funnel .funnel-sub {
  font-size: 14px;
  color: var(--dark-soft);
  margin-bottom: 22px;
}

.funnel-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}
.funnel-progress span {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.funnel-progress span.active { background: var(--gold); }

.funnel-step { display: none; }
.funnel-step.active { display: block; animation: fadeSlideIn 0.4s var(--ease); }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.funnel-option {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.funnel-option:hover { border-color: var(--gold); background: var(--gold-light); }
.funnel-option.selected { border-color: var(--gold); background: var(--gold-light); color: var(--gold-dark); }
.funnel-option .icon { font-size: 24px; line-height: 1; }

.funnel-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}
.funnel-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 135, 39, 0.12);
}

.funnel-trust {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.funnel-trust span { display: inline-flex; align-items: center; gap: 4px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-funnel { max-width: 480px; margin: 0 auto; }
}

/* ============================================
   TRUST BAR (Logos / Networks)
   ============================================ */
.trust-bar {
  padding: 36px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.trust-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-soft);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-logo:hover { opacity: 1; }
.trust-logo .star { color: #FFB400; }
@media (max-width: 768px) {
  .trust-bar-inner { justify-content: center; }
  .trust-bar-logos { justify-content: center; gap: 24px; }
}

/* ============================================
   STATS / NUMBER COUNTER
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat {
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.stat:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }
.stat-num {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--dark-soft);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   USP / FEATURE-GRID
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.usp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 0.4s var(--ease);
}

.usp-card:hover::before { transform: translateX(-50%) scaleX(1); }
.usp-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.usp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-soft) 100%);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.usp-card:hover .usp-icon { transform: scale(1.08) rotate(-4deg); }

.usp-card h3 { font-size: 18px; margin-bottom: 8px; }
.usp-card p { font-size: 15px; color: var(--dark-soft); }

/* ============================================
   PROCESS STEPS - 3-step Visualisation
   ============================================ */
.process {
  background: var(--gray-50);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(197, 135, 39, 0.35);
  border: 6px solid var(--gray-50);
  position: relative;
}
.process-num::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold);
  opacity: 0.3;
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 15px; color: var(--dark-soft); max-width: 280px; margin: 0 auto; }
.process-step .step-time {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}

/* ============================================
   COMPARE - Makler vs Privatverkauf
   ============================================ */
.compare {
  background: var(--white);
}
.compare-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.compare-col {
  padding: 40px 36px;
  position: relative;
}
.compare-col.privat { background: #fff; }
.compare-col.makler {
  background: linear-gradient(160deg, #3D3A3A 0%, #2a2828 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.compare-col.makler::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}
.compare-col.makler > * { position: relative; z-index: 1; }
.compare-col h3 {
  font-size: 22px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col.makler h3 { color: #fff; }
.compare-col .compare-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 500;
}
.compare-col.makler .compare-sub { color: rgba(255, 255, 255, 0.65); }

.compare-list { list-style: none; }
.compare-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 15px;
  align-items: flex-start;
}
.compare-col.makler .compare-list li { border-bottom-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.92); }
.compare-list li:last-child { border-bottom: none; }
.compare-list .ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.ico-bad { background: rgba(198, 40, 40, 0.12); color: var(--danger); }
.ico-good { background: var(--gold); color: #fff; }

.compare-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .compare-card { grid-template-columns: 1fr; }
}

/* ============================================
   LEISTUNGEN
   ============================================ */
.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--gold); transform: rotate(-5deg) scale(1.08); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 16px; }
.service-card .service-link {
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap 0.2s ease;
}
.service-card:hover .service-link { gap: 12px; color: var(--gold); }

/* ============================================
   FUNNEL-CTA / SELLER-SECTION
   ============================================ */
.seller-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2828 50%, #1f1d1d 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 70px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seller-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroOrb 22s ease-in-out infinite reverse;
}
.seller-cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 135, 39, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.seller-cta > * { position: relative; z-index: 1; }

.seller-cta h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(28px, 4vw, 44px); }
.seller-cta p { color: rgba(255, 255, 255, 0.85); font-size: 18px; max-width: 620px; margin: 0 auto 32px; }

.seller-cta .btn { background: var(--gold); }
.seller-cta .btn:hover { background: var(--gold-dark); }

.seller-cta .micro {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT - Eileen
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-light) 100%);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.about-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-photo-badge .rating { color: #FFB400; font-size: 16px; }
.about-photo-badge .num { font-weight: 800; font-size: 18px; color: var(--dark); line-height: 1; }
.about-photo-badge .sub { font-size: 11px; color: var(--gray-500); }

.about-signatures {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.about-sig {
  flex: 1;
  min-width: 140px;
}
.about-sig .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.about-sig .label { font-size: 13px; color: var(--dark-soft); margin-top: 4px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

.testimonial .rating { color: #FFB400; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial blockquote {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial blockquote::before { content: '"'; font-size: 40px; color: var(--gold); line-height: 0.7; vertical-align: -12px; font-family: Georgia, serif; }

.testimonial .author { font-weight: 700; color: var(--dark); font-size: 14px; }
.testimonial .author-role { font-size: 13px; color: var(--gray-500); }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--gray-50); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner { padding: 0 28px 24px; color: var(--dark-soft); font-size: 15.5px; }

.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 24px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-info-list .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-soft) 100%);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 20px;
}

.contact-info-list .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-list .value { font-size: 16px; color: var(--dark); font-weight: 500; }
.contact-info-list a.value { color: var(--gold-dark); }
.contact-info-list a.value:hover { color: var(--gold); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Response promise box under contact */
.response-promise {
  margin-top: 28px;
  padding: 20px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.response-promise .ico { font-size: 26px; }
.response-promise strong { color: var(--gold-dark); display: block; margin-bottom: 4px; }
.response-promise span { font-size: 14px; color: var(--dark); }

/* ============================================
   FORMS
   ============================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.form-card-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 135, 39, 0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-soft);
  line-height: 1.5;
}

.form-checkbox input { margin-top: 3px; flex-shrink: 0; }

.form-success {
  display: none;
  padding: 24px;
  background: #E8F5E9;
  color: var(--success);
  border-radius: var(--radius);
  border: 1px solid #A5D6A7;
  text-align: center;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 24px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p { color: rgba(255, 255, 255, 0.65); margin-bottom: 18px; max-width: 320px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STICKY MOBILE-CTA - Dual Action
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 10px 12px;
  box-shadow: 0 -8px 24px rgba(61, 58, 58, 0.1);
  gap: 8px;
}
.sticky-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  box-shadow: none;
}
.sticky-cta .btn-call {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--gray-300);
  flex: 0 0 56px;
  padding: 14px;
}
.sticky-cta .btn-call:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

@media (max-width: 768px) {
  .sticky-cta { display: flex; align-items: center; }
  body { padding-bottom: 76px; }
}

/* ============================================
   FLOATING WHATSAPP / PHONE
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(197, 135, 39, 0.45);
  transition: all 0.25s ease;
  font-size: 22px;
  position: relative;
}
.floating-btn:hover { transform: scale(1.1); color: #fff; }
.floating-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: floatPulse 2.4s ease-out infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 768px) {
  .floating-actions { display: none; }
}

/* ============================================
   KARRIERE-SPEZIFISCHE STYLES
   ============================================ */
.calc-card {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin: 32px 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 16px;
}

.calc-row.total {
  border-bottom: none;
  border-top: 2px solid var(--gold);
  margin-top: 12px;
  padding-top: 18px;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }
.mb-2 { margin-bottom: 32px; }
.hidden { display: none; }

.pill {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.pill-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
