/* ============================================================
   Sauber Heim Service — style.css
   Fără CSS inline în HTML; CSP-ul poate rămâne strict.
   ============================================================ */

/* ---------- Fonturi self-hostate (DSGVO: fără request-uri Google) ---------- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}

/* ---------- Variabile & bază ---------- */
:root {
  --navy: #0d2240;
  --blue: #1565c0;
  --sky: #1e88e5;
  --light: #e3f2fd;
  --white: #ffffff;
  --gray: #f5f7fa;
  --text: #1a1a2e;
  --muted: #51606f;
  --accent: #00b4d8;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

/* Focus vizibil pe orice element interactiv (accesibilitate) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Link de salt pentru cititoare de ecran / tastatură */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 300;
  border-radius: 0 0 12px 0;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Navigație ---------- */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 34, 64, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-img {
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a[aria-current="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

/* Meniu hamburger: checkbox hack → funcționează și fără JS */
.nav-toggle-input { position: absolute; opacity: 0; width: 44px; height: 44px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle-input:focus-visible + .nav-toggle {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-toggle-input:checked ~ .nav-links { max-height: 320px; }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-cta { padding: 9px 16px; font-size: 0.82rem; }
}

/* pe ecrane înguste rămân doar iconița + CTA, ca „Kostenloses Angebot" să încapă */
@media (max-width: 480px) {
  .nav-logo-text { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a3060 55%, #0d4a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}
/* forme decorative subtile */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14), transparent 65%);
}
.hero::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.16), transparent 65%);
}
.hero-content { position: relative; z-index: 1; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.hero-logo img {
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}
.hero-badge {
  display: inline-block;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #7adcf0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.45);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); }

/* ---------- Secțiuni generice ---------- */
section { padding: 100px 5%; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}
.section-title span { color: var(--sky); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 16px;
}

/* ---------- Über uns ---------- */
.about { background: var(--gray); }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}
.about-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.about-badge-overlay span {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
}
.about-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}
.contact-inline { margin-top: 36px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-item-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 2px; }
.contact-item a { color: var(--blue); text-decoration: none; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

/* ---------- Leistungen ---------- */
.services { background: #fff; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 16px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(21, 101, 192, 0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--blue); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.service-card p + p { margin-top: 10px; }
.service-card p strong { color: var(--navy); }

/* ---------- Proces în 3 pași + zonă de acoperire ---------- */
.process { background: var(--light); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 16px auto 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.process-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(21, 101, 192, 0.1);
}
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }
.process-area {
  margin-top: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 36px;
}
.process-area-text { display: flex; align-items: flex-start; gap: 18px; }
.process-area-text > svg { width: 34px; height: 34px; color: var(--accent); flex-shrink: 0; }
.area-map {
  width: 100%;
  max-width: 440px;
  height: auto;
  justify-self: center;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.process-area h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.process-area p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

/* ---------- Galerie ---------- */
.gallery { background: var(--navy); }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-header .section-label { color: #4cc9e8; }
.gallery-header .section-title { color: #fff; }
.gallery-header .section-sub { color: rgba(255, 255, 255, 0.68); margin: 16px auto 0; }

.ba-section { margin-bottom: 64px; }
.ba-section:last-child { margin-bottom: 0; }
.ba-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Fără JS: cele două imagini stau una lângă alta (degradare elegantă) */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.ba-half { border-radius: var(--radius); overflow: hidden; position: relative; margin: 0; }
.ba-half img { width: 100%; height: 380px; object-fit: cover; }
.ba-half figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ba-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}
.tag-before { background: #c03a20; color: #fff; }
.tag-after { background: #007a99; color: #fff; }

/* Cu JS: slider interactiv de comparație */
.ba-compare--slider { display: block; }

.ba-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 640px;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider .ba-img-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.ba-slider-handle svg { width: 22px; height: 22px; color: var(--navy); }
.ba-slider .ba-corner-tag { position: absolute; top: 14px; z-index: 2; }
.ba-slider .tag-before { left: 14px; }
.ba-slider .tag-after { right: 14px; }
/* range transparent peste toată imaginea: drag + tastatură + touch nativ */
.ba-slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.ba-slider-range:focus-visible ~ .ba-slider-handle {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.ba-caption {
  max-width: 640px;
  margin: 14px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* ---------- Citate / De ce noi ---------- */
.quotes { background: var(--light); }
.quotes-inner { max-width: 1100px; margin: 0 auto; }
.quotes-header { text-align: center; margin-bottom: 56px; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5rem;
  color: var(--light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
}
.quote-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ---------- Banda CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 90px 5%;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Kontakt + formular ---------- */
.contact { background: var(--gray); }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title { margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-big-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-big-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-big-card .icon-box svg { width: 24px; height: 24px; color: var(--blue); }
.contact-big-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-big-card a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.contact-big-card a:hover { color: var(--blue); text-decoration: underline; }

.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--muted); margin-bottom: 32px; font-size: 0.95rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(21, 101, 192, 0.18);
  border-radius: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] { border-color: #b3261e; }
.field-error {
  display: none;
  color: #b3261e;
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 500;
}
.field-error.visible { display: block; }

/* honeypot: invizibil pentru oameni, „vizibil" pentru boți */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-group { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; }
.consent-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.consent-group label { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.consent-group a { color: var(--blue); }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

/* mesaje de status formular */
.form-status { margin-top: 18px; border-radius: 14px; padding: 18px 20px; display: none; }
.form-status.visible { display: block; }
.form-status.success { background: #e6f6ee; border: 1px solid #9adbb8; color: #14532d; }
.form-status.error { background: #fdecea; border: 1px solid #f0b6b0; color: #7f1d1d; }
.form-status p { font-size: 0.92rem; line-height: 1.6; }
.form-status a { color: inherit; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); padding: 60px 5% 30px; text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.footer-legal { display: flex; gap: 24px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255, 255, 255, 0.8); font-size: 0.88rem; text-decoration: none; }
.footer-legal a:hover { color: var(--accent); text-decoration: underline; }
.footer-divider { border: none; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 28px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Butoane flotante (doar mobil) ---------- */
.floating-actions {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.floating-btn svg { width: 26px; height: 26px; }
.floating-btn.tel { background: var(--blue); color: #fff; }
.floating-btn.whatsapp { background: #128c4b; color: #fff; }
@media (max-width: 860px) {
  .floating-actions { display: flex; }
}

/* ---------- Pagini legale (Impressum / Datenschutz) ---------- */
.legal-main { max-width: 780px; margin: 0 auto; padding: 150px 5% 80px; }
.legal-main h1 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 32px;
}
.legal-main h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin: 36px 0 14px;
}
.legal-main h3 { color: var(--navy); font-size: 1.05rem; margin: 24px 0 10px; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
.legal-main ul { padding-left: 22px; margin-bottom: 12px; }
.legal-main a { color: var(--blue); }
.legal-note {
  background: var(--light);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
}

/* ---------- Micro-animații (dezactivate fără JS și la reduced-motion) ---------- */
.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .js .fade-in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  section { padding: 72px 5%; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .ba-compare { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-area { grid-template-columns: 1fr; padding: 28px 24px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-logo img { width: 150px; height: 150px; }
  .about-img-wrap img { height: 280px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
