/* =========================================================================
   Soumis Objektbetreuung – Stylesheet
   Heller, vertrauenswürdiger Look. Mobile-First. Grün/Blau als Akzent.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------------------- */
:root {
  --bg:             #ffffff;   /* Haupthintergrund */
  --bg-soft:        #f4f8f6;   /* Sektions-Wechsel (zartes Mint) */
  --bg-tint:        #eef5f1;   /* zusätzliche Tönung */
  --bg-card:        #ffffff;   /* Karten */
  --bg-footer:      #0f1b16;   /* dunkler Footer als Anker */

  --text-primary:   #0f1b14;   /* Haupttext */
  --text-secondary: #4b5563;   /* Sekundärtext */
  --text-muted:     #6b7280;   /* Mute */
  --text-on-dark:   #e7efe9;   /* Text auf dunklem Footer */

  --green:          #22c55e;
  --green-mid:      #16a34a;
  --green-dk:       #15803d;   /* für Text auf Weiß (AA-Kontrast) */
  --blue:           #3b82f6;
  --blue-mid:       #2563eb;
  --blue-dk:        #1d4ed8;

  --gradient-brand: linear-gradient(135deg, var(--green-mid) 0%, var(--blue-mid) 100%);
  --border:         rgba(15, 27, 20, 0.10);
  --border-soft:    rgba(15, 27, 20, 0.06);

  --shadow-sm:      0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow-md:      0 8px 24px -12px rgba(16, 24, 40, 0.18);
  --shadow-lg:      0 22px 48px -22px rgba(16, 24, 40, 0.28);

  --container:      1240px;
  --radius-card:    18px;
  --radius-pill:    999px;
  --radius-input:   10px;
  --section-pad:    96px;
  --header-h:       84px;

  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body:    "Manrope", "Inter", system-ui, -apple-system, sans-serif;
}

/* -------------------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(22, 163, 74, 0.15);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   3. Layout Helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(64px, 10vw, var(--section-pad)); }
.section--alt { background-color: var(--bg-soft); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-head p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(22, 163, 74, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(22, 163, 74, 0.55); }

.btn--secondary {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: #fff;
}
.btn--secondary:hover { border-color: var(--green-mid); color: var(--green-dk); transform: translateY(-2px); }

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

/* -------------------------------------------------------------------------
   5. Header / Navigation
   ------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.is-scrolled { border-bottom-color: var(--border-soft); box-shadow: var(--shadow-sm); }

.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__logo { height: 52px; width: auto; display: block; }
.footer .brand__logo { height: 60px; }
@media (max-width: 480px) { .brand__logo { height: 44px; } }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 28px; }
.nav__link { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); transition: color 0.15s ease; padding: 6px 0; }
.nav__link:hover { color: var(--green-dk); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -7px; }
.nav-toggle__bars::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 9vw, 104px));
  padding-bottom: clamp(56px, 9vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
/* Heller, frischer Verlauf. TODO (Inhaber): optional Foto eines gepflegten
   Objekts in /assets/hero.jpg ablegen und unten als background-image ergänzen. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(48% 50% at 12% 0%, rgba(34, 197, 94, 0.16), transparent 60%),
    radial-gradient(48% 50% at 92% 8%, rgba(59, 130, 246, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.hero__inner { max-width: 880px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.75rem, 11vw, 7rem);
  line-height: 0.92;
  margin: 18px 0;
}

.hero__subtitle { font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 700; margin-bottom: 16px; }
.hero__text { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary); max-width: 620px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.hero__trust svg { color: var(--green-dk); flex-shrink: 0; }

/* -------------------------------------------------------------------------
   7. Trust-Badge-Strip
   ------------------------------------------------------------------------- */
.badges { background: var(--bg-footer); }
.badges__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding-block: 26px;
}
.badge { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--text-on-dark); font-weight: 700; }
.badge svg { color: var(--green); flex-shrink: 0; }
.badge span { font-size: 0.98rem; }

/* -------------------------------------------------------------------------
   8. Cards (generic)
   ------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(22, 163, 74, 0.3); }

.icon-badge {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(59,130,246,0.14));
  color: var(--green-dk);
  margin-bottom: 20px;
}
.icon-badge svg { width: 28px; height: 28px; }

/* -------------------------------------------------------------------------
   9. Stats
   ------------------------------------------------------------------------- */
.stats-section { padding-block: clamp(44px, 7vw, 72px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 16px; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat__label { display: block; margin-top: 10px; color: var(--text-secondary); font-weight: 600; font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   10. Werte
   ------------------------------------------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.75rem;
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 8px;
}
.value-card p { color: var(--text-secondary); }

/* -------------------------------------------------------------------------
   11. Leistungen
   ------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.service-card > p { color: var(--text-secondary); margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; gap: 12px; align-items: flex-start; }
.service-list svg { color: var(--green-dk); flex-shrink: 0; margin-top: 3px; }
.service-list strong { font-weight: 700; }
.service-list span { color: var(--text-secondary); }

/* -------------------------------------------------------------------------
   12. USP
   ------------------------------------------------------------------------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.usp-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   13. Über uns
   ------------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.about__text h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase; line-height: 1.05; margin-bottom: 24px;
}
.about__text p { color: var(--text-secondary); margin-bottom: 16px; }
.about__media {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4 / 5; background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); text-align: center; padding: 24px;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(34,197,94,0.12), transparent 60%),
    radial-gradient(60% 60% at 80% 80%, rgba(59,130,246,0.12), transparent 60%);
}

/* -------------------------------------------------------------------------
   14. Ablauf
   ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding-top: 8px; z-index: 1; }
.step__num {
  font-family: var(--font-display); font-weight: 400; font-size: 3rem; line-height: 1;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 12px;
}
.step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.95rem; }
@media (min-width: 1025px) {
  .steps::before {
    content: ""; position: absolute; top: 32px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
    opacity: 0.45; z-index: 0;
  }
}

/* -------------------------------------------------------------------------
   15. Testimonials / Kundenstimmen
   ------------------------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { display: flex; flex-direction: column; gap: 18px; }
.testimonial__stars { display: flex; gap: 3px; color: #f5a623; }
.testimonial__quote { font-size: 1.05rem; color: var(--text-primary); line-height: 1.6; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; background: var(--gradient-brand);
}
.testimonial__name { font-weight: 700; font-size: 0.95rem; }
.testimonial__role { color: var(--text-muted); font-size: 0.85rem; }

/* -------------------------------------------------------------------------
   16. Einzugsgebiet / Service Area
   ------------------------------------------------------------------------- */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.area__text h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase; line-height: 1.05; margin-bottom: 16px;
}
.area__text p { color: var(--text-secondary); margin-bottom: 20px; }
.area__list { display: flex; flex-wrap: wrap; gap: 10px; }
.area__list li {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9rem;
}
.area__list svg { color: var(--green-dk); }
.area__map {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 16 / 11; box-shadow: var(--shadow-md);
  background:
    radial-gradient(50% 50% at 50% 45%, rgba(34,197,94,0.18), transparent 65%),
    var(--bg-soft);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 10px; color: var(--text-muted); text-align: center; padding: 24px;
}
.area__map svg { color: var(--green-dk); }
.area__map--live { padding: 0; display: block; }
.area__map--live iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.area__map-link { margin-top: 12px; font-size: 0.9rem; }
.area__map-link a { color: var(--green-dk); font-weight: 600; }
.area__map-link a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   16b. FAQ Accordion
   ------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  padding: 22px 24px;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  min-height: 44px;
}
.faq-item__icon { flex-shrink: 0; transition: transform 0.25s ease; color: var(--green-dk); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__a-inner { padding: 0 24px 24px; color: var(--text-secondary); }

/* -------------------------------------------------------------------------
   16c. Start-Hinweis (Eröffnung)
   ------------------------------------------------------------------------- */
.hero__announce {
  display: flex; width: fit-content; max-width: 100%; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(59,130,246,0.14));
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: var(--green-dk); font-weight: 800; font-size: 0.9rem;
  margin-bottom: 22px;
}
.hero__announce svg { flex-shrink: 0; }
.hero__announce .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero__announce .dot { animation: none; } }

/* Hinweis-Box (Kontakt) */
.start-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1));
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-input);
  padding: 14px 16px; margin-bottom: 24px;
}
.start-note svg { color: var(--green-dk); flex-shrink: 0; margin-top: 2px; }
.start-note strong { color: var(--text-primary); }
.start-note span { color: var(--text-secondary); font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   17. Kontakt
   ------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 56px); }
.contact-info h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase; line-height: 1.05; margin-bottom: 12px;
}
.contact-info > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__item .icon-badge { margin-bottom: 0; width: 48px; height: 48px; }
.contact-list__item .icon-badge svg { width: 22px; height: 22px; }
.contact-list dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; }
.contact-list dd { font-size: 1.2rem; font-weight: 700; }
.contact-list dd a:hover { color: var(--green-dk); }
.contact-list dd small { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); }

.form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.field .req { color: var(--green-dk); }
.field input, .field select, .field textarea {
  width: 100%; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-input); color: var(--text-primary);
  padding: 13px 14px; min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field--error input, .field--error select, .field--error textarea { border-color: #dc2626; }
.field__msg { display: none; color: #dc2626; font-size: 0.82rem; margin-top: 6px; }
.field--error .field__msg { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; accent-color: var(--green-mid); flex-shrink: 0; }
.consent label { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.consent a { color: var(--green-dk); text-decoration: underline; }

.form__success {
  display: none; background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.4); color: var(--green-dk);
  border-radius: var(--radius-input); padding: 14px 16px; margin-bottom: 18px; font-weight: 600;
}
.form__success.is-visible { display: block; }

/* -------------------------------------------------------------------------
   18. Footer (dunkler Anker)
   ------------------------------------------------------------------------- */
.footer { background: var(--bg-footer); color: var(--text-on-dark); padding-block: 64px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand p { color: rgba(231, 239, 233, 0.75); margin-top: 16px; max-width: 280px; }
.footer__col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(231,239,233,0.55); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(231, 239, 233, 0.8); font-size: 0.95rem; }
.footer__col a:hover { color: var(--green); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; color: rgba(231,239,233,0.8);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__social a:hover { color: var(--green); border-color: var(--green); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.88rem; color: rgba(231,239,233,0.6); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a:hover { color: var(--green); }

/* -------------------------------------------------------------------------
   19. Mobile Menu Overlay
   ------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 28px; padding: 24px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; letter-spacing: 0.03em; }
.mobile-menu a:not(.btn):hover { color: var(--green-dk); }
.mobile-menu .btn { font-family: var(--font-body); font-size: 1.05rem; }

/* -------------------------------------------------------------------------
   20. Floating Mobile CTA
   ------------------------------------------------------------------------- */
.fab { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; box-shadow: var(--shadow-lg); }

/* -------------------------------------------------------------------------
   21. Cookie Banner
   ------------------------------------------------------------------------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 20px 22px; max-width: 460px; box-shadow: var(--shadow-lg); display: none;
}
.cookie.is-visible { display: block; }
.cookie p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.cookie p a { color: var(--green-dk); text-decoration: underline; }
.cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie__actions .btn { min-height: 42px; padding: 0 20px; font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   22. Scroll Reveal (dezent)
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   23. Legal pages
   ------------------------------------------------------------------------- */
.legal { padding-top: calc(var(--header-h) + 64px); padding-bottom: 80px; }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 6vw, 3.5rem); text-transform: uppercase; margin-bottom: 32px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--text-secondary); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--green-dk); text-decoration: underline; }
.legal .note { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.3); border-radius: 12px; padding: 18px 20px; color: var(--text-primary); margin-bottom: 32px; }

/* -------------------------------------------------------------------------
   24. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .badges__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 900px) {
  .nav__list, .nav .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; aspect-ratio: 16 / 11; max-height: 360px; }
  .area { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .fab { display: inline-flex; }
  body { padding-bottom: 80px; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .badges__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .card { padding: 24px; }
}

/* -------------------------------------------------------------------------
   25. Reduced Motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
