/* =========================================================
   Design Tokens
   ========================================================= */
:root {
  /* Brand */
  --green-50:  #EEF4EB;
  --green-100: #D9E7D2;
  --green-300: #A6C49A;
  --green-500: #7FA17A;   /* primary sage */
  --green-600: #6E8F69;
  --green-700: #556F50;

  /* Neutrals */
  --bg:        #F7F6F0;   /* warm cream */
  --bg-alt:    #F2F1EA;
  --surface:   #FFFFFF;
  --ink:       #1E2218;
  --ink-soft:  #44483D;
  --muted:     #7A7E72;
  --line:      #E4E2D6;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;

  /* Layout */
  --container: 1140px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(30, 34, 24, .04);
  --shadow:    0 10px 30px rgba(30, 34, 24, .08);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(127,161,122,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(127,161,122,.08), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--surface); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
  font-weight: 600;
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section__head p { font-size: 1.05rem; }
.text-accent { color: var(--green-600); font-style: italic; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(127,161,122,.35);
}
.btn--primary:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(127,161,122,.45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--surface); }

/* =========================================================
   Header (floating pill)
   ========================================================= */
.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  padding: 0 16px;
  margin-top: 18px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(30,34,24,.04),
    0 10px 30px rgba(30,34,24,.10);
}
.nav > * { position: relative; z-index: 1; }

/* Fallback if backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: #FFFFFF; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.logo__mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-300), var(--green-600));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .85rem;
}
.nav__menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: .94rem;
}
.nav__menu-extras { display: none; }
.nav__menu a { color: var(--ink-soft); transition: color .2s; }
.nav__menu a:hover { color: var(--green-600); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang {
  font-size: .85rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.menu-toggle { display: none; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--surface);
  gap: 2px;
}
.lang-toggle button {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.lang-toggle button.is-active {
  background: var(--green-500);
  color: #fff;
}

@media (max-width: 880px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px); left: 12px; right: 12px;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(30,34,24,.18);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
  }
  .nav__menu.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu li { width: 100%; }
  .nav__menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 500;
    transition: background .2s, color .2s;
  }
  .nav__menu a:hover,
  .nav__menu a:focus { background: var(--green-50); color: var(--green-700); }
  .nav__menu .nav__menu-extras {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
  }
  .nav__menu .nav__menu-extras .lang-toggle { align-self: center; margin: 0; }
  .nav__menu .nav__menu-extras .btn { 
    justify-content: center; 
    width: auto; 
    flex: 1;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 6px 14px;
    font-size: .85rem;
  }
  .menu-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: none;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    position: relative;
  }
  .menu-toggle span::before { position: absolute; top: -6px; }
  .menu-toggle span::after  { position: absolute; top:  6px; }
  .nav__cta-text { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  max-width: 650px;
}
.hero__tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 22px;
  border: 1px solid var(--green-100);
}
.hero h1 .accent { color: var(--green-600); }
.hero__lead {
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
  padding-bottom: 12%;
}
.hero__media-bg {
  position: absolute;
  inset: 8% 6% 12% 6%;
  background: linear-gradient(160deg, #C8EAB0 0%, #A8DC8F 100%);
  border-radius: 22px;
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 110%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateY(-15px);
}
.hero__badge {
  position: absolute;
  right: -10px; bottom: 30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: .82rem;
  line-height: 1.2;
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 380px; margin: 0 auto; }
}

/* =========================================================
   Video block
   ========================================================= */
.video {
  display: flex;
  justify-content: center;
  margin: -20px 0 60px;
}
.video__frame {
  width: min(720px, 100%);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2d3128, #4a5142);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video__play {
  position: absolute; inset: 0; margin: auto;
  width: 76px; height: 76px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .25s;
}
.video__play:hover { transform: scale(1.08); }
.video__play::before {
  content: "";
  width: 0; height: 0;
  border-left: 20px solid var(--green-600);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* =========================================================
   Long-text block
   ========================================================= */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--ink-soft);
}
.prose p { margin-bottom: 1.1em; }
.prose ol { padding-left: 22px; }
.prose ol li { margin-bottom: .6em; }
.prose .cta-row { text-align: center; margin-top: 30px; }

/* =========================================================
   Stats
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.stats__title h2 { margin-bottom: 0; }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-600);
  font-weight: 600;
}
.stat__label {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr 1fr; text-align: center; }
  .stats__title { grid-column: 1 / -1; text-align: center; margin-bottom: 10px; }
}

/* =========================================================
   Service tabs / cards
   ========================================================= */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid transparent;
}
.tab.is-active {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.service-card__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-100), var(--green-300));
  position: relative;
  overflow: hidden;
}
.service-card__media svg { width: 100%; height: 100%; }
.service-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem;
}
.service-card ul {
  list-style: none;
  padding: 0; margin: 18px 0 24px;
}
.service-card li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.service-card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-100);
  border: 3px solid var(--green-500);
}
@media (max-width: 880px) {
  .service-card { grid-template-columns: 1fr; padding: 24px; }
}

/* =========================================================
   Testimonials Slider
   ========================================================= */
.slider {
  position: relative;
  margin: 0 -8px;
}
.slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 8px 8px;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green-100);
  line-height: 1;
}
.testimonial p { position: relative; z-index: 1; font-size: .96rem; }
.testimonial__author {
  margin-top: 18px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.testimonial__role {
  font-size: .82rem;
  color: var(--muted);
}

.slider__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}
.slider__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.slider__btn:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateY(-1px);
}
.slider__dots {
  display: flex;
  gap: 8px;
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background .2s, width .2s;
}
.slider__dot.is-active {
  background: var(--green-500);
  width: 22px;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .testimonial { flex: 0 0 88%; }
}
@media (min-width: 881px) and (max-width: 1080px) {
  .testimonial { flex: 0 0 calc((100% - 24px) / 2); }
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.cta-banner__intro {
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 8px;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.cta-banner h2 em {
  font-style: italic;
  color: var(--green-600);
}
@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; text-align: left; }
}

/* =========================================================
   Vorteile (benefits) – polished card grid
   ========================================================= */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  position: relative;
  text-align: left;
  padding: 30px 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(30,34,24,.04);
  transition: transform .45s cubic-bezier(.22,.8,.36,1),
              box-shadow .45s ease,
              border-color .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 80% at 0% 0%, rgba(127,161,122,.10), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.benefit::after {
  content: attr(data-step);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--green-100);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  transition: color .35s ease, transform .35s ease;
}
.benefit:hover {
  transform: translateY(-8px);
  background: var(--surface);
  border-color: var(--green-300);
  box-shadow: 0 22px 50px rgba(30,34,24,.10);
}
.benefit:hover::before { opacity: 1; }
.benefit:hover::after { color: var(--green-300); transform: scale(1.05); }

.benefit__icon {
  width: 56px; height: 56px;
  margin: 0 0 22px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--green-100), var(--green-50));
  display: grid; place-items: center;
  color: var(--green-700);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(127,161,122,.25);
  transition: transform .45s cubic-bezier(.22,.8,.36,1),
              background .35s ease,
              color .35s ease;
}
.benefit:hover .benefit__icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(140deg, var(--green-500), var(--green-600));
  color: #fff;
}
.benefit h3 {
  font-size: 1.08rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.benefit p { font-size: .94rem; line-height: 1.6; margin: 0; }

@media (max-width: 1080px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; gap: 16px; } }

/* =========================================================
   Steps timeline
   ========================================================= */
.steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--green-100);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 14px 0 30px;
  position: relative;
}
.step__num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
}
.step h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step p { font-size: .95rem; margin: 0; }
.steps + .cta-row { text-align: center; margin-top: 20px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  gap: 20px;
}
.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green-600);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq__item.is-open .faq__q::after { content: "\2013"; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--ink-soft);
  font-size: .96rem;
}
.faq__a-inner { padding: 0 0 20px; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* =========================================================
   Location
   ========================================================= */
.location {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.location__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-50);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.9) hue-rotate(-5deg);
}
.location__map-link {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(255,255,255,.95);
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.location__map-link:hover { color: var(--green-600); }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-300);
  box-shadow: var(--shadow);
}
.contact-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card h4 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}
.contact-card p { margin: 0; font-size: .88rem; word-break: break-word; }

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; gap: 24px; }
  .location__map { aspect-ratio: 16/12; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: var(--muted);
}
.site-footer__links {
  display: flex; gap: 22px; list-style: none; padding: 0; margin: 0;
}
.site-footer__links a:hover { color: var(--green-600); }
.site-footer__social {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.site-footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: transform .2s, color .2s, border-color .2s, background .2s;
}
.site-footer__social a:hover {
  color: #fff;
  background: var(--green-500);
  border-color: var(--green-500);
  transform: translateY(-2px);
}

/* About-section social bar */
.about__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.about__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about__social a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(127,161,122,.35);
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal {
  padding: 80px 0 100px;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.legal h1 { margin-bottom: 30px; }
.legal h2 { font-size: 1.4rem; margin-top: 40px; font-family: var(--font-sans); font-weight: 600; }
.legal h3 { font-size: 1.1rem; margin-top: 26px; font-family: var(--font-sans); font-weight: 600; }
.legal p, .legal li { font-size: .95rem; color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 22px; }
.legal a { color: var(--green-600); text-decoration: underline; }
.legal__placeholder {
  background: var(--green-50);
  border-left: 3px solid var(--green-500);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: .92rem;
  margin-bottom: 30px;
  color: var(--green-700);
}

/* Subtle pattern overlay used in hero/CTA areas */
.bg-pattern {
  position: relative;
}
.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(127,161,122,.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(127,161,122,.06), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.bg-pattern > * { position: relative; z-index: 1; }

/* =========================================================
   Mobile breakpoints – fine-tuning
   ========================================================= */

/* Tablet down */
@media (max-width: 1080px) {
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px;
    text-align: center;
  }
  .cta-banner h2 { text-align: center; }
  .cta-banner .btn { justify-self: center; }
}

/* Mobile */
@media (max-width: 720px) {
  body { font-size: 15px; }

  .container { padding: 0 18px; }

  .section { padding: 60px 0; }

  /* Header (mobile) — only logo left, menu button right */
  .site-header { top: 10px; padding: 0 10px; margin-top: 10px; }
  .nav { padding: 8px 8px 8px 18px; }
  .logo { font-size: 1rem; }
  .logo span:not(.logo__mark) { display: inline; }
  .nav__right > .lang-toggle,
  .nav__right > .btn { display: none; }
  .nav__cta-text { display: none; }
  .btn { padding: 11px 18px; font-size: .88rem; }

  /* Hero (mobile, fully centered) */
  .hero { padding: 30px 0 50px; }
  .hero__inner { gap: 30px; text-align: center; }
  .hero__text { display: flex; flex-direction: column; align-items: center; }
  .hero__tag, .hero h1, .hero__lead { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__media { max-width: 300px; margin: 0 auto; }
  .hero__badge {
    width: 86px; height: 86px;
    right: 6px; bottom: 16px;
    font-size: .72rem;
    padding: 8px;
  }

  /* Video */
  .video { margin: -10px 0 40px; }

  /* Story */
  .prose { font-size: .96rem; }

  /* Stats */
  .stats { gap: 22px 16px; }
  .stat__num { font-size: 1.9rem; }

  /* Service */
  .tabs { gap: 6px; }
  .tab { padding: 8px 14px; font-size: .85rem; flex: 1 1 auto; min-width: 0; }
  .service-card { padding: 22px; gap: 22px; }
  .service-card h3 { font-size: 1.2rem; }

  /* Slider */
  .slider__track { gap: 16px; padding: 4px 4px 8px; }
  .testimonial { flex: 0 0 86%; padding: 24px; }
  .slider__btn { width: 40px; height: 40px; }

  /* CTA banner */
  .cta-banner { padding: 32px 24px; }
  .cta-banner h2 { font-size: 2rem; line-height: 1.1; }

  /* Benefits */
  .benefit { padding: 16px 8px; }
  .benefit__icon { width: 48px; height: 48px; }

  /* Steps */
  .steps::before { left: 18px; }
  .step { grid-template-columns: 40px 1fr; gap: 16px; }
  .step__num { width: 40px; height: 40px; font-size: 1rem; }

  /* FAQ */
  .faq__q { font-size: .95rem; padding: 16px 0; gap: 14px; }

  /* Location */
  .location__map-link { font-size: .72rem; padding: 5px 10px; }
  .contact-card { padding: 16px 18px; gap: 14px; }
  .contact-card__icon { width: 40px; height: 40px; }
  .contact-card h4 { font-size: .95rem; }

  /* Section heads */
  .section__head { margin-bottom: 40px; }
  .eyebrow { font-size: .72rem; }

  /* Footer */
  .site-footer__row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .site-footer__links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Legal pages */
  .legal { padding: 50px 0 70px; }
  .legal__inner { padding: 26px 22px; }
  .legal h1 { font-size: 1.8rem; }
  .legal h2 { font-size: 1.2rem; }
}

/* Very small */
@media (max-width: 380px) {
  .nav__right { gap: 6px; }
  .lang-toggle { display: none; }
  .hero h1 { font-size: 1.85rem; }
  .stats { grid-template-columns: 1fr; }
  .stats__title { grid-column: 1; }
  .benefits { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 1.7rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0ms !important; transition-duration: 0ms !important; }
  html { scroll-behavior: auto; }
  .slider__track { scroll-behavior: auto; }
}

/* Service panels (tab switching) */
.service-card[hidden] { display: none !important; }

/* =========================================================
   Scroll reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22,.8,.36,1),
              transform .9s cubic-bezier(.22,.8,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* =========================================================
   Floaty (hero badge gently bobs)
   ========================================================= */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-10px) rotate(-6deg); }
}
.floaty { animation: floaty 4s ease-in-out infinite; }

/* =========================================================
   About section
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__intro h2 { margin-bottom: 6px; }
.about__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-600);
  margin-bottom: 20px;
}
.about .stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(127,161,122,.18), transparent 70%),
    linear-gradient(160deg, var(--green-50), rgba(255,255,255,.65));
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: 0 20px 50px rgba(30,34,24,.06);
  align-content: center;
  justify-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about .stats::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, transparent, rgba(127,161,122,.12), transparent 30%);
  pointer-events: none;
  z-index: 0;
}
.about .stat {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 22px 0;
  border-bottom: 1px dashed var(--green-100);
  z-index: 1;
}
.about .stat:last-child { border-bottom: 0; }
.about .stat__num {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.about .stat__label {
  font-size: .92rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about .stats { padding: 26px 22px; }
  .about .stat__num { font-size: 2.1rem; }
}

/* =========================================================
   Contact card action label
   ========================================================= */
.contact-card__action {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-600);
  font-weight: 600;
  font-size: .85rem;
}

/* =========================================================
   Fancy interactions
   ========================================================= */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: "";
  position: absolute;
  top: -50%; left: -120%;
  width: 60%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .8s ease;
  pointer-events: none;
}
.btn--primary:hover::after { left: 130%; }

.benefit {
  border-radius: var(--radius-lg);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.benefit__icon {
  transition: transform .35s ease, background .35s ease;
}
.benefit:hover .benefit__icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--green-100);
}

.service-card { transition: transform .4s ease, box-shadow .4s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.faq__item { transition: background .25s; }
.faq__item.is-open { background: rgba(127,161,122,.05); }

.step {
  transition: transform .35s ease;
}
.step:hover { transform: translateX(4px); }
.step__num {
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 6px 18px rgba(127,161,122,.4);
}
.step:hover .step__num {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(127,161,122,.55);
}

/* Subtle gradient backdrop for hero & CTA banners */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(127,161,122,.18), transparent 60%),
    radial-gradient(700px 300px at 10% 90%, rgba(127,161,122,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* Smooth fade-in on page load */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageIn .6s ease both; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty { animation: none; }
  .btn--primary::after { display: none; }
}

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: .35;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
.fab-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .55);
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .4; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =========================================================
   Back-to-top button
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s, color .2s;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-500);
  color: #fff;
}

@media (max-width: 720px) {
  .fab-whatsapp { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .back-to-top  { width: 42px; height: 42px; bottom: 16px; left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp::before { animation: none; }
}

/* =========================================================
   Extra polish
   ========================================================= */

/* CTA arrow nudge on hover */
.btn span[aria-hidden="true"] {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover span[aria-hidden="true"] { transform: translateX(4px); }

/* Stagger children reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.8,.36,1),
              transform .8s cubic-bezier(.22,.8,.36,1);
}
.reveal-stagger.is-visible > *           { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }

/* Animated underline for inline links */
.legal a {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .3s ease;
}
.legal a:hover { background-size: 100% 1px; }

/* Soft animated dot in eyebrows */
.eyebrow {
  position: relative;
  padding-left: 18px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(127,161,122,.6);
  animation: dot-pulse 2.4s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(127,161,122,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(127,161,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,161,122,0); }
}
.section__head .eyebrow { display: inline-flex; align-items: center; }

/* Subtle 3D tilt on service cards */
.service-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) translateY(0);
}
.service-card:hover {
  transform: perspective(1000px) translateY(-4px) rotateX(.5deg);
}

/* Step number gradient */
.step__num {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

/* Testimonial elevated hover */
.testimonial { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: 0 18px 44px rgba(30,34,24,.08);
}

/* Soft shimmer on hero badge */
.hero__badge {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  position: absolute;
}

/* Smoother section transitions */
.section { scroll-margin-top: 100px; }

/* Polished tab pills */
.tab {
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.tab:hover:not(.is-active) {
  background: rgba(255,255,255,.6);
  color: var(--ink);
}

/* FAQ chevron rotation */
.faq__q::after { transition: transform .25s ease, color .25s ease; }
.faq__item.is-open .faq__q::after { transform: rotate(0deg); color: var(--green-700); }

@media (prefers-reduced-motion: reduce) {
  .eyebrow::before { animation: none; }
  .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Cookie consent
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  max-width: 460px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(30,34,24,.18);
  padding: 22px 24px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,.8,.36,1), opacity .35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.cookie-banner p {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
}
.cookie-banner p a {
  color: var(--green-700);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner__actions .btn {
  padding: 11px 18px;
  font-size: .88rem;
  flex: 1 1 auto;
  justify-content: center;
}
.cookie-banner__settings-link {
  display: inline-block;
  margin-top: 10px;
  font-size: .82rem;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner__settings-link:hover { color: var(--green-700); }

/* Settings dialog */
.cookie-dialog {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20,24,18,.55);
  backdrop-filter: blur(4px);
}
.cookie-dialog.is-open {
  display: flex;
}
.cookie-dialog__panel {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(30,34,24,.3);
  animation: cookieDialogIn .35s cubic-bezier(.22,.8,.36,1);
}
@keyframes cookieDialogIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-dialog h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.cookie-dialog > .cookie-dialog__panel > p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.cookie-option:first-of-type { border-top: 0; padding-top: 4px; }
.cookie-option h4 {
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.cookie-option p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Custom toggle */
.toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px; height: 26px;
  display: inline-block;
}
.toggle input {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
}
.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background .25s ease;
}
.toggle__slider::after {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: transform .25s cubic-bezier(.22,.8,.36,1);
}
.toggle input:checked + .toggle__slider { background: var(--green-500); }
.toggle input:checked + .toggle__slider::after { transform: translateX(18px); }
.toggle input:disabled + .toggle__slider {
  background: var(--green-300);
  opacity: .8;
  cursor: not-allowed;
}

.cookie-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.cookie-dialog__actions .btn { flex: 1 1 auto; justify-content: center; }

@media (max-width: 720px) {
  .cookie-banner {
    left: 10px; right: 10px; bottom: 10px;
    padding: 18px 20px;
    max-width: none;
  }
  .cookie-dialog__panel { padding: 24px 22px; }
}
