/* ==========================================================================
   SINUS DIENSTLEISTUNGEN — sinusdienstleistungen.de
   High-End statischer Nachbau der Elementor-Seite (Solace-Theme).
   Design-Tokens 1:1 aus dem Original übernommen, Detailgrad angehoben.
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO) ---------- */
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('/assets/fonts/redhat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('/assets/fonts/redhat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
  --font: 'Inter', 'Red Hat Display', 'DM Sans', sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --text: #363938;
  --text-soft: #5B615F;
  --heading: #1E1E1E;
  --primary: #2E9FE6;
  --primary-dark: #1173B4;
  --primary-soft: rgba(17, 115, 180, .09);
  --border: #E0E0E0;
  --bg: #FFFFFF;
  --dark: #202020;
  --dark-2: #181A19;
  --light: #E9E9E9;
  --light-bg: #F6F8F7;
  --container: 1280px;
  --radius: 14px;
  --radius-sm: 10px;
  --btn-radius: 999px;
  --shadow-sm: 0 2px 8px rgba(16, 24, 20, .06);
  --shadow: 0 12px 34px rgba(16, 24, 20, .10);
  --shadow-lg: 0 30px 70px rgba(10, 16, 13, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Off-Canvas-Menü + Marquee dürfen nie horizontales Scrollen erzeugen */
html, body { overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--primary); color: #fff; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
:focus-visible { outline: 3px solid rgba(17, 115, 180, .45); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.015em;
  text-wrap: balance;
}
/* Display-Ebene: elegante Serifenschrift (Cinematic-Look) */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
}
h1 em, h2 em { font-style: italic; color: #6F6F6F; }
h1 { font-size: clamp(44px, 6vw, 82px); line-height: .98; }
h2 { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; }
h3 { font-size: clamp(21px, 2.1vw, 28px); }
h4 { font-size: clamp(18px, 1.6vw, 21px); }
h5 { font-size: 18px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  z-index: 3000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--btn-radius);
  background: linear-gradient(135deg, #4FB9FF 0%, var(--primary) 55%, var(--primary-dark) 130%);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 18px rgba(17, 115, 180, .28);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17, 115, 180, .38); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }
.btn--light { background: #fff; color: var(--heading); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn--light:hover { color: var(--primary-dark); box-shadow: 0 14px 32px rgba(0,0,0,.30); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn--ghost:hover { background: var(--light-bg); color: var(--heading); transform: none; box-shadow: none; }
.btn--ghost::after { display: none; }
.btn.full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(224, 224, 224, .7);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
  min-height: 72px;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(16, 24, 20, .08); background: rgba(255, 255, 255, .96); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.site-logo { display: block; flex-shrink: 0; }
.site-logo img { width: 168px; height: auto; transition: transform .3s var(--ease); }
.site-logo:hover img { transform: scale(1.03); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: #6F6F6F;
  font-weight: 500;
  font-size: 15px;
}
.main-nav > ul > li > a::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav > ul > li > a:hover::before,
.main-nav > ul > li.is-active > a::before { transform: scaleX(1); }
.main-nav a:hover, .main-nav li.is-active > a { color: var(--primary); }
.nav-item--dropdown { position: relative; }
.nav-item--dropdown > a::after { content: ' ▾'; font-size: .7em; opacity: .7; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 8px;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .28s var(--ease);
}
.dropdown::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-item--dropdown:hover .dropdown,
.nav-item--dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { padding: 9px 14px; border-radius: 7px; font-weight: 500; }
.dropdown a:hover, .dropdown li.is-active > a { background: var(--primary-soft); color: var(--primary-dark); }
.header-cta { flex-shrink: 0; padding: 11px 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--heading);
  margin: 5px 0;
  border-radius: 2px;
}
@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 18%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s .35s;
    box-shadow: -20px 0 60px rgba(0,0,0,.2);
    overflow-y: auto;
    z-index: 1001;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; transition: transform .35s var(--ease); }
  .main-nav > ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .main-nav a { font-size: 19px; padding: 13px 0; }
  .main-nav > ul > li > a::before { display: none; }
  .main-nav > ul > li { width: 100%; border-bottom: 1px solid var(--light-bg); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 8px 16px;
  }
  .dropdown a { font-size: 16px; padding: 9px 0; }
  .nav-close {
    position: absolute;
    top: 22px;
    right: 24px;
    background: var(--light-bg);
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--heading);
  }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 12, .5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 1000;
  }
}
@media (min-width: 993px) { .nav-close { display: none; } }

/* ---------- Cinematic Hero (Startseite) ---------- */
.cine-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(8rem - 75px) 24px 160px;
}
.cine-hero__video {
  position: absolute;
  inset: auto 0 0 0;
  top: 300px;
  width: 100%;
  height: calc(100% - 300px);
  object-fit: cover;
  z-index: 0;
  opacity: 0;
}
.cine-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, #fff 0%, #fff 26%, rgba(255, 255, 255, .82) 46%, rgba(255, 255, 255, .25) 62%, rgba(255, 255, 255, 0) 74%, #fff 100%);
}
.cine-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cine-hero h1 {
  max-width: 1280px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -.026em;
  color: #000;
  text-shadow: 0 2px 28px rgba(255, 255, 255, .9), 0 0 60px rgba(255, 255, 255, .7);
}
.cine-hero h1 em { font-style: italic; color: #6F6F6F; }
.cine-hero .cine-desc {
  max-width: 46rem;
  margin-top: 32px;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
  color: #4A4F4D;
  text-shadow: 0 1px 18px rgba(255, 255, 255, .95), 0 0 40px rgba(255, 255, 255, .8);
}
.cine-hero .cine-cta {
  margin-top: 48px;
  padding: 20px 56px;
  font-size: 16px;
}
.cine-hero .cine-meta {
  margin-top: 40px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: #6F6F6F;
  font-size: 15px;
}
.cine-hero .cine-meta .counter-number { font-family: var(--font-display); font-size: 34px; color: #000; line-height: 1; }
.cine-hero .proven-mini { margin-left: 10px; display: inline-flex; }
.cine-hero .proven-mini img { width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,.25); transition: transform .3s var(--ease); }
.cine-hero .proven-mini:hover img { transform: scale(1.08); }
@media (max-width: 768px) {
  .cine-hero { min-height: 92vh; padding-bottom: 120px; }
  .cine-hero__video { top: 45vh; height: 55vh; }
}

/* fade-rise Einblendungen */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-rise { animation: fade-rise .8s ease-out both; }
.animate-fade-rise-delay { animation: fade-rise .8s ease-out .2s both; }
.animate-fade-rise-delay-2 { animation: fade-rise .8s ease-out .4s both; }
@media (prefers-reduced-motion: reduce) {
  .animate-fade-rise, .animate-fade-rise-delay, .animate-fade-rise-delay-2 { animation: none; }
}

/* Angebots-Formular (Karte) */
.hero-form {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .35);
  color: var(--text);
}
.hero-form h3 { font-size: 23px; margin-bottom: 4px; }
.hero-form .form-note { font-size: 14px; color: var(--text-soft); margin-bottom: 18px; }

/* ---------- Formulare (global) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid #D9DDDB;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(17, 115, 180, .12); }
textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 12px; font-size: 15px; display: none; }
.form-status.ok { display: block; color: var(--primary); font-weight: 600; }
.form-status.err { display: block; color: #E53935; font-weight: 600; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Sektionen allgemein ---------- */
.section { padding: clamp(64px, 8vw, 100px) 0; }
.section--light { background: var(--light-bg); }
.section-head { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 12px;
}
.kicker::before { content: ''; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; opacity: .5; }
.section-head .kicker::after { content: ''; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; opacity: .5; }
.section-head p { margin-top: 14px; color: var(--text-soft); font-size: 17px; }

/* ---------- Partner-Marquee ---------- */
.partners { padding: 46px 0; border-bottom: 1px solid var(--border); background: #fff; }
.partners h5 {
  text-align: center;
  margin-bottom: 26px;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
}
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  padding-right: 72px;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track img {
  height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.marquee-track img:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ---------- Feature-Karten (Startseite) ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #7CD3FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.feature-card:hover .icon { background: var(--primary); color: #fff; transform: scale(1.06) rotate(-4deg); }
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card .pct { font-size: 34px; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.feature-card h4 { margin: 4px 0 10px; }
.feature-card p { font-size: 15px; color: var(--text-soft); }

/* ---------- Über-Sektion (Startseite) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid h2 { margin: 6px 0 16px; }
.about-grid .lead { color: var(--text-soft); }
.checklist { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.checklist li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--heading); }
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 14 11'%3E%3Cpath fill='%23fff' d='M4.75 8.15 1.6 5 .55 6.05l4.2 4.2 9-9L12.7.2z'/%3E%3C/svg%3E") center no-repeat;
  box-shadow: 0 4px 10px rgba(17, 115, 180, .3);
}
.stats-row { display: flex; gap: 20px; margin-top: 32px; }
.stat {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.stat .stat-number { font-size: 38px; font-weight: 800; color: var(--primary); line-height: 1.1; letter-spacing: -.02em; }
.stat .stat-label { color: var(--text-soft); font-weight: 500; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 60%, rgba(17, 115, 180, .18));
  pointer-events: none;
}
.about-img img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; transition: transform .8s var(--ease); }
.about-img:hover img { transform: scale(1.04); }

/* ---------- Service-Karten ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .img-wrap { overflow: hidden; }
.service-card img { height: 200px; width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover img { transform: scale(1.07); }
.service-card .body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 15px; flex: 1; color: var(--text-soft); }
.service-card .more {
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more::after { content: '→'; transition: transform .3s var(--ease); }
.service-card .more:hover { color: var(--primary-dark); }
.service-card .more:hover::after { transform: translateX(5px); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-card .img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.team-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 15, 14, .35));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.team-card:hover .img-wrap::after { opacity: 1; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease); }
.team-card:hover img { transform: scale(1.05); }
.team-card h4 { margin-bottom: 2px; }
.team-card span { color: var(--primary); font-weight: 600; font-size: 15px; }

/* ---------- Kundenstimmen ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '“';
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 84px;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
  opacity: .12;
  pointer-events: none;
}
.testimonial p { font-size: 15px; flex: 1; color: var(--text); }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--primary-soft); }
.testimonial .who .avatar-fallback {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonial .who strong { display: block; color: var(--heading); }
.testimonial .who span { font-size: 14px; color: var(--text-soft); }
.testimonial .rating {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--light-bg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--heading);
}
.testimonial .stars { color: #F5A623; letter-spacing: 2px; font-size: 15px; }
.proven-badge { display: flex; justify-content: center; margin-top: 44px; }
.proven-badge img { width: 112px; height: auto; transition: transform .3s var(--ease); }
.proven-badge a:hover img { transform: scale(1.06); }

/* ---------- CTA-Karte (wie das Original: blaue Box + Handwerker) ---------- */
.cta-section { padding-top: clamp(90px, 12vw, 150px); }
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  background: linear-gradient(120deg, #4FB9FF 0%, #2E9FE6 45%, #1D82C0 100%);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  color: #fff;
  box-shadow: 0 30px 70px rgba(17, 115, 180, .35);
}
.cta-card__text { position: relative; z-index: 1; max-width: 620px; }
.cta-card h2 { color: #fff; margin-bottom: 16px; }
.cta-card h2 em { color: rgba(255, 255, 255, .78); }
.cta-card p { font-size: 17px; margin-bottom: 28px; color: #EAF6FE; }
.cta-card__img {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 0;
  height: calc(100% + 64px);
  max-height: 460px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 18px 30px rgba(9, 62, 105, .35));
  pointer-events: none;
}
@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-card__text { max-width: none; }
  .cta-card__img { position: static; height: auto; max-height: 300px; margin: 28px auto -36px; }
}

/* ---------- Unterseiten-Hero (Cinematic, hell) ---------- */
.cine-page-hero {
  background: #fff;
  text-align: center;
  padding: clamp(52px, 8vh, 100px) 24px 0;
}
.cine-page-hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: .95;
  letter-spacing: -.026em;
  color: #000;
}
.cine-page-hero h1 em { color: #6F6F6F; }
.cine-page-hero .hero-sub {
  max-width: 40rem;
  margin: 22px auto 0;
  color: #6F6F6F;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
}
.cine-page-hero__media {
  max-width: var(--container);
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding: 0 24px;
}
.cine-page-hero__media .frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #DDE4E1 center/cover no-repeat;
}
.cine-page-hero__media .frame--video { background-image: url('/assets/image/all/cleaning.webp'); }
.cine-page-hero__media img,
.cine-page-hero__media video {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
.cine-page-hero__media .frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 65%, rgba(17, 115, 180, .14));
  pointer-events: none;
}
.cine-page-hero--slim { padding-bottom: clamp(24px, 4vh, 40px); }
@media (max-width: 768px) {
  .cine-page-hero__media img,
  .cine-page-hero__media video { aspect-ratio: 16 / 10; }
}

/* ---------- Leistungen ---------- */
.service-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #7CD3FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-tile:hover::before { transform: scaleX(1); }
.service-tile .icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 16px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.service-tile:hover .icon { background: var(--primary); color: #fff; transform: scale(1.06) rotate(-4deg); }
.service-tile .icon svg { width: 28px; height: 28px; }
.service-tile h4 { font-size: 18px; margin-bottom: 8px; }
.service-tile p { font-size: 14px; color: var(--text-soft); }
@media (max-width: 1100px) { .service-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .service-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .service-tiles { grid-template-columns: 1fr; } }

.video-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(100px, 13vw, 140px) 0;
  overflow: hidden;
  background: url('/assets/image/all/cleaning.webp') center/cover no-repeat;
}
.video-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 50%, rgba(17, 115, 180, .25), transparent 70%), rgba(12, 15, 14, .58);
}
.video-banner .container { position: relative; z-index: 1; }
.video-banner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 48px); }
.video-banner h2 em, .mini-banner h2 em, .green-banner h2 em, .cta h2 em { color: rgba(255, 255, 255, .72); }

.detail-section .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.detail-section .detail-grid.reverse .detail-img { order: 2; }
.detail-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.detail-img img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; transition: transform .8s var(--ease); }
.detail-img:hover img { transform: scale(1.04); }
.detail-list { margin-top: 26px; display: grid; gap: 8px; }
.detail-list > div {
  position: relative;
  padding: 16px 18px 16px 20px;
  border-left: 3px solid var(--light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.detail-list > div:hover { border-left-color: var(--primary); background: var(--light-bg); }
.detail-list h4 { margin-bottom: 6px; color: var(--heading); font-size: 18px; }
.detail-list p { font-size: 15px; color: var(--text-soft); }

.mini-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(72px, 9vw, 100px) 0;
  background: url('/assets/image/all/lawn-mower-P3TSP4Y.jpg') center/cover no-repeat;
}
.mini-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9, 62, 105, .88), rgba(17, 115, 180, .72)); }
.mini-banner .container { position: relative; max-width: 920px; }
.mini-banner h2 { color: #fff; }

/* ---------- Kontakt ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #7CD3FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.approach-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.approach-card:hover::before { transform: scaleX(1); }
.approach-card .icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 16px;
}
.approach-card .icon svg { width: 28px; height: 28px; }
.approach-card h4 { margin-bottom: 10px; }
.approach-card p { font-size: 15px; color: var(--text-soft); }
.approach-card p + p { margin-top: 8px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.info-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); background: #fff; }
.info-card .icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.info-card:hover .icon { background: var(--primary); color: #fff; }
.info-card .icon svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 18px; margin-bottom: 6px; }
.info-card a { color: var(--text); font-weight: 600; }
.info-card a:hover { color: var(--primary); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card .sub { margin-bottom: 22px; color: var(--text-soft); }
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { text-align: center; padding: 32px; }
.map-consent p { margin-bottom: 18px; font-size: 15px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq-intro p { margin-top: 14px; color: var(--text-soft); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(17, 115, 180, .35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s var(--ease);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-item .faq-body { padding: 0 20px 20px; font-size: 15px; color: var(--text-soft); }
@media (max-width: 992px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Über uns ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-grid h2 { margin: 6px 0 16px; }
.story-grid p { color: var(--text-soft); }
.story-grid p + p { margin-top: 14px; }
.story-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-img img { width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover; transition: transform .8s var(--ease); }
.story-img:hover img { transform: scale(1.04); }

.green-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(80px, 10vw, 110px) 0;
  background: url('/assets/image/all/worker3.webp') center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 992px) { .green-banner { background-attachment: scroll; } }
.green-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9, 62, 105, .9), rgba(17, 115, 180, .72)); }
.green-banner .container { position: relative; }
.green-banner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 48px); }

.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.counter-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.counter-card .counter-number { font-size: 46px; font-weight: 800; color: var(--primary); letter-spacing: -.02em; line-height: 1; }
.counter-card .counter-label { font-weight: 600; margin-top: 10px; color: var(--text); }

.badge-cards { display: grid; gap: 16px; margin-top: 28px; }
.badge-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.badge-card:hover { background: #fff; border-color: var(--border); }
.badge-card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.badge-card .icon svg { width: 22px; height: 22px; }
.badge-card h5 { margin-bottom: 4px; }
.badge-card p { font-size: 15px; color: var(--text-soft); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-card .num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(17, 115, 180, .55), rgba(17, 115, 180, .1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-soft); }

/* ---------- Rechtstexte ---------- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 26px; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; margin: 26px 0 10px; }
.legal-content p, .legal-content li { margin-bottom: 10px; font-size: 16px; color: var(--text); }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content a { word-break: break-word; }

/* ---------- Footer (Wellen-Form wie das Original) ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #3D9BD6 0%, #1D82C0 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0 0;
  margin-top: 120px;
}
.footer-waves {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.footer-waves svg { width: 100%; height: clamp(90px, 13vw, 190px); display: block; }
.site-footer a { color: #EAF6FE; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 48px; padding-bottom: 56px; }
.footer-col .footer-logo { width: 200px; height: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-col h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 17px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .85);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a::before { content: '›  '; color: #CDE9FB; font-weight: 700; }
.footer-contact li { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; color: #EAF6FE; }
.footer-contact li a::before, .footer-contact li span::before { content: none; }
.footer-contact .icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .16);
  border-radius: 9px;
  color: #fff;
  flex-shrink: 0;
}
.footer-contact .icon svg { width: 17px; height: 17px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer-social a::before { content: none !important; }
.footer-social a:hover { background: #fff; border-color: #fff; color: #1D82C0; transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.28);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #E3F2FC;
  font-size: 15px;
}
.footer-bottom ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom ul li { margin: 0; }
.footer-bottom a::before { content: none !important; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  z-index: 2000;
  display: none;
  animation: banner-in .5s var(--ease);
}
@keyframes banner-in { from { opacity: 0; transform: translateY(24px); } }
.cookie-banner.is-visible { display: block; }
.cookie-banner h5 { margin-bottom: 8px; }
.cookie-banner p { font-size: 14px; margin-bottom: 18px; color: var(--text-soft); }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 20px; font-size: 15px; }

/* ---------- Scroll-to-top ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 10px 26px rgba(17, 115, 180, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.to-top svg { width: 19px; height: 19px; }

/* ---------- WhatsApp-FAB ---------- */
.wa-fab {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 14px 32px rgba(37, 211, 102, .55); }
.wa-fab svg { width: 27px; height: 27px; }

/* ---------- Footer-Zusatz ---------- */
.footer-about { color: #E3F2FC; font-size: 15px; margin-bottom: 20px; max-width: 340px; }

/* Anker unter Sticky-Header sauber anspringen */
[id] { scroll-margin-top: 90px; }

/* ---------- Fehlerseite (404) ---------- */
.error-page { text-align: center; padding: clamp(90px, 14vw, 160px) 0; }
.error-page .code {
  font-size: clamp(90px, 14vw, 160px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--primary), rgba(17, 115, 180, .25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-page h1 { font-size: clamp(24px, 3vw, 36px); margin: 12px 0 14px; }
.error-page p { color: var(--text-soft); margin-bottom: 28px; }

/* ---------- Animationen ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger in Grids */
.features .reveal:nth-child(2), .services-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2), .counters-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2), .approach-grid .reveal:nth-child(2),
.team-grid .reveal:nth-child(2), .service-tiles .reveal:nth-child(2),
.contact-info-grid .reveal:nth-child(2) { transition-delay: .09s; }
.features .reveal:nth-child(3), .services-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3), .counters-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3), .approach-grid .reveal:nth-child(3),
.team-grid .reveal:nth-child(3), .service-tiles .reveal:nth-child(3),
.contact-info-grid .reveal:nth-child(3) { transition-delay: .18s; }
.features .reveal:nth-child(4), .services-grid .reveal:nth-child(4),
.testimonials-grid .reveal:nth-child(4), .counters-grid .reveal:nth-child(4),
.steps-grid .reveal:nth-child(4), .service-tiles .reveal:nth-child(4) { transition-delay: .27s; }
.service-tiles .reveal:nth-child(5) { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  html { scroll-behavior: auto; }
  .btn::after { display: none; }
}

/* ---------- Responsive Grids ---------- */
@media (max-width: 1100px) {
  .features, .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .about-grid, .story-grid, .contact-split, .detail-section .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-section .detail-grid.reverse .detail-img { order: 0; }
  .detail-img img, .story-img img { aspect-ratio: 16 / 10; }
  .approach-grid, .contact-info-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .features, .services-grid, .testimonials-grid, .counters-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-form { padding: 26px 20px; }
}
