/* ============================================================
   ALAY IMMOBILIEN – Premium Stylesheet
   Mobile-First · Dark Navy + Gold
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Palette */
  --navy:        #0f2744;
  --navy-mid:    #1a3d6b;
  --navy-light:  #1e4a80;
  --gold:        #b49450;
  --gold-light:  #c9aa6a;
  --gold-pale:   #f5edd8;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --gray-50:     #f7f8fa;
  --gray-100:    #eef0f4;
  --gray-300:    #c8cdd8;
  --gray-500:    #8892a4;
  --gray-700:    #3d4a5c;
  --text:        #1a2332;
  --text-muted:  #5a6880;

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --nav-h:    68px;
  --radius:   6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,39,68,.06);
  --shadow-sm: 0 2px 8px rgba(15,39,68,.08);
  --shadow-md: 0 6px 24px rgba(15,39,68,.12);
  --shadow-lg: 0 16px 48px rgba(15,39,68,.16);
  --shadow-xl: 0 24px 64px rgba(15,39,68,.20);

  /* Transitions */
  --ease:      cubic-bezier(.4, 0, .2, 1);
  --duration:  240ms;

  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap;
  min-height: 48px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(180,148,80,.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header / Navigation ──────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.99);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.nav__logo-text em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__logo:hover .nav__logo-text { color: var(--navy); }

/* Nav Links */
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .03em;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__link:hover {
  color: var(--navy);
  background: var(--gray-50);
}
.nav__link--cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  margin-left: .5rem;
}
.nav__link--cta:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
}
.nav__link--active { color: var(--navy); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  transition: background var(--duration) var(--ease);
}
.nav__toggle:hover { background: var(--gray-50); }
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vw, 7rem);
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(180,148,80,.4);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  background: rgba(180,148,80,.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__title-accent {
  color: var(--gold);
  display: block;
}

.hero__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: fit-content;
  width: 100%;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1.75rem;
}
.hero__metric:first-child { padding-left: 0; }
.hero__metric:last-child  { padding-right: 0; }

.hero__metric-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.hero__metric-num span {
  font-size: 1.2rem;
}

.hero__metric-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}

.hero__metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 16px; opacity: .4; }
}

/* ── Band ─────────────────────────────────────────────────── */
.band {
  background: var(--gold);
  padding-block: 1.1rem;
}
.band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.band__text {
  font-size: clamp(.8rem, 2vw, .9rem);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

/* ── Section Helpers ──────────────────────────────────────── */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--dark { background: var(--navy); }
.section--alt-light { background: var(--gray-50); }

.section__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section__label--light { color: var(--gold-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }

.section__sub {
  font-size: clamp(.9rem, 2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.75;
}
.section__sub--light { color: rgba(255,255,255,.65); }

/* ── Services (Leistungen) ────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service {
  background: var(--white);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.service:hover {
  background: var(--off-white);
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.service__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--duration) var(--ease);
}
.service:hover .service__num { color: var(--gold-pale); }

.service__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.service__icon svg {
  width: 100%;
  height: 100%;
}

.service__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  line-height: 1.35;
}

.service__text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.service__line {
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service:hover .service__line { transform: scaleX(1); }

/* ── Benefits (Vorteile) ──────────────────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.benefit:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(180,148,80,.3);
  transform: translateY(-4px);
}

.benefit__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.benefit__icon svg { width: 100%; height: 100%; }

.benefit h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.35;
}

.benefit p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

/* ── Process ──────────────────────────────────────────────── */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 2rem;
}

.process__track {
  position: absolute;
  top: 44px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  opacity: .3;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.process__bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.process__bubble span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.process__step:hover .process__bubble {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(180,148,80,.15);
}
.process__step:hover .process__bubble span { color: var(--navy); }

.process__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}
.process__step:hover .process__card {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

.process__card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.process__card p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Trust ────────────────────────────────────────────────── */
.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.trust__text .section__title { margin-bottom: 1.25rem; }
.trust__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.8;
}
.trust__text p:last-of-type { margin-bottom: 2rem; }

.trust__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(15,39,68,.08));
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact__items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}
.contact__item div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact__item strong {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.contact__item span,
.contact__item a {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.contact__item a:hover { color: var(--gold); }

/* Form */
.contact__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form__group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.form__group label span { color: var(--gold); }
.form__optional {
  font-size: .72rem;
  color: rgba(255,255,255,.35) !important;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form__group input,
.form__group textarea {
  padding: .8rem 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255,255,255,.06);
  transition: border-color var(--duration) var(--ease),
              background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  resize: vertical;
  width: 100%;
  min-height: 48px;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(180,148,80,.15);
}

.form__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .7rem;
}
.form__group--check input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  min-height: unset;
  cursor: pointer;
}
.form__group--check label {
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}
.form__group--check label a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #08192e;
  color: rgba(255,255,255,.65);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.footer__brand .footer__logo { margin-bottom: 1rem; display: inline-flex; }
.footer__brand p {
  font-size: .85rem;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,.45);
}

.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--duration) var(--ease);
  display: inline-block;
  padding-block: .1rem;
}
.footer__col a:hover { color: var(--gold); }
.footer__col li { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--duration) var(--ease);
}
.footer__legal-links a:hover { color: var(--gold); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2.5rem;
  padding: .5rem 0;
  min-height: 44px;
  transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
}
.legal__back:hover { gap: .75rem; color: var(--gold); }

.legal__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-100);
}
.legal__header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.legal__header p { color: var(--text-muted); font-size: .9rem; }

.legal__body { max-width: 760px; }
.legal__body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.legal__body h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.legal__body p {
  color: var(--text-muted);
  margin-bottom: .8rem;
  font-size: .93rem;
  line-height: 1.8;
}
.legal__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .8rem;
}
.legal__body ul li {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: .35rem;
}
.legal__body a { color: var(--navy); text-decoration: underline; }
.legal__body a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0;
  }
  .process__track { display: none; }
  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .process__bubble { flex-shrink: 0; }
  .process__card { flex: 1; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
}

/* ── ≤ 900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .trust__visual { order: -1; }
  .trust__svg { max-width: 300px; }
  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Hamburger-Menü */
  .nav__list {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
    z-index: 999;
  }
  .nav__list.open { display: flex !important; }
  .nav__list li { border-bottom: 1px solid var(--gray-100); }
  .nav__list li:last-child { border-bottom: none; }
  .nav__link {
    display: flex;
    padding: 1rem .5rem;
    font-size: 1.05rem;
    border-radius: 0;
    background: none !important;
    min-height: 56px;
  }
  .nav__link--cta {
    margin-left: 0;
    margin-top: 1rem;
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
    justify-content: center;
  }
  .nav__toggle { display: flex !important; }

  /* Hero */
  .hero__content { max-width: 100%; }
  .hero__metrics {
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1rem;
    max-width: 100%;
    justify-content: center;
  }
  .hero__metric { padding-inline: .75rem; flex: 1; min-width: 80px; }
  .hero__metric-divider { display: none; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn { width: 100%; max-width: 100%; }
  .hero__scroll { display: none; }

  /* Services: 1 Spalte */
  .services { grid-template-columns: 1fr; }

  /* Benefits: 1 Spalte */
  .benefits { grid-template-columns: 1fr; }

  /* Trust */
  .trust__inner { grid-template-columns: 1fr; }
  .trust__visual { display: none; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .hero__title { font-size: 1.9rem; line-height: 1.12; }
  .hero__metrics { padding: .85rem; gap: .5rem; }
  .hero__metric { padding-inline: .5rem; }
  .hero__metric-num { font-size: 1.5rem; }
  .hero__metric-label { font-size: .6rem; }
  .hero__badge { font-size: .65rem; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.25rem; }
  .contact__card { padding: 1.25rem 1rem; }

  .process__step { flex-direction: column; align-items: flex-start; }
  .process__bubble { align-self: flex-start; }

  .section { padding-block: 2.5rem; }
  .section__title { font-size: 1.6rem; }

  .service { padding: 1.5rem 1.25rem; }
  .benefit { padding: 1.5rem 1.25rem; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .nav__logo-text em { display: none; }
  .hero__title { font-size: 1.65rem; }
  .btn { padding: .75rem 1.25rem; font-size: .8rem; }
  .hero__metrics { display: none; }
  .hero__badge { font-size: .6rem; padding: .3rem .75rem; }
}

/* ── Touch: Hover deaktivieren ────────────────────────────── */
@media (hover: none) {
  .service:hover,
  .benefit:hover,
  .btn--gold:hover,
  .btn--primary:hover {
    transform: none;
    box-shadow: none;
  }
  .service:hover .service__line { transform: scaleX(0); }
}
