/* ============================================================
   MACHT PLATZ — Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  --green-brand: #2e7d32;   /* main brand green — matches logo */
  --green-hero:  #3e7a50;   /* hero background — muted sage green */
  --green-900: #0c1f0c;
  --green-800: #0d3321;
  --green-700: #2e7d32;
  --green-500: #43a047;
  --green-400: #66bb6a;
  --amber:     #e8960a;   /* slightly warmer, less vivid */
  --amber-dark:#a8700a;
  --amber-light: #fef3c7;
  --wa-green:  #25D366;
  --wa-dark:   #128C7E;
  --white:     #ffffff;
  --bg:        #ffffff;
  --bg-alt:    #f4fbf6;
  --text:      #1a2e1f;
  --text-muted:#4a6a55;
  --text-light:#7a9a82;
  --border:    #c8e6d0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 260ms ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline; } }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* --- Section defaults --- */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header--light .section-title,
.section-header--light .section-sub {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-tag--green {
  color: var(--green-400);
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7em 1.5em;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 0.9em 1.9em; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.btn--amber {
  background: var(--amber);
  color: #1a1200;
  box-shadow: 0 2px 12px rgba(245,158,11,0.35);
}
.btn--amber:hover {
  background: var(--amber-dark);
  box-shadow: 0 6px 20px rgba(245,158,11,0.45);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-green {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--border);
}
.btn--ghost-green:hover {
  background: var(--bg-alt);
  border-color: var(--green-500);
}

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,211,102,0.35);
}
.btn--wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.btn--dark {
  background: var(--green-900);
  color: var(--white);
}
.btn--dark:hover {
  background: #1a3a1a;
}

/* --- Scroll reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

.nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Text fallback if logo.png not present */
.nav__logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-brand);
  letter-spacing: -0.02em;
}
.nav__logo-text span { color: var(--amber); }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4em 0.8em;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--green-brand);
  background: var(--bg-alt);
}

.nav__cta {
  margin-left: auto;
  flex-shrink: 0;
  display: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__burger:hover { background: var(--bg-alt); }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.nav__mobile.is-open { max-height: 420px; }

.nav__mobile-link {
  display: block;
  padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-link:hover {
  color: var(--green-brand);
  background: var(--bg-alt);
}

.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem);
}

@media (min-width: 820px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: #8fbc9f;
  top: -120px; right: -100px;
  animation: blobDrift 18s ease-in-out infinite alternate;
  opacity: 0.3;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: #c9a87a;
  bottom: -80px; left: -60px;
  animation: blobDrift 24s ease-in-out infinite alternate-reverse;
  opacity: 0.22;
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(74,222,128,0.08); }
}

.hero__headline {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__accent {
  color: var(--amber);
  font-style: normal;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: scrollBounce 2s ease infinite;
  z-index: 1;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}

.service-card--featured {
  border-color: var(--green-700);
  box-shadow: 0 4px 24px rgba(21,94,54,0.12);
  background: linear-gradient(160deg, #f5fef8 0%, var(--white) 60%);
}

.service-card__badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 0 0 8px 8px;
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon--1 { background: #fff7e6; color: var(--amber-dark); }
.service-card__icon--2 { background: #f0fdf4; color: var(--green-700); }
.service-card__icon--3 { background: #f0f9ff; color: #0369a1; }

.service-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.service-card__title {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.service-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--bg-alt); }

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

@media (min-width: 820px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-card__icon {
  width: 44px; height: 44px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.process-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  flex: 1;
}

.process-step__num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-step__connector {
  display: none;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
}

@media (min-width: 820px) {
  .process__steps {
    flex-direction: row;
    align-items: flex-start;
  }
  .process-step__connector {
    display: flex;
    margin-top: 2.5rem;
  }
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-section {
  background: var(--green-900);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.ba-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 820px) {
  .ba-dual { grid-template-columns: 1fr 1fr; }
}

.ba-container {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vw, 430px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-lg);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-before {
  background: #1a1008;
  z-index: 1;
}

.ba-before img,
.ba-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-after {
  background: #e8f5e9;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0ms;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.ba-handle__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
}

.ba-handle__circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  color: var(--green-700);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ba-handle__circle:hover,
.ba-handle:active .ba-handle__circle {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transform: scale(1.08);
}

/* Labels */
.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  pointer-events: none;
}

.ba-label--before {
  right: 1rem;
  background: rgba(30,15,8,0.65);
  color: rgba(220,170,120,0.9);
  border: 1px solid rgba(200,150,100,0.25);
}

.ba-label--after {
  left: 1rem;
  background: rgba(21,94,54,0.75);
  color: rgba(200,240,210,0.95);
  border: 1px solid rgba(74,222,128,0.2);
}

/* Hint */
.ba-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  background: rgba(12,31,12,0.75);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4em 1em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-alt); }

.contact__inner {
  display: grid;
  gap: 3rem 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; }
}

.contact__left .section-title { color: var(--text); }
.contact__left > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.02rem; line-height: 1.65; }

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-opt:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-opt--wa { border-color: rgba(37,211,102,0.35); background: #f0fdf4; }
.contact-opt--wa:hover { border-color: var(--wa-green); background: #e6faf0; }

.contact-opt__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-brand);
  flex-shrink: 0;
}
.contact-opt--wa .contact-opt__icon { background: rgba(37,211,102,0.15); color: var(--wa-dark); }

.contact-opt__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-opt__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.1rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(21,94,54,0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a6a4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.25rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-700);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--amber);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 820px) {
  .final-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.final-cta__text h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: #1a1200;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.final-cta__text p {
  font-size: 1rem;
  color: rgba(26,18,0,0.65);
}

.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f0f7f2;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1.5px solid var(--border);
}

.footer__inner {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__legal { grid-column: 1 / -1; }
}

@media (min-width: 1000px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr auto; }
  .footer__legal { grid-column: auto; }
}

.footer__logo {
  display: block;
  margin-bottom: 0.75rem;
}
.footer__logo img {
  height: 48px;
  width: auto;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a,
.footer__contact a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--green-brand); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer__legal a,
.footer__legal span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.footer__legal a:hover { color: var(--green-brand); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition);
  pointer-events: none;
}

.wa-fab.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.wa-fab:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transform: scale(1.06) !important;
}

.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: fabPulse 2.5s ease infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   ABOUT — Wer sind wir?
   ============================================================ */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 820px) {
  .about__inner { grid-template-columns: 1fr 1.35fr; gap: 4rem; }
}

.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  width: 100%;
  background: var(--bg-alt);
  border: 2px dashed var(--border);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
}
.about__photo-placeholder svg { opacity: 0.5; }
.about__photo-placeholder span { font-weight: 600; font-size: 0.95rem; }
.about__photo-placeholder small { font-size: 0.8rem; opacity: 0.7; }

.about__text .section-tag { margin-bottom: 0.75rem; }
.about__text .section-title { margin-bottom: 1.25rem; text-align: left; }

.about__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__text p:last-of-type { margin-bottom: 1.5rem; }

/* ============================================================
   REVIEWS — Google Bewertungen
   ============================================================ */
.reviews { background: var(--bg-alt); }

.reviews__rating-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reviews__score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.reviews__stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.reviews__stars {
  font-size: 1.5rem;
  color: #fbbc04;
  letter-spacing: 0.05em;
}

.reviews__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews__google-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-card__info { flex: 1; min-width: 0; }

.review-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.review-card__source {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.1rem;
}

.review-card__stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.reviews__cta {
  text-align: center;
  margin-top: 0.5rem;
}

