/* ============================================================
   Weber Clean — Design System
   Farben & Typografie gemäß Brand Kit (Juni 2026)
   ============================================================ */

:root {
  --navy: #0E2C49;
  --blue: #1577C9;
  --aqua: #18D2B4;
  --steel: #5C6B7A;
  --tint: #EAF4FC;
  --white: #FFFFFF;

  --navy-soft: #14385C;
  --shadow-sm: 0 2px 10px rgba(14, 44, 73, 0.07);
  --shadow-md: 0 10px 30px rgba(14, 44, 73, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 44, 73, 0.16);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --container: 1180px;
  --header-h: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--steel);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.eyebrow--light { color: var(--aqua); }

.lead { font-size: 1.12rem; }

/* ---------- Layout ---------- */

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

section { position: relative; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section--tint { background: var(--tint); }

.section--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

/* Slogan-Band */
.slogan-band {
  background: var(--navy);
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.slogan-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em 1.1em;
  font-family: var(--font, "Poppins", sans-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.slogan-lines b { color: var(--aqua); font-weight: 700; }
.slogan-resolve {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.6);
}
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: #1268b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 119, 201, 0.35), 0 0 0 4px rgba(24, 210, 180, 0.18);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(14, 44, 73, 0.25);
}
.btn--outline:hover {
  border-color: var(--aqua);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header .logo { display: block; }
.site-header .logo img { height: 76px; width: auto; transition: height 0.35s ease; }
.site-header.is-scrolled .logo img { height: 62px; }
.logo-navy { display: none; }

.main-nav { display: flex; align-items: center; gap: 2rem; }

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--aqua);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-ctas { display: flex; align-items: center; gap: 0.8rem; }
.header-ctas .btn { padding: 0.65rem 1.4rem; font-size: 0.88rem; }

/* Header im "scrolled"-Zustand: weiß mit Navy-Logo */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 80px;
}
.site-header.is-scrolled .logo-white { display: none; }
.site-header.is-scrolled .logo-navy { display: block; }
.site-header.is-scrolled .main-nav a { color: var(--navy); }
.site-header.is-scrolled .btn--outline-light { color: var(--navy); border-color: rgba(14, 44, 73, 0.25); }
.site-header.is-scrolled .btn--outline-light:hover { color: var(--blue); border-color: var(--aqua); }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 110;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span { background: var(--navy); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header.nav-open .main-nav { transform: translateX(0); }
  .main-nav a { color: var(--navy) !important; font-size: 1.1rem; }

  .header-ctas .btn--outline-light { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #103B63 55%, #11507F 100%);
  color: #fff;
  overflow: hidden;
}

.hero--home { min-height: 100vh; display: flex; align-items: center; }

.hero--sub {
  padding: calc(var(--header-h) + 4.5rem) 0 4.5rem;
}

.hero .container { position: relative; z-index: 2; }

.hero-inner { max-width: 760px; padding: calc(var(--header-h) + 3rem) 0 5rem; }

.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--aqua); }

.hero .sub {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--aqua); }

/* Interaktiver Hintergrund-Canvas */
.bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- USP-Leiste ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.usp {
  background: #fff;
  border: 1px solid var(--tint);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.usp h3 { font-size: 1.02rem; margin: 0.9rem 0 0.4rem; }
.usp p { font-size: 0.9rem; }

.icon-tile {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background 0.3s ease, color 0.3s ease;
}
.icon-tile svg { width: 24px; height: 24px; }

/* ---------- Leistungen ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: #fff;
  border: 1px solid var(--tint);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover .icon-tile { background: var(--aqua); color: var(--navy); }

.card h3 { margin: 1.2rem 0 0.5rem; }
.card p { font-size: 0.94rem; flex: 1; }

.card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue);
}
.card .more svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.card:hover .more svg { transform: translateX(4px); }

.card ul {
  list-style: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.card ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

/* ---------- Zahlen ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat .num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat .num .suffix { color: var(--aqua); }
.stat .label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Vorher/Nachher ---------- */

.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.ba-layer { position: absolute; inset: 0; }
.ba-layer svg { width: 100%; height: 100%; }

.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba, 50%)) 0 0);
}

.ba-handle {
  position: absolute;
  z-index: 3;
  top: 0; bottom: 0;
  left: var(--ba, 50%);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(14, 44, 73, 0.4);
}
.ba-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 44, 73, 0.72);
  color: #fff;
  pointer-events: none;
}
.ba-tag--before { left: 14px; }
.ba-tag--after { right: 14px; background: var(--aqua); color: var(--navy); }

/* ---------- Prozess (Pinned) ---------- */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  backdrop-filter: blur(4px);
}

.step .step-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--aqua);
}

.step h3 { color: #fff; margin: 0.8rem 0 0.5rem; font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

.process-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  margin: 0 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.process-line .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- Über uns / Region ---------- */

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

.split .text p + p { margin-top: 1rem; }

.region-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.region-card h3 { color: #fff; margin-bottom: 1.2rem; }

.region-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; position: relative; z-index: 2; }
.region-tags span {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.region-tags span:hover { border-color: var(--aqua); color: var(--aqua); }

/* ---------- Branchen ---------- */

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.industry {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--tint);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.industry .icon-tile { width: 42px; height: 42px; flex: none; }
.industry .icon-tile svg { width: 21px; height: 21px; }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info h2 { color: #fff; }
.contact-info > p { margin-top: 1rem; color: rgba(255, 255, 255, 0.75); }

.contact-lines { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-lines a, .contact-lines div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.contact-lines svg { width: 20px; height: 20px; color: var(--aqua); flex: none; }
.contact-lines a:hover { color: var(--aqua); }

.form-card {
  background: #fff;
  color: var(--steel); /* feste Textfarbe: erbt sonst Weiß aus dunklen Sektionen */
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-note { color: var(--steel); }
.form-note a { color: var(--blue); text-decoration: underline; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--tint);
  border-radius: var(--radius-sm);
  background: #FBFDFF;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 119, 201, 0.12);
}

.field textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: 0.8rem; margin-top: 1rem; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(24, 210, 180, 0.12);
  border: 1px solid var(--aqua);
  color: var(--navy);
  font-size: 0.9rem;
}
.form-success.is-visible { display: block; }

/* ---------- CTA-Band ---------- */

.cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { max-width: 620px; margin: 0 auto; }
.cta-band p { max-width: 520px; margin: 1.2rem auto 0; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .logo img { height: 46px; width: auto; }
.footer-brand p { margin-top: 1.2rem; max-width: 280px; }

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer ul a { color: rgba(255, 255, 255, 0.65); transition: color 0.25s ease; }
.site-footer ul a:hover { color: var(--aqua); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom a:hover { color: var(--aqua); }

/* Agentur-Credit: mittig & hervorgehoben */
.footer-credit {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-credit strong { color: var(--aqua); font-weight: 600; }
.footer-credit:hover {
  color: #fff !important;
  border-color: var(--aqua);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 210, 180, 0.18);
}

@media (max-width: 700px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Rechtsseiten ---------- */

.legal-content { max-width: 760px; }
.legal-content h2 { margin: 2.5rem 0 0.8rem; font-size: 1.3rem; }
.legal-content p + p { margin-top: 0.8rem; }
.placeholder-note {
  background: rgba(24, 210, 180, 0.1);
  border: 1px solid var(--aqua);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2rem;
}

/* ---------- Cookie-Banner ---------- */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  max-width: 420px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--aqua);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.cookie-banner-actions .btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 1.3rem 1.4rem;
  }
}

/* ---------- Animations-Grundzustände ---------- */

.reveal { opacity: 0; transform: translateY(32px); }
.no-js .reveal, .reduced-motion .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .usp-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .industries { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .ba-wrap, .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .site-header .logo img { height: 58px; }
  .site-header.is-scrolled .logo img { height: 52px; }
  .cards-grid, .industries, .process-steps, .form-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .form-card { padding: 1.6rem; }
  .hero-inner { padding-top: calc(var(--header-h) + 1.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
