/* ============================================================
   EMERALD GEBÄUDEREINIGUNG — DESIGN SYSTEM v1.0
   Fonts: self-hosted Roboto (no external requests)
   ============================================================ */

/* ── SELF-HOSTED ROBOTO ────────────────────────────────────── */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/roboto-latin-300-normal.woff2') format('woff2'),
       url('/fonts/roboto-latin-300-normal.woff')  format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/roboto-latin-400-normal.woff2') format('woff2'),
       url('/fonts/roboto-latin-400-normal.woff')  format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/roboto-latin-400-italic.woff2') format('woff2'),
       url('/fonts/roboto-latin-400-italic.woff')  format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/roboto-latin-500-normal.woff2') format('woff2'),
       url('/fonts/roboto-latin-500-normal.woff')  format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/roboto-latin-700-normal.woff2') format('woff2'),
       url('/fonts/roboto-latin-700-normal.woff')  format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/roboto-latin-900-normal.woff2') format('woff2'),
       url('/fonts/roboto-latin-900-normal.woff')  format('woff');
}

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  /* Emerald palette */
  --c-emerald-950: #022c1a;
  --c-emerald-900: #064e30;
  --c-emerald-800: #0b6e42;
  --c-emerald-700: #148a54;
  --c-emerald-600: #1aaa68;
  --c-emerald-500: #22c97e;
  --c-emerald-400: #4dd99a;
  --c-emerald-300: #82e9bb;
  --c-emerald-200: #b8f4d9;
  --c-emerald-100: #e0faf0;
  --c-emerald-50:  #f0fdf7;

  /* Neutrals */
  --c-ink-950: #0a0f0d;
  --c-ink-900: #111712;
  --c-ink-800: #1c2620;
  --c-ink-700: #2d3d35;
  --c-ink-600: #445c50;
  --c-ink-500: #607a6c;
  --c-ink-400: #849c8d;
  --c-ink-300: #b0c3b9;
  --c-ink-200: #d4e3db;
  --c-ink-100: #eaf2ed;
  --c-ink-50:  #f4f8f6;

  /* Semantic */
  --c-bg:        #ffffff;
  --c-bg-alt:    var(--c-ink-50);
  --c-bg-dark:   var(--c-emerald-950);
  --c-text:      var(--c-ink-900);
  --c-text-muted: var(--c-ink-500);
  --c-text-light: var(--c-ink-400);
  --c-text-white: #ffffff;
  --c-accent:    var(--c-emerald-600);
  --c-accent-dark: var(--c-emerald-800);
  --c-border:    var(--c-ink-200);
  --c-border-light: var(--c-ink-100);

  /* Typography */
  --font-display: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-body:    'Roboto', system-ui, -apple-system, sans-serif;

  /* Scales */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.08);
  --shadow-emerald: 0 8px 30px rgba(26,170,104,.25);

  /* Transitions */
  --t-fast:   150ms cubic-bezier(.4,0,.2,1);
  --t-base:   220ms cubic-bezier(.4,0,.2,1);
  --t-slow:   380ms cubic-bezier(.4,0,.2,1);
  --t-spring: 500ms cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-weight: 600; }
[hidden] { display: none !important; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 var(--space-6); }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 var(--space-8); }

/* ── TYPOGRAPHY SCALE ──────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}
.h1 { font-size: var(--text-3xl); font-weight: 700; }
.h2 { font-size: var(--text-2xl); font-weight: 600; }
.h3 { font-size: var(--text-xl); font-weight: 600; }
.text-sm  { font-size: var(--text-sm); }
.text-xs  { font-size: var(--text-xs); }
.text-lg  { font-size: var(--text-lg); }
.text-xl  { font-size: var(--text-xl); }
.text-muted  { color: var(--c-text-muted); }
.text-accent { color: var(--c-accent); }
.text-white  { color: var(--c-text-white); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.font-display { font-family: var(--font-display); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Section label (eyebrow) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-dark { color: rgba(255,255,255,.7); }
.eyebrow-dark::before { background: rgba(255,255,255,.5); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,.15);
  transition: var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--c-emerald-700);
  color: #fff;
  box-shadow: var(--shadow-emerald);
}
.btn-primary:hover {
  background: var(--c-emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,170,104,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--c-emerald-800);
  border: 2px solid var(--c-emerald-700);
}
.btn-secondary:hover {
  background: var(--c-emerald-50);
  border-color: var(--c-emerald-800);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-emerald-900);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--c-emerald-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20b857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn-sm { padding: 10px 20px; font-size: var(--text-sm); }
.btn-lg { padding: 18px 36px; font-size: var(--text-lg); }
.btn-xl { padding: 20px 44px; font-size: var(--text-xl); }
.btn-full { width: 100%; }

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-icon-fill { fill: currentColor; stroke: none; }

/* ── BADGE / PILL ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-emerald { background: var(--c-emerald-100); color: var(--c-emerald-800); }
.badge-white   { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.badge-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── LAYOUT SECTIONS ───────────────────────────────────────── */
.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }
.section-lg { padding: var(--space-32) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-bg-dark); color: #fff; }
.section-emerald { background: var(--c-emerald-700); color: #fff; }

.section-header { margin-bottom: var(--space-16); }
.section-header-center { text-align: center; }
.section-header-center .eyebrow { justify-content: center; }
.section-lead {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: var(--space-4);
}
.section-lead-center { margin-left: auto; margin-right: auto; }

/* ── GRID / FLEX ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-6); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start { display: flex; align-items: center; gap: var(--space-3); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  transition: var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--c-emerald-200);
  transform: translateY(-4px);
}
.card-sm { padding: var(--space-6); border-radius: var(--r-md); }
.card-dark {
  background: var(--c-ink-800);
  border-color: var(--c-ink-700);
  color: #fff;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--t-slow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-6);
  max-width: 1280px;
  margin: 0 auto;
}
.nav-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 24px rgba(0,0,0,.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: #fff;
  letter-spacing: -0.02em;
  transition: color var(--t-base);
  flex-shrink: 0;
}
.nav-scrolled .nav-logo { color: var(--c-emerald-900); }

/* Rectangular logo image — 1:2.5 ratio, height 44px → width 110px */
.nav-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  /* Tint white on dark nav, revert on scrolled */
  filter: brightness(0) invert(1);
  transition: filter var(--t-base), opacity var(--t-fast);
}
.nav-scrolled .nav-logo-img {
  filter: none;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Keep old .nav-logo-mark hidden (fallback only) */
.nav-logo-mark {
  display: none;
}
.nav-logo-text-light { color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: var(--t-fast);
  position: relative;
}
.nav-scrolled .nav-link { color: var(--c-ink-700); }
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-scrolled .nav-link:hover, .nav-scrolled .nav-link.active {
  color: var(--c-emerald-700);
  background: var(--c-emerald-50);
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  transition: var(--t-fast);
  user-select: none;
}
.nav-scrolled .nav-dropdown-trigger { color: var(--c-ink-700); }
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-scrolled .nav-dropdown-trigger:hover, .nav-scrolled .nav-dropdown-trigger.active {
  color: var(--c-emerald-700);
  background: var(--c-emerald-50);
}
.nav-dropdown-chevron {
  width: 14px; height: 14px;
  transition: transform var(--t-base);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
  padding: var(--space-2) var(--space-3) var(--space-1);
  margin-top: var(--space-2);
}
.dropdown-section-label:first-child { margin-top: 0; }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--c-ink-700);
  transition: var(--t-fast);
}
.nav-dropdown-link:hover {
  background: var(--c-emerald-50);
  color: var(--c-emerald-700);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--c-emerald-700);
  color: #fff;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: var(--t-base);
}
.nav-cta:hover { background: var(--c-emerald-800); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full);
  padding: 3px;
  transition: background var(--t-base);
}
.nav-scrolled .lang-switch { background: var(--c-ink-100); }
.lang-btn {
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--t-fast);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-scrolled .lang-btn { color: var(--c-ink-500); }
.lang-btn.active {
  background: var(--c-emerald-600);
  color: #fff;
  box-shadow: var(--shadow-xs);
}
.nav-scrolled .lang-btn.active { background: var(--c-emerald-700); }
.lang-btn:not(.active):hover { color: #fff; }
.nav-scrolled .lang-btn:not(.active):hover { color: var(--c-ink-700); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: flex-end;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-burger:hover { background: rgba(255,255,255,.12); }
.nav-scrolled .nav-burger:hover { background: var(--c-ink-100); }
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t-base);
}
.nav-scrolled .nav-burger span { background: var(--c-ink-700); }
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 16px; }
.nav-burger span:nth-child(3) { width: 22px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--space-4) var(--space-6) var(--space-8);
  border-top: 1px solid var(--c-border);
  animation: slideDown .25s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--c-ink-800);
  border-bottom: 1px solid var(--c-border-light);
  transition: var(--t-fast);
}
.mobile-menu-link:hover { color: var(--c-emerald-700); }
.mobile-menu-sub { padding-left: var(--space-4); }
.mobile-menu-sub-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text-light); padding: var(--space-3) 0 var(--space-1); }
.mobile-menu-sub-link {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--c-ink-600);
  border-bottom: 1px solid var(--c-border-light);
  transition: var(--t-fast);
}
.mobile-menu-sub-link:hover { color: var(--c-emerald-700); }
.mobile-menu-actions { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-emerald-950);
}

/* Slider: stacked full-bleed slides that crossfade */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
  /* slow Ken Burns zoom */
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Green gradient overlay on top of every slide */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg,
      rgba(2,44,26,.82)   0%,
      rgba(6,78,48,.72)  40%,
      rgba(20,138,84,.45) 70%,
      rgba(2,44,26,.70) 100%),
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20,138,84,.30) 0%, transparent 60%);
  z-index: 1;
}

/* Fallback gradient shown before images load */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(165deg, var(--c-ink-950) 0%, var(--c-emerald-950) 50%, var(--c-emerald-900) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.4) 30%, rgba(0,0,0,.4) 70%, transparent);
  pointer-events: none;
}

/* Slider dot indicators */
.hero-dots {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  padding: 0;
}
.hero-dot.active {
  background: var(--c-emerald-400);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(77,217,154,.5);
}
.hero-dot:hover:not(.active) { background: rgba(255,255,255,.6); }

.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 0 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 6px 14px 6px 8px;
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-emerald-400);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77,217,154,.4); }
  50% { box-shadow: 0 0 0 6px rgba(77,217,154,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--space-6);
}
.hero-title em {
  font-style: italic;
  color: var(--c-emerald-300);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--space-10);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-16);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 400;
}
.hero-stat-accent { color: var(--c-emerald-300); }

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.3);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.hero-scroll svg { width:20px; height:20px; stroke:rgba(255,255,255,.3); fill:none; stroke-width:2; }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--c-border-light);
  padding: var(--space-4) 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ink-600);
  white-space: nowrap;
}
.trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--c-emerald-600);
  fill: none; stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-emerald-500), var(--c-emerald-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.service-card:hover {
  border-color: var(--c-emerald-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--c-emerald-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: var(--t-base);
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--c-emerald-700);
  fill: none; stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .service-icon {
  background: var(--c-emerald-700);
}
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-ink-900);
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-emerald-700);
  transition: var(--t-fast);
}
.service-link svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2.5; transition:transform var(--t-fast); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-emerald-900);
}
.why-visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}
.why-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--c-emerald-700);
  line-height: 1;
}
.why-badge-label { font-size: var(--text-sm); color: var(--c-text-muted); }
.why-features { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-5); }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--c-emerald-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 20px; height: 20px; stroke: var(--c-emerald-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-feature-title { font-size: var(--text-base); font-weight: 600; color: var(--c-ink-900); margin-bottom: 2px; }
.why-feature-desc { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.6; }

/* ── PROCESS ────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-emerald-300), var(--c-emerald-200), var(--c-emerald-300));
}
.process-step { text-align: center; padding: 0 var(--space-4); }
.process-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-emerald-700);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(20,138,84,.3);
  transition: var(--t-spring);
}
.process-step:hover .process-step-num { transform: scale(1.1); background: var(--c-emerald-600); }
.process-step h3 { font-size: var(--text-lg); font-weight: 600; color: var(--c-ink-900); margin-bottom: var(--space-2); }
.process-step p { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--c-emerald-200);
}
.testimonial-quote {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .8;
  color: var(--c-emerald-100);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.stars { display: flex; gap: 3px; margin-bottom: var(--space-4); }
.star { width: 16px; height: 16px; fill: #f59e0b; color: #f59e0b; }
.testimonial-text {
  font-size: var(--text-base);
  color: var(--c-ink-700);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-emerald-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: var(--text-base); color: var(--c-ink-900); }
.testimonial-role { font-size: var(--text-sm); color: var(--c-text-muted); }

/* ── AREAS ──────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}
.area-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ink-700);
  transition: var(--t-base);
  cursor: pointer;
}
.area-chip:hover {
  border-color: var(--c-emerald-400);
  background: var(--c-emerald-50);
  color: var(--c-emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-chip svg { width:16px; height:16px; stroke:var(--c-emerald-600); fill:none; stroke-width:2; flex-shrink:0; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--c-emerald-900) 0%, var(--c-emerald-700) 60%, var(--c-emerald-800) 100%);
  border-radius: var(--r-xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section-content { position: relative; z-index: 1; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-10);
  align-items: start;
}
.contact-grid > * {
  min-width: 0;
}
.contact-info-card {
  background: var(--c-emerald-900);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-10);
  position: sticky;
  top: 90px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width:20px; height:20px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-detail-label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-detail-value { font-size: var(--text-base); font-weight: 500; color: #fff; word-break: break-word; overflow-wrap: anywhere; }
.contact-detail-value a { color: #fff; }
.contact-detail-value a:hover { color: var(--c-emerald-300); }

/* Form elements */
.form-wrap {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--space-10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-ink-700);
  margin-bottom: var(--space-2);
}
.form-required { color: var(--c-emerald-600); }
.form-optional { font-size: var(--text-xs); font-weight: 400; color: var(--c-text-light); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-ink-900);
  background: #fff;
  transition: var(--t-fast);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-emerald-500);
  box-shadow: 0 0 0 3px rgba(34,201,126,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-ink-300); }
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-error {
  display: none;
  font-size: var(--text-xs);
  color: #ef4444;
  margin-top: var(--space-1);
}
.form-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23607a6c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; padding-right: 40px; cursor: pointer; }
.form-char-count { text-align: right; font-size: var(--text-xs); color: var(--c-text-light); margin-top: 3px; }

/* Multiselect tags */
.tags-wrap { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag-checkbox { display: none; }
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ink-600);
  cursor: pointer;
  transition: var(--t-fast);
  user-select: none;
}
.tag-label:hover { border-color: var(--c-emerald-400); color: var(--c-emerald-700); background: var(--c-emerald-50); }
.tag-checkbox:checked + .tag-label {
  background: var(--c-emerald-700);
  border-color: var(--c-emerald-700);
  color: #fff;
}

/* Checkbox custom */
.checkbox-group { display: flex; align-items: flex-start; gap: var(--space-3); }
.checkbox-input {
  width: 18px; height: 18px;
  border: 2px solid var(--c-border);
  border-radius: 5px;
  appearance: none;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: var(--t-fast);
  position: relative;
  background: #fff;
}
.checkbox-input:checked {
  background: var(--c-emerald-700);
  border-color: var(--c-emerald-700);
}
.checkbox-input:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-label { font-size: var(--text-sm); color: var(--c-ink-600); line-height: 1.5; cursor: pointer; }
.checkbox-label a { color: var(--c-emerald-700); font-weight: 500; }

/* Form success / error messages */
.form-message {
  display: none;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--r-md);
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  line-height: 1.6;
}
.form-message.success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--c-emerald-50);
  border: 1px solid var(--c-emerald-200);
  color: var(--c-emerald-800);
}
.form-message.error-msg { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-message svg { width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; margin-top:2px; }

/* Submit btn loading state */
.btn-loading { opacity: .7; pointer-events: none; }
.btn-loading::before { content: ''; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--space-6);
}
.breadcrumb a { color: var(--c-emerald-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--c-text-light); }

/* ── SERVICE PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--c-emerald-950) 0%, var(--c-emerald-800) 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
}
.page-hero-content { position: relative; z-index: 1; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-ink-900);
  cursor: pointer;
  text-align: left;
  transition: var(--t-fast);
  background: none;
}
.faq-question:hover { color: var(--c-emerald-700); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-ink-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
}
.faq-icon svg { width:14px; height:14px; stroke:var(--c-ink-600); fill:none; stroke-width:2.5; transition:transform var(--t-base); }
.faq-item.open .faq-icon { background: var(--c-emerald-700); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow) cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--c-ink-600);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--c-ink-950);
  color: rgba(255,255,255,.65);
  padding: var(--space-20) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
}
/* Rectangular footer logo — white tinted on dark background */
.footer-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-logo-mark {
  width: 40px; height: 40px;
  background: var(--c-emerald-700);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-logo-mark svg { width:22px; height:22px; fill:#fff; }
.footer-tagline { font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--space-6); max-width: 280px; }
.footer-contact-links { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: var(--t-fast);
}
.footer-contact-link:hover { color: var(--c-emerald-300); }
.footer-contact-link svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  transition: var(--t-fast);
}
.footer-link:hover { color: var(--c-emerald-300); padding-left: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.35);
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer-legal-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.35);
  transition: var(--t-fast);
}
.footer-legal-link:hover { color: rgba(255,255,255,.65); }
.footer-lang { display: flex; align-items: center; gap: var(--space-2); }
.footer-lang-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .06em; }

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  z-index: 50;
}
.fab-wa {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: var(--t-spring);
  position: relative;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
.fab-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--c-ink-900);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: var(--t-base);
}
.fab-wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%; transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--c-ink-900);
}
.fab-wa:hover .fab-wa-tooltip { opacity: 1; transform: translateX(0); }

.fab-scroll-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--t-base);
}
.fab-scroll-top.show { display: flex; }
.fab-scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--c-emerald-50); }
.fab-scroll-top svg { width:18px; height:18px; stroke:var(--c-ink-600); fill:none; stroke-width:2.5; }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  max-width: 680px;
  width: calc(100% - var(--space-12));
  background: var(--c-ink-900);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  box-shadow: var(--shadow-xl);
  z-index: 200;
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { opacity:0; transform:translateX(-50%) translateY(24px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: var(--text-sm); color: rgba(255,255,255,.7); max-width: 440px; line-height: 1.6; }
.cookie-text a { color: var(--c-emerald-300); }
.cookie-actions { display: flex; gap: var(--space-2); flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-fast);
}
.cookie-accept { background: var(--c-emerald-600); color: #fff; }
.cookie-accept:hover { background: var(--c-emerald-500); }
.cookie-decline { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.cookie-decline:hover { background: rgba(255,255,255,.15); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── INNER PAGE HERO (plain gradient — fallback) ────────────── */
.inner-hero-bg {
  background: linear-gradient(135deg, #0b2e1e 0%, #0b6e42 100%);
  padding: 120px 0 var(--space-16);
  color: #fff;
  position: relative;
}

/* ── SERVICE PAGE HERO (photo + green overlay) ──────────────── */
.service-hero {
  position: relative;
  padding: 140px 0 var(--space-16);
  color: #fff;
  overflow: hidden;
  background: #022c1a; /* fallback while image loads */
}

/* Full-bleed background image */
.service-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-in-out;
  will-change: transform;
}
/* Subtle Ken Burns on load */
.service-hero:hover .service-hero-img,
.service-hero .service-hero-img {
  animation: serviceHeroZoom 12s ease-in-out infinite alternate;
}
@keyframes serviceHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Layered green gradient overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(2, 44, 26, 0.88)   0%,
      rgba(6, 78, 48, 0.78)  40%,
      rgba(20,138, 84, 0.55) 70%,
      rgba(2, 44, 26, 0.80) 100%
    );
  z-index: 1;
}

/* Content sits above both image and overlay */
.service-hero > .container {
  position: relative;
  z-index: 2;
}

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: var(--c-emerald-700);
  padding: var(--space-10) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: var(--text-sm); color: rgba(255,255,255,.65); margin-top: 4px; }

/* ── VALUE CARDS ────────────────────────────────────────────── */
.value-card {
  text-align: center;
  padding: var(--space-8);
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width:32px; height:32px; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.value-card h3 { font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--space-3); }
.value-card p { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.7; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .why-visual { aspect-ratio: 16/9; max-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 var(--space-4); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .section { padding: var(--space-16) 0; }
  .cta-section { padding: var(--space-10) var(--space-6); border-radius: var(--r-lg); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--space-6); }
  .cookie-banner { border-radius: var(--r-md); bottom: var(--space-4); width: calc(100% - var(--space-8)); }
  .fab-container { bottom: var(--space-4); right: var(--space-4); }

  /* ── Prevent horizontal overflow on mobile ── */
  .container, .container-sm, .container-lg {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    max-width: 100%;
  }
  .hero-content { padding: 100px 0 60px; }
  .hero-slider, .hero-bg { max-width: 100vw; }
  .trust-bar-inner { gap: var(--space-4) var(--space-6); }
  .areas-grid, .grid-2, .grid-3, .grid-4 {
    width: 100%;
    max-width: 100%;
  }
  table { display: block; overflow-x: auto; max-width: 100%; }

  /* ── Kontakt page: reduce padding so card/form fit in viewport ── */
  .contact-info-card { padding: var(--space-6); }
  .form-wrap { padding: var(--space-6); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo-img { height: 36px; max-width: 90px; }
  .hero-dots { bottom: var(--space-8); }

  /* Kontakt page very small screens */
  .contact-info-card { padding: var(--space-5); }
  .form-wrap { padding: var(--space-5); }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .nav, .fab-container, .cookie-banner, .footer { display: none !important; }
  .hero { min-height: auto; padding: var(--space-8) 0; }
}
