/* =========================================================
   Hildebrandt Objektservice — Premium Design System
   Natur · Immobilien · Premium Service
   ========================================================= */

:root {
  /* ---- Marke: tiefes Waldgrün + Anthrazit + warme Naturtöne ---- */
  --forest:       #1f6a45;   /* primäres Waldgrün */
  --forest-dark:  #164e33;
  --forest-deep:  #0f3823;
  --leaf:         #4f9e6a;   /* hellerer Akzent, sparsam */
  --leaf-soft:    #e7f2ea;   /* zarter grüner Tint */

  --anthracite:   #18222c;   /* dunkle Sektionen / Headings */
  --anthracite-2: #0e161d;

  /* ---- Warme Neutraltöne ---- */
  --cream:  #f8f5ee;
  --sand:   #efe9dc;
  --paper:  #fcfbf7;

  --ink:    #18222c;
  --body:   #47535f;
  --muted:  #79838f;
  --line:   #e8e3d7;
  --line-2: #eeeae0;
  --bg:     #ffffff;

  /* WhatsApp */
  --wa: #25d366;

  /* ---- Radien (differenziert) ---- */
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-btn: 15px;
  --r-sm: 12px;

  /* ---- Premium Schatten (weich, mehrschichtig) ---- */
  --sh-sm: 0 1px 2px rgba(24,34,44,.04), 0 2px 8px rgba(24,34,44,.05);
  --sh:    0 10px 24px -10px rgba(24,34,44,.14), 0 4px 10px -6px rgba(24,34,44,.08);
  --sh-lg: 0 30px 60px -22px rgba(24,34,44,.28), 0 14px 28px -14px rgba(24,34,44,.14);
  --sh-forest: 0 16px 34px -12px rgba(31,106,69,.42);

  --maxw: 1180px;
  --font-sans: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.72;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--forest-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--forest); }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; letter-spacing: -.025em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; }
h3 { font-size: 1.32rem; line-height: 1.25; letter-spacing: -.02em; }
p  { color: var(--body); }
section { position: relative; }
::selection { background: var(--forest); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(76px, 11vw, 148px) 0; }
.section--alt  { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--anthracite); color: #cdd5dd; }
.center { text-align: center; }
.narrow { max-width: 680px; margin-inline: auto; }

/* Eyebrow mit Premium-Linie */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--forest); border-radius: 2px; opacity: .7; }
.center .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--forest); border-radius: 2px; opacity: .7; }
.section-head { margin-bottom: 60px; }
.section-head h2 { max-width: 20ch; }
.center.section-head h2, .section-head.center h2 { margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 1.13rem; margin-top: 18px; line-height: 1.7; }
.section--dark .eyebrow { color: var(--leaf); }
.section--dark .eyebrow::before, .section--dark .eyebrow::after { background: var(--leaf); }
.section--dark h2 { color: #fff; }
.section--dark .section-head p { color: #9fabb6; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 26px; border-radius: var(--r-btn);
  border: 1.5px solid transparent; cursor: pointer; position: relative;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; transition: transform .22s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--sh-forest); }
.btn--primary:hover { background: var(--forest-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(31,106,69,.55); }
.btn--wa { background: var(--wa); color: #07351d; box-shadow: 0 14px 30px -12px rgba(37,211,102,.55); }
.btn--wa:hover { background: #20c15d; color: #07351d; transform: translateY(-3px); }
.btn--wa svg { width: 20px; height: 20px; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); color: var(--forest-dark); transform: translateY(-3px); box-shadow: var(--sh); }
.btn--light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-3px); }
.btn--lg { padding: 18px 32px; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,251,247,.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(24,34,44,.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 13px; font-weight: 800; color: var(--ink); font-size: 1.16rem; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__logo {
  width: 54px; height: 48px; flex: none;
  background: center / contain no-repeat url('../assets/logo-emblem.svg');
}
.footer .brand__logo { background-image: url('../assets/logo-emblem-light.svg'); }
.brand__name small { display: block; font-size: .7rem; font-weight: 600; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { color: var(--body); font-weight: 600; font-size: .97rem; padding: 10px 15px; border-radius: 10px; transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--forest-dark); background: var(--leaf-soft); }
.nav__links a.active { color: var(--forest-dark); }
.nav__cta { margin-left: 12px; padding: 12px 22px !important; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- HERO (Premium, dunkel) ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding: clamp(90px, 14vh, 160px) 0 clamp(70px, 10vh, 120px);
  background: linear-gradient(160deg, #10352a 0%, #16202b 58%, #0e161d 100%);
  color: #eaf1ec;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; opacity: .9; }
.hero__bg svg { width: 100%; height: 100%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(79,158,106,.28), transparent 60%),
    radial-gradient(900px 700px at 10% 100%, rgba(15,56,35,.55), transparent 60%),
    linear-gradient(180deg, rgba(14,22,29,.35) 0%, rgba(14,22,29,.55) 100%);
}
.hero__inner { max-width: 880px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); color: #eaf1ec;
  font-size: .86rem; font-weight: 600; letter-spacing: .01em; margin-bottom: 28px;
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(79,158,106,.25); }
.hero h1 { color: #fff; margin-bottom: 24px; max-width: 15ch; }
.hero h1 .hl { color: #7cc79a; }
.hero__lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #c5d0cb; max-width: 56ch; margin-bottom: 38px; line-height: 1.65; }
.hero__cta { margin-bottom: 40px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-weight: 600; font-size: .95rem; color: #eaf1ec;
}
.hero__chips svg { width: 18px; height: 18px; color: #7cc79a; flex: none; }

/* ---------- Trust-Strip ---------- */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 30px 0; }
.trustbar__item { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--ink); }
.trustbar__item svg { width: 26px; height: 26px; color: var(--forest); flex: none; }
.trustbar__item span small { display: block; font-weight: 500; font-size: .84rem; color: var(--muted); margin-top: 2px; }

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 34px 32px 32px; box-shadow: var(--sh-sm);
  transition: transform .32s cubic-bezier(.2,.7,.3,1), box-shadow .32s ease, border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--leaf));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 66px; height: 66px; border-radius: 18px; margin-bottom: 24px;
  background: var(--leaf-soft); color: var(--forest-dark);
  display: grid; place-items: center;
  transition: transform .32s cubic-bezier(.2,.7,.3,1), background .3s ease;
}
.card__icon svg { width: 34px; height: 34px; }
.card:hover .card__icon { transform: translateY(-3px) rotate(-4deg); background: var(--forest); color: #fff; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1rem; }
.card__list { margin-top: 20px; display: grid; gap: 11px; }
.card__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--body); }
.card__list svg { width: 18px; height: 18px; color: var(--forest); flex: none; margin-top: 3px; }
.card--feature { display: flex; flex-direction: column; }
.card__link { margin-top: 24px; font-weight: 700; color: var(--forest-dark); display: inline-flex; align-items: center; gap: 8px; }
.card__link svg { width: 17px; height: 17px; transition: transform .22s ease; }
.card:hover .card__link svg { transform: translateX(5px); }

/* ---------- Stats (Warum Kunden uns vertrauen) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 34px 28px; text-align: center; box-shadow: var(--sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.stat__ico { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 15px; background: var(--leaf-soft); color: var(--forest-dark); display: grid; place-items: center; }
.stat__ico svg { width: 28px; height: 28px; }
.stat__num { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; color: var(--forest); line-height: 1; letter-spacing: -.03em; }
.stat__label { margin-top: 10px; font-weight: 600; color: var(--ink); }
.stat__sub { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* ---------- Timeline (Ablauf) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.timeline::before {
  content: ""; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.tstep { position: relative; z-index: 1; text-align: center; padding: 0 10px; }
.tstep__num {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 24px;
  background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh);
  display: grid; place-items: center; position: relative;
  font-size: 1.6rem; font-weight: 800; color: var(--forest);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.tstep:hover .tstep__num { transform: translateY(-4px); background: var(--forest); color: #fff; box-shadow: var(--sh-forest); }
.tstep__badge { position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 10px; background: var(--forest); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-sm); }
.tstep__badge svg { width: 17px; height: 17px; }
.tstep h3 { margin-bottom: 8px; }
.tstep p { color: var(--muted); font-size: .98rem; max-width: 30ch; margin-inline: auto; }

/* ---------- Region-Karten ---------- */
.region-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 48px; }
.region-head .section-head { margin-bottom: 0; }
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.region-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 26px 22px; box-shadow: var(--sh-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.region-card__pin { width: 42px; height: 42px; border-radius: 12px; background: var(--leaf-soft); color: var(--forest-dark); display: grid; place-items: center; margin-bottom: 16px; }
.region-card__pin svg { width: 22px; height: 22px; }
.region-card h3 { font-size: 1.12rem; margin-bottom: 3px; }
.region-card span { font-size: .86rem; color: var(--muted); }

/* ---------- Feature Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { border-radius: var(--r-xl); aspect-ratio: 5 / 4; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.checklist { display: grid; gap: 16px; margin-top: 28px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.04rem; }
.checklist svg { width: 26px; height: 26px; color: var(--forest); flex: none; margin-top: 1px; }
.checklist b { color: var(--ink); }

/* ---------- Prose (SEO) ---------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose p { color: var(--body); font-size: 1.08rem; margin-bottom: 18px; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--leaf); }

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(155deg, #12392b 0%, #16202b 70%); color: #eaf1ec; padding: clamp(70px, 12vh, 130px) 0 clamp(56px, 8vh, 96px); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 82% -10%, rgba(79,158,106,.28), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: #c5d0cb; font-size: 1.16rem; max-width: 60ch; }
.page-hero .eyebrow { color: var(--leaf); }
.page-hero .eyebrow::before { background: var(--leaf); }
.crumbs { font-size: .88rem; color: #9fb0a8; margin-bottom: 20px; }
.crumbs a { color: #9fb0a8; }
.crumbs a:hover { color: #fff; }

/* ---------- CTA Band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--forest-dark) 0%, var(--anthracite) 62%, var(--anthracite-2) 100%); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(760px 460px at 84% -10%, rgba(79,158,106,.32), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.18rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 16px; }
.faq details { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease; }
.faq details[open] { box-shadow: var(--sh); border-color: transparent; }
.faq summary { cursor: pointer; padding: 24px 26px; font-weight: 700; font-size: 1.06rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--leaf-soft); color: var(--forest-dark); display: grid; place-items: center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.faq summary .chev svg { width: 18px; height: 18px; transition: transform .3s ease; }
.faq details[open] summary .chev { background: var(--forest); color: #fff; }
.faq details[open] summary .chev svg { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq details[open] .faq__a { max-height: 320px; }
.faq__a p { padding: 0 26px 24px; color: var(--muted); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.info-list { display: grid; gap: 20px; margin-top: 30px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--leaf-soft); color: var(--forest-dark); display: grid; place-items: center; flex: none; }
.info-item__icon svg { width: 24px; height: 24px; }
.info-item h4 { font-size: 1.04rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: .99rem; }
.info-item a:hover { color: var(--forest); }

.form { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--sh-lg); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(31,106,69,.13); background: #fff;
}
.field textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 16px; text-align: center; line-height: 1.6; }
.form__note a { text-decoration: underline; text-underline-offset: 2px; }
.form__ok { display: none; background: var(--leaf-soft); border: 1px solid #cfe6d7; color: var(--forest-deep); padding: 16px 18px; border-radius: var(--r-sm); font-weight: 600; margin-bottom: 20px; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 14px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--body); margin-bottom: 12px; line-height: 1.75; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 6px; }
.legal address { font-style: normal; line-height: 1.9; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--anthracite-2); color: rgba(255,255,255,.68); padding: 76px 0 30px; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--forest), var(--leaf)); }
.footer a { color: rgba(255,255,255,.68); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.footer .brand { color: #fff; margin-bottom: 20px; font-size: 1.3rem; }
.footer .brand__logo { width: 64px; height: 56px; }
.footer .brand__name small { color: rgba(255,255,255,.55); }
.footer__about { font-size: .96rem; line-height: 1.75; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 12px; font-size: .97rem; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.72); }
.footer__contact svg { width: 18px; height: 18px; color: var(--leaf); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .88rem; }
.footer__bottom nav { display: flex; gap: 20px; }

/* ---------- Floating Buttons ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 13px; }
.fab a { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-lg); color: #fff; transition: transform .2s ease; }
.fab a:hover { transform: scale(1.09); color: #fff; }
.fab a svg { width: 28px; height: 28px; }
.fab__wa { background: var(--wa); }
.fab__call { background: var(--forest); }

/* ---------- Reveal-Animationen (Progressive Enhancement) ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js [data-delay="1"] { transition-delay: .08s; }
.js [data-delay="2"] { transition-delay: .16s; }
.js [data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid--4, .stats { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 16px 24px 24px;
    gap: 4px; box-shadow: var(--sh); transform: translateY(-140%); transition: transform .3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 15px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: inline-flex; }
  .grid--3, .grid--4, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .grid--2, .stats { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__row { justify-content: flex-start; gap: 18px 28px; }
  .hero { min-height: auto; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .form { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card:hover, .stat:hover, .region-card:hover, .btn:hover { transform: none; }
}
