/* ==========================================================================
   Andreis Service — Design System
   Brand: Green / Black / White · Mobile-first · Bilingual lead generation
   ========================================================================== */

:root {
  /* Brand palette */
  --green-deep: #0F5A3D;
  --green: #22A06B;
  --green-soft: #E7F2EC;
  --black: #0B0F0D;
  --black-soft: #151A17;
  --white: #FFFFFF;
  --bg-warm: #F6F8F5;
  --border: #DDE5DD;

  /* Derived neutrals (single warm-green-tinted gray family) */
  --ink: #0B0F0D;
  --ink-2: #2C342F;
  --ink-3: #5C6660;
  --ink-muted: #828C86;

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15, 90, 61, 0.04), 0 2px 6px rgba(11, 15, 13, 0.04);
  --shadow: 0 12px 30px -12px rgba(15, 90, 61, 0.16), 0 4px 12px -6px rgba(11, 15, 13, 0.06);
  --shadow-lg: 0 28px 60px -24px rgba(15, 90, 61, 0.28), 0 8px 24px -12px rgba(11, 15, 13, 0.10);
  --ring: 0 0 0 3px rgba(34, 160, 107, 0.32);

  /* Type */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1600px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;

  /* Layout helpers */
  --header-h: 72px;
  --pad-x: clamp(1.25rem, 6vw, 90px);
  --section-y: clamp(3.5rem, 9vw, 7rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }

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

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Skip link / accessibility ---------- */
.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 1200;
  background: var(--green-deep); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 10px; font-weight: 700; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--bg-warm); }
.section--dark { background: var(--black); color: #EAF0EC; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-soft);
  padding: 0.4rem 0.85rem; border-radius: 999px;
}
.section--dark .eyebrow { color: #9EE7C4; background: rgba(34, 160, 107, 0.16); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.022em; font-weight: 800; color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-top: 0.7rem; }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
.lead { font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--ink-3); margin-top: 1rem; max-width: 60ch; }
.section--dark .lead { color: #B9C6BF; }
.text-accent { color: var(--green-deep); }
.section--dark .text-accent { color: #6BD9A4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: 0.97rem;
  letter-spacing: -0.01em; transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap; line-height: 1.1; border: 1.5px solid transparent;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn--primary { background: var(--green-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #0c6443; box-shadow: var(--shadow); transform: translateY(-1px); }
.btn--accent { background: var(--green); color: #04150d; }
.btn--accent:hover { background: #1ea564; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-1px); }
.btn--whatsapp { background: #1FA855; color: #fff; }
.btn--whatsapp:hover { background: #1b934a; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--on-dark.btn--ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.22); }
.btn--on-dark.btn--ghost:hover { border-color: var(--green); color: #fff; background: rgba(34,160,107,0.14); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transform: translateY(0); transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.header.hidden { transform: translateY(-110%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; flex: none; }
.brand img { height: 46px; width: auto; }
.brand__txt { display: none; }
@media (min-width: 960px) { .brand img { height: 50px; } }

.nav { display: none; }
.nav a {
  font-size: 0.93rem; font-weight: 600; color: var(--ink-2); padding: 0.4rem 0.1rem;
  position: relative; transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--green); transition: width 0.25s var(--ease); border-radius: 2px;
}
.nav a:hover { color: var(--green-deep); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.6rem; }

.lang {
  display: inline-flex; align-items: center; background: var(--bg-warm);
  border: 1px solid var(--border); border-radius: 999px; padding: 3px; gap: 2px;
}
.lang button {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; color: var(--ink-3);
  padding: 0.32rem 0.62rem; border-radius: 999px; transition: all 0.2s var(--ease);
}
.lang button.active { background: var(--green-deep); color: #fff; }

.header .btn--header { display: none; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--white); padding: 0 12px; align-items: stretch;
}
.burger span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: rgba(11, 15, 13, 0.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--white); padding: 1.4rem var(--pad-x) 2rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.mobile-menu__close { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; }
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
  transform: translateX(14px); opacity: 0;
}
.mobile-menu.open .mobile-nav a { animation: slideIn 0.5s var(--ease) forwards; }
.mobile-nav a svg { width: 18px; height: 18px; color: var(--green); }
@keyframes slideIn { to { transform: translateX(0); opacity: 1; } }
.mobile-menu__contact { margin-top: 1.4rem; display: grid; gap: 0.6rem; }
.mobile-menu__contact a {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; border-radius: 12px;
  background: var(--bg-warm); border: 1px solid var(--border); font-weight: 600; font-size: 0.95rem;
}
.mobile-menu__contact a svg { width: 20px; height: 20px; color: var(--green-deep); flex: none; }
.mobile-menu__lang { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.7rem; color: var(--ink-3); font-size: 0.85rem; font-weight: 600; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 3.5rem)); padding-bottom: var(--section-y); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(34, 160, 107, 0.12), transparent 65%); pointer-events: none; z-index: 0;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3rem); }
.hero__copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.05rem, 5.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em;
  margin-top: 1.1rem; text-wrap: balance;
}
.hero h1 .hl { color: var(--green-deep); }
.hero__sub { margin-top: 1.2rem; font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: var(--ink-3); max-width: 56ch; }
.hero__trust {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; align-items: center;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-2);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__trust svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.hero__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero__visual { position: relative; }
.hero__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; border: 1px solid var(--border);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 15, 13, 0.45));
}
.hero__badge {
  position: absolute; left: 14px; bottom: 14px; right: 14px; z-index: 2;
  display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.6);
}
.hero__badge .rating { font-size: 1.5rem; font-weight: 800; color: var(--green-deep); line-height: 1; }
.hero__badge .stars { color: #F5A623; font-size: 0.85rem; letter-spacing: 1px; }
.hero__badge .meta { font-size: 0.78rem; color: var(--ink-3); font-weight: 600; }
.hero__chip {
  position: absolute; top: 16px; right: -6px; z-index: 2; background: var(--green-deep); color: #fff;
  font-size: 0.78rem; font-weight: 700; padding: 0.55rem 0.95rem; border-radius: 999px; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.hero__chip svg { width: 15px; height: 15px; }

/* Ticker / marquee */
.ticker { background: var(--black); color: #DCE7E0; padding-block: 0.95rem; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.06); }
.ticker__track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 32s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; white-space: nowrap; }
.ticker__item svg { width: 18px; height: 18px; color: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.svc {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 0.7rem; overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--green);
  transform: scaleY(0); transform-origin: top; transition: transform 0.35s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { transform: scaleY(1); }
.svc__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep); flex: none;
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__num { position: absolute; top: 1.3rem; right: 1.4rem; font-size: 0.82rem; font-weight: 800; color: var(--border); letter-spacing: 0.05em; }
.svc h3 { font-size: 1.1rem; font-weight: 800; }
.svc p { font-size: 0.92rem; color: var(--ink-3); line-height: 1.55; }
.svc__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin-top: auto; padding-top: 0.4rem; }

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem; }
.tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.6rem;
  -webkit-overflow-scrolling: touch;
}
.tab {
  font-size: 0.88rem; font-weight: 700; color: var(--ink-2); padding: 0.55rem 1.05rem;
  border-radius: 999px; border: 1px solid var(--border); background: var(--white);
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.tab:hover { border-color: var(--green); color: var(--green-deep); }
.tab.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }

.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.8rem; }
.work {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  background: var(--black-soft); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: workIn 0.5s var(--ease) both;
}
@keyframes workIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
.work.is-hidden { display: none; }
.work:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work__media { aspect-ratio: 4 / 5; overflow: hidden; }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work:hover .work__media img { transform: scale(1.06); }
.work__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; gap: 0.3rem;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 15, 13, 0.34) 64%, rgba(11, 15, 13, 0.86));
  color: #fff;
}
.work__badge {
  align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--green); color: #04150d; padding: 0.32rem 0.7rem; border-radius: 999px; margin-bottom: 0.4rem;
}
.work__title { font-size: 1.08rem; font-weight: 800; letter-spacing: -0.01em; }
.work__loc { font-size: 0.84rem; font-weight: 600; opacity: 0.9; display: inline-flex; align-items: center; gap: 0.35rem; }
.work__loc svg { width: 14px; height: 14px; }
.work__desc { font-size: 0.84rem; opacity: 0.85; margin-top: 0.25rem; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), margin 0.4s var(--ease), opacity 0.3s; }
.work:hover .work__desc { max-height: 8rem; margin-top: 0.4rem; }

/* ==========================================================================
   CTA / Request form
   ========================================================================== */
.request { position: relative; }
.request::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 10%, rgba(34, 160, 107, 0.18), transparent 60%);
  pointer-events: none;
}
.request__grid { position: relative; display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); }
.request__sticky { display: flex; flex-direction: column; }
.request h2 { font-size: clamp(1.6rem, 2.7vw, 2.2rem); line-height: 1.16; }
.request__intro .lead { color: #B9C6BF; margin-top: 0.9rem; }
.request__intro .eyebrow { align-self: flex-start; }
.request__list { margin-top: 1.6rem; padding: 0; list-style: none; display: grid; gap: 0.9rem; }
.request__list li { display: flex; gap: 0.75rem; align-items: flex-start; color: #D6E2DB; font-size: 0.96rem; }
.request__list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
.request__contacts { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.contact-ico {
  width: 48px; height: 48px; flex: none; border-radius: 50%; display: grid; place-items: center;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-ico:hover { transform: translateY(-2px); }
.contact-ico--wa { background: #25D366; color: #fff; }
.contact-ico--wa:hover { filter: brightness(1.06); }
.contact-ico--tg { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; }
.contact-ico--tg:hover { background: rgba(255,255,255,0.16); }
.contact-phone { white-space: nowrap; }

.formcard {
  background: var(--white); color: var(--ink); border-radius: var(--radius-xl); padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.5);
}
.form-grid { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--ink-2); }
.field .req { color: var(--green-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.66rem 0.9rem; border: 1.5px solid var(--border); border-radius: 11px;
  background: var(--bg-warm); color: var(--ink); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.field select {
  -webkit-appearance: none; appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6660' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 16px 16px;
}
.field textarea { resize: vertical; min-height: 70px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: #fff; box-shadow: var(--ring); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { box-shadow: var(--ring); }
.field--error input, .field--error select, .field--error textarea { border-color: #D6453B; background: #FDF2F1; }
.field__err { font-size: 0.78rem; color: #C13A30; font-weight: 600; display: none; }
.field--error .field__err { display: block; }

/* File upload — compact horizontal layout */
.upload {
  border: 1.5px dashed var(--border); border-radius: 11px; padding: 0.7rem 0.95rem; text-align: left;
  background: var(--bg-warm); cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s;
  display: flex; flex-direction: row; align-items: center; gap: 0.75rem;
}
.upload:hover, .upload.drag { border-color: var(--green); background: var(--green-soft); }
.upload svg { width: 24px; height: 24px; color: var(--green-deep); flex: none; }
.upload__text { display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }
.upload__text strong { font-size: 0.86rem; font-weight: 700; color: var(--ink-2); }
.upload__hint { font-size: 0.78rem; color: var(--ink-3); }
.upload__files { font-size: 0.8rem; color: var(--green-deep); font-weight: 600; }
.upload input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }

/* Privacy checkbox */
.check { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.86rem; color: var(--ink-3); line-height: 1.5; }
.check input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--green-deep); flex: none; }
.check a { color: var(--green-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.field--error .check { color: #C13A30; }

.form__submit { margin-top: 1.6rem; }
.form__note { font-size: 0.78rem; color: var(--ink-muted); margin-top: 0.7rem; text-align: center; }

/* Success state */
.form-success { display: none; text-align: center; padding: 1.5rem 0.5rem; }
.form-success.show { display: block; animation: popIn 0.5s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: scale(0.94); } }
.form-success__icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep);
  display: grid; place-items: center; margin: 0 auto 1.1rem;
}
.form-success__icon svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.3rem; }
.form-success p { color: var(--ink-3); margin-top: 0.6rem; max-width: 38ch; margin-inline: auto; }

/* ==========================================================================
   Advantages
   ========================================================================== */
.adv__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 0.4rem; }
.adv__grid--spaced { margin-top: clamp(2.2rem, 5vw, 3.2rem); }
.adv {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.adv:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.adv__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--green-deep); color: #fff; display: grid; place-items: center; flex: none; }
.adv__icon svg { width: 23px; height: 23px; }
.adv h3 { font-size: 1.02rem; font-weight: 800; }
.adv p { font-size: 0.88rem; color: var(--ink-3); margin-top: 0.2rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews__summary {
  display: grid; gap: 1.4rem; grid-template-columns: 1fr; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2rem); box-shadow: var(--shadow-sm); margin-bottom: 1.6rem;
}
.rsum__score { display: flex; align-items: center; gap: 1.1rem; }
.rsum__num { font-size: 3rem; font-weight: 800; color: var(--green-deep); line-height: 1; letter-spacing: -0.03em; }
.rsum__stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
.rsum__meta { font-size: 0.85rem; color: var(--ink-3); font-weight: 600; margin-top: 0.25rem; }
.rsum__bars { display: grid; gap: 0.5rem; }
.rbar { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; align-items: center; }
.rbar span:first-child { font-size: 0.8rem; font-weight: 700; color: var(--ink-2); }
.rbar__metric { width: 100%; }
.rbar__metric .lbl { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-3); font-weight: 600; margin-bottom: 0.25rem; }
.rbar__track { height: 8px; background: var(--bg-warm); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.rbar__fill { height: 100%; background: var(--green); border-radius: 999px; width: 0; transition: width 1s var(--ease); }
.rsum__sources { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding-top: 0.4rem; }
.rsum__sources span { font-size: 0.78rem; color: var(--ink-muted); font-weight: 600; }
.rsum__sources img { width: auto; opacity: 0.9; }
.rsum__sources .rs-check24 { height: 26px; }
.rsum__sources .rs-taskrabbit { height: 42px; }
.rsum__sources .rs-myhammer { height: 30px; }

.reviews__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
/* Reviews slider */
.rev-slider { position: relative; }
.rev-track {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0.3rem 0.2rem 0.6rem; margin-inline: -0.2rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track .review { flex: 0 0 87%; scroll-snap-align: start; }
.rev-nav { display: flex; justify-content: flex-end; gap: 0.55rem; margin-top: 1.3rem; }
.rev-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white);
  color: var(--ink); display: grid; place-items: center; transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.2s;
}
.rev-arrow svg { width: 20px; height: 20px; }
.rev-arrow:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.rev-arrow[disabled] { opacity: 0.35; pointer-events: none; }
@media (min-width: 640px) { .rev-track .review { flex-basis: calc((100% - 1.1rem) / 2); } }
@media (min-width: 1000px) { .rev-track .review { flex-basis: calc((100% - 2.2rem) / 3); } }
.review {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.85rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review__stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 1.5px; }
.review__text { font-size: 0.95rem; color: var(--ink-2); line-height: 1.6; }
.review__foot { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 0.4rem; border-top: 1px solid var(--border); }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-deep); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1rem; flex: none; }
.review__who strong { font-size: 0.92rem; font-weight: 800; display: block; }
.review__who span { font-size: 0.8rem; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 0.3rem; }
.review__who span svg { width: 13px; height: 13px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0.2rem; text-align: left; font-size: clamp(1rem, 2.2vw, 1.12rem); font-weight: 700; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__q:hover { color: var(--green-deep); }
.faq__icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border); display: grid; place-items: center; flex: none; transition: all 0.3s var(--ease); position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--green-deep); border-radius: 2px; }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq__item.open .faq__icon { background: var(--green-deep); border-color: var(--green-deep); }
.faq__item.open .faq__icon::before, .faq__item.open .faq__icon::after { background: #fff; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 0.2rem 1.3rem; color: var(--ink-3); font-size: 0.96rem; line-height: 1.65; max-width: 70ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--black); color: #B9C6BF; padding-top: clamp(3rem, 7vw, 5rem); }
.footer__grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer__brand img { height: 54px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.92rem; max-width: 38ch; line-height: 1.6; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; transition: all 0.2s var(--ease); }
.footer__social a:hover { background: var(--green); border-color: var(--green); color: #04150d; transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__legal { margin-top: 1.3rem; font-style: normal; font-size: 0.82rem; line-height: 1.75; color: var(--ink-muted); }
.footer__legal strong { color: #D2E2DA; font-weight: 700; }
.footer__col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a, .footer__col li { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__contact a { display: flex; align-items: center; gap: 0.6rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.footer__map {
  position: relative; display: block; margin-top: 0.7rem;
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 16 / 10; transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  background:
    radial-gradient(78% 68% at 50% 40%, rgba(34,160,107,0.20), transparent 72%),
    linear-gradient(180deg, #0f1a15, #0a110e);
}
.footer__map:hover { border-color: rgba(34,160,107,0.55); transform: translateY(-2px); }
/* subtle dotted "map" texture, faded toward the edges */
.footer__map-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(158,231,196,0.18) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(72% 70% at 50% 40%, #000 38%, transparent 80%);
  mask-image: radial-gradient(72% 70% at 50% 40%, #000 38%, transparent 80%);
}
/* concentric service-area rings around the pin */
.footer__map-grid::after {
  content: ""; position: absolute; left: 50%; top: 40%; transform: translate(-50%, -50%);
  width: 56%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(34,160,107,0.35);
  box-shadow: 0 0 0 1px rgba(34,160,107,0.10), inset 0 0 0 2px rgba(34,160,107,0.06);
  background: radial-gradient(circle, rgba(34,160,107,0.16) 0 22%, transparent 46%);
}
.footer__map-pin {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -62%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #04150d;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px rgba(34,160,107,0.18), 0 8px 18px rgba(0,0,0,0.35);
}
.footer__map-pin svg { width: 21px; height: 21px; }
.footer__map-label {
  position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.85rem; z-index: 2;
  display: flex; flex-direction: column; line-height: 1.3;
  background: rgba(8,14,11,0.5); backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 0.55rem 0.8rem;
}
.footer__map-label strong { color: #fff; font-size: 0.96rem; }
.footer__map-label span { font-size: 0.78rem; color: #9EE7C4; font-weight: 600; }
.footer__bottom {
  margin-top: 2.6rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; align-items: center; justify-content: space-between; font-size: 0.84rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: flex; gap: 0.55rem; padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -8px 24px -12px rgba(11,15,13,0.18);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn--primary { flex: 1; }
.sticky-cta__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; flex: none;
  border: 1.5px solid var(--border); background: #fff; transition: transform 0.15s var(--ease);
}
.sticky-cta__icon:active { transform: scale(0.94); }
.sticky-cta__icon svg { width: 24px; height: 24px; }
.sticky-cta__icon.wa { background: #1FA855; border-color: #1FA855; color: #fff; }
.sticky-cta__icon.call { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }

/* ==========================================================================
   Desktop floating widget
   ========================================================================== */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 790; display: none; flex-direction: column; align-items: flex-end; gap: 0.7rem; pointer-events: none;
}
.fab__actions { display: flex; flex-direction: column; gap: 0.6rem; opacity: 0; transform: translateY(10px) scale(0.9); pointer-events: none; transition: all 0.3s var(--ease); }
.fab.open .fab__actions { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab__action {
  display: inline-flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--border);
  padding: 0.6rem 1rem 0.6rem 0.7rem; border-radius: 999px; font-weight: 700; font-size: 0.88rem; box-shadow: var(--shadow);
  transition: transform 0.18s var(--ease);
}
.fab__action:hover { transform: translateX(-3px); }
.fab__action i { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.fab__action i svg { width: 18px; height: 18px; }
.fab__action.wa i { background: #1FA855; color: #fff; }
.fab__action.call i { background: var(--green-deep); color: #fff; }
.fab__action.form i { background: var(--green); color: #04150d; }
.fab__toggle {
  width: 62px; height: 62px; border-radius: 50%; background: var(--green-deep); color: #fff; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.2s;
  position: relative; pointer-events: auto;
}
.fab__toggle:hover { background: #0c6443; }
.fab__toggle svg { width: 28px; height: 28px; transition: transform 0.3s var(--ease); }
.fab.open .fab__toggle svg { transform: rotate(135deg); }
.fab__toggle::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--green);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ==========================================================================
   Popup (short form modal)
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1rem;
  background: rgba(11, 15, 13, 0.55); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.modal.open { opacity: 1; visibility: visible; }
.modal__box {
  background: var(--white); width: min(480px, 100%); border-radius: var(--radius-xl); padding: clamp(1.4rem, 5vw, 2rem);
  box-shadow: var(--shadow-lg); transform: translateY(20px) scale(0.97); transition: transform 0.4s var(--ease);
  max-height: 92vh; overflow-y: auto; position: relative;
}
.modal.open .modal__box { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: all 0.2s var(--ease); }
.modal__close:hover { background: var(--bg-warm); color: var(--green-deep); }
.modal__close svg { width: 20px; height: 20px; }
.modal__head { margin-bottom: 1.2rem; max-width: 90%; }
.modal__head h3 { font-size: 1.35rem; }
.modal__head p { font-size: 0.9rem; color: var(--ink-3); margin-top: 0.4rem; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1100; max-width: 460px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.3rem;
  box-shadow: var(--shadow-lg); transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }
.cookie h4 svg { width: 20px; height: 20px; color: var(--green-deep); }
.cookie p { font-size: 0.85rem; color: var(--ink-3); margin-top: 0.5rem; line-height: 1.55; }
.cookie p a { color: var(--green-deep); font-weight: 700; text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.cookie__actions .btn { flex: 1; padding: 0.7rem 1rem; font-size: 0.88rem; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: var(--section-y); }
.legal__body { max-width: 780px; }
.legal__body h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 0.6rem; }
.legal__body h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal__body h3 { font-size: 1.05rem; margin-top: 1.4rem; }
.legal__body p, .legal__body li { color: var(--ink-3); font-size: 0.96rem; line-height: 1.7; margin-top: 0.8rem; }
.legal__body ul { padding-left: 1.2rem; }
.legal__body a { color: var(--green-deep); font-weight: 600; text-decoration: underline; }
.legal__notice {
  background: var(--green-soft); border: 1px solid #BFE0CE; border-radius: var(--radius); padding: 1.1rem 1.3rem;
  margin: 1.6rem 0; font-size: 0.9rem; color: var(--green-deep); display: flex; gap: 0.7rem; align-items: flex-start;
}
.legal__notice svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.placeholder-field { background: var(--bg-warm); border: 1px dashed var(--border); border-radius: 6px; padding: 0.05rem 0.45rem; font-weight: 700; color: var(--ink-2); }
.legal-back { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1.6rem; }
.legal-back svg { width: 18px; height: 18px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (min-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .adv__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.col-2 { grid-column: 1 / -1; }
  .rsum__score { gap: 1.4rem; }
  .reviews__summary { grid-template-columns: auto 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__map-col { grid-column: 1 / -1; }
}

/* ==========================================================================
   Responsive — desktop
   ========================================================================== */
@media (min-width: 960px) {
  :root { --header-h: 80px; }
  .nav { display: flex; align-items: center; gap: 1.5rem; }
  .burger { display: none; }
  .brand__txt { display: block; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1; }
  .brand__txt small { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; color: var(--green-deep); text-transform: uppercase; margin-top: 3px; }
  .header .btn--header { display: inline-flex; }
  .sticky-cta { display: none; }
  .fab { display: flex; }
  /* Reserve space so the floating widget never overlaps the legal links (Cookie-Richtlinie) */
  .footer__bottom { padding-right: 96px; }

  .hero__grid { grid-template-columns: 1.12fr 0.88fr; align-items: center; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .adv__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .request__grid { grid-template-columns: 0.8fr 1.2fr; align-items: stretch; }
  .request__sticky { position: sticky; top: calc(var(--header-h) + 22px); align-self: start; }
  .footer__grid { grid-template-columns: 1.5fr 0.9fr 1.15fr 1.25fr; align-items: start; }
  .footer__map-col { grid-column: auto; }
}

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

/* Body offset so fixed mobile CTA never hides footer content */
@media (max-width: 959px) {
  body { padding-bottom: 0; }
  .footer__bottom { padding-bottom: calc(1.5rem + 76px + env(safe-area-inset-bottom, 0px)); }
}

/* ==========================================================================
   Mobile-only refinements (phones ≤ 600px) — desktop intentionally unchanged
   ========================================================================== */
@media (max-width: 600px) {
  /* 1 · Services: stacked cards that slide over each other on scroll,
        leaving a small sliver of the previous card visible */
  .lsvc-grid { display: block; }
  .lsvc-grid .lsvc { position: sticky; box-shadow: var(--shadow-lg); }
  .lsvc-grid .lsvc + .lsvc { margin-top: 18px; }
  .lsvc-grid .lsvc:nth-child(1) { top: 76px; }
  .lsvc-grid .lsvc:nth-child(2) { top: 88px; }
  .lsvc-grid .lsvc:nth-child(3) { top: 100px; }
  .lsvc-grid .lsvc:nth-child(4) { top: 112px; }
  .lsvc-grid .lsvc:nth-child(5) { top: 124px; }
  .lsvc-grid .lsvc:nth-child(6) { top: 136px; }
  .lsvc-grid .lsvc:nth-child(7) { top: 148px; }
  .lsvc-grid .lsvc:nth-child(8) { top: 160px; }
  .lsvc-grid .lsvc:nth-child(9) { top: 172px; }

  /* 2 · Why Andreis Service: full-width action buttons */
  .trust__cta { flex-direction: column; align-items: stretch; }
  .trust__cta .btn { width: 100%; justify-content: center; }

  /* Why Andreis Service: heading/offer first, photo below the offer */
  .trust__grid .trust__copy { order: 1; }
  .trust__grid .trust__media { order: 2; margin-top: 0.4rem; }

  /* 3 + 4 · Reviews & FAQ: heading + subtext aligned left */
  #bewertungen .section-head.center, #faq .section-head.center { text-align: left; margin-inline: 0; }
  #bewertungen .section-head.center .eyebrow, #faq .section-head.center .eyebrow { justify-content: flex-start; }
  #bewertungen .section-head .lead, #faq .section-head .lead { margin-inline: 0 !important; }

  /* 5 · Footer top CTA ("Ready for your installation…"): full-width buttons */
  .footer__cta { padding: clamp(1.3rem, 5vw, 1.8rem); }
  .footer__cta > * { min-width: 0; }
  .footer__cta-actions { flex-direction: column; align-items: stretch; width: 100%; min-width: 0; }
  .footer__cta-actions .btn { width: 100%; justify-content: center; white-space: normal; padding-inline: 1rem; }

  /* 6 · Footer: centered content */
  .footer__grid { text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand img { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .footer__social { justify-content: center; }
  .footer__col ul { justify-items: center; }
  .footer__contact a { justify-content: center; }
  .footer__map-col { display: flex; flex-direction: column; align-items: center; }
  .footer__map { width: 100%; max-width: 340px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.7rem; }
}

/* ==========================================================================
   Preloader — brand intro (logo focus-in + signature underline + glare)
   Customise via the variables below (colour / speed / logo size).
   ========================================================================== */
:root {
  --pl-bg: #FBFCFB;            /* preloader background */
  --pl-accent: var(--green);  /* signature underline + glow */
  --pl-logo-w: clamp(190px, 44vw, 330px);
  --pl-intro: 1.15s;          /* logo focus-in duration */
  --pl-draw: 0.9s;            /* underline draw duration */
  --pl-exit: 0.9s;            /* curtain-lift duration */
  --pl-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lock scroll only while the intro is on screen */
html.is-preloading, html.is-preloading body { overflow: hidden; height: 100%; }

.preloader {
  position: fixed; inset: 0; z-index: 1500;
  display: grid; place-items: center; padding: 6vw;
  background: var(--pl-bg);
  background-image: radial-gradient(58% 56% at 50% 44%, rgba(34, 160, 107, 0.07), transparent 72%);
  transition: transform var(--pl-exit) var(--pl-ease), opacity calc(var(--pl-exit) * 0.7) ease;
  will-change: transform;
}
.preloader__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 2.6vw, 24px);
}

/* Logo — fades into focus */
.preloader__logo { position: relative; width: var(--pl-logo-w); aspect-ratio: 656 / 200; }
.preloader__logo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  opacity: 0; filter: blur(7px); transform: translateY(10px) scale(0.965);
  animation: pl-focus var(--pl-intro) var(--pl-ease) forwards;
}
@keyframes pl-focus { to { opacity: 1; filter: blur(0); transform: none; } }

/* One soft light glare sweeping across the logo silhouette */
.preloader__logo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  -webkit-mask: url(../assets/img/brand/logo.png) center / contain no-repeat;
          mask: url(../assets/img/brand/logo.png) center / contain no-repeat;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.9) 50%, transparent 60%);
  background-size: 240% 100%; background-position: 135% 0;
  mix-blend-mode: screen; opacity: 0;
  animation: pl-glare 1.5s var(--pl-ease) 0.55s 1 forwards;
}
@keyframes pl-glare {
  0% { opacity: 0; background-position: 135% 0; }
  20% { opacity: 1; }
  100% { opacity: 0; background-position: -35% 0; }
}

/* Signature underline — draws itself left → right */
.preloader__line { width: clamp(116px, 28vw, 210px); height: auto; color: var(--pl-accent); overflow: visible; }
.preloader__line path {
  fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: pl-draw var(--pl-draw) var(--pl-ease) 0.5s forwards;
}
@keyframes pl-draw { to { stroke-dashoffset: 0; } }

/* Exit — curtain lifts away, revealing the page */
.preloader.is-done { transform: translateY(-101%); }

@media (prefers-reduced-motion: reduce) {
  .preloader__logo img { animation: none; opacity: 1; filter: none; transform: none; }
  .preloader__logo::after { display: none; }
  .preloader__line path { animation: none; stroke-dashoffset: 0; }
  .preloader { transition: opacity 0.45s ease; }
  .preloader.is-done { transform: none; opacity: 0; }
}
