:root {
  --ink: #16181b;
  --ink-soft: #4d535a;
  --surface: #ffffff;
  --surface-alt: #f4f5f6;
  --surface-dark: #171a1e;
  --line: #dfe2e5;
  --orange: #f26522;
  --orange-action: #c6440a;
  --orange-dark: #b63a07;
  --orange-soft: #fff0e8;
  --success: #1f7a4c;
  --error: #b42318;
  --max-width: 1180px;
  --shadow-sm: 0 8px 28px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 70px rgba(10, 13, 18, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(242, 101, 34, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }

.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { color: #fff; background: var(--surface-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.section-dark .eyebrow { color: #ff9a68; }

h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.52rem); }
h4 { font-size: 1rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.25em; }

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  line-height: 1.55;
}

.section-dark .lead { color: rgba(255, 255, 255, 0.72); }

.text-orange { color: var(--orange); }
.muted { color: var(--ink-soft); }
.small { font-size: 0.9rem; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.06);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 196px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; margin: 0; padding: 0; align-items: center; gap: 28px; list-style: none; }

.nav-link {
  position: relative;
  padding: 29px 0;
  color: #33383d;
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { padding: 12px 18px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { background: var(--ink); transform: translateY(1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { background: var(--ink); transform: translateY(-1px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--orange-action);
  border: 1px solid var(--orange-action);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(242, 101, 34, 0.25);
  transform: translateY(-2px);
}

.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button-secondary:hover { color: var(--ink); background: #fff; border-color: #bcc2c8; box-shadow: var(--shadow-sm); }
.button-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,0.42); }
.button-ghost:hover { background: rgba(255,255,255,0.09); border-color: #fff; }
.button-small { min-height: 44px; padding: 11px 17px; font-size: 0.82rem; }

.button svg, .text-link svg { width: 18px; height: 18px; }

.button-group { display: flex; margin-top: 32px; flex-wrap: wrap; gap: 12px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 84px));
  color: #fff;
  background: #111 url("../images/hero-industrie.webp") center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.94) 0%, rgba(11, 13, 16, 0.74) 54%, rgba(11, 13, 16, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.42), transparent 45%);
  content: "";
}

.hero-inner {
  display: grid;
  padding-top: 92px;
  padding-bottom: 92px;
  align-items: center;
  grid-template-columns: minmax(0, 770px) 1fr;
}

.hero h1 { max-width: 820px; }
.hero .lead { max-width: 690px; color: rgba(255,255,255,0.82); }

.hero-badges {
  display: flex;
  margin: 0 0 24px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.hero-badges li {
  padding: 7px 11px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-strip { color: #fff; background: var(--surface-dark); }

.trust-grid {
  display: grid;
  min-height: 120px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-value { display: block; color: #fff; font-size: 1.25rem; font-weight: 820; letter-spacing: -0.03em; }
.trust-label { display: block; color: rgba(255,255,255,0.6); font-size: 0.86rem; }

.section-heading {
  display: flex;
  margin-bottom: 50px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div { max-width: 760px; }
.section-heading p:last-child { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 32px;
  flex-direction: column;
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; min-height: 310px; }

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  background: var(--orange-soft);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(242, 101, 34, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::after { transform: scale(1.18); }

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 14px;
}

.card-icon svg { width: 28px; height: 28px; }
.service-card p { color: var(--ink-soft); }
.service-card .text-link { position: relative; z-index: 1; margin-top: auto; }

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(48px, 7vw, 100px);
}

.split.reverse { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); }

.media-frame {
  position: relative;
  background: #d9dde0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.square { aspect-ratio: 1 / 1; }
.media-frame.landscape { aspect-ratio: 1.35 / 1; }

.media-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(17, 20, 24, 0.86);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 0.29em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  counter-reset: process;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  content: "0" counter(process);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step p { margin-bottom: 0; color: rgba(255,255,255,0.65); font-size: 0.94rem; }

.stats-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 20px;
  background: var(--surface-alt);
  border-radius: 14px;
}

.stat strong { display: block; font-size: 1.4rem; letter-spacing: -0.03em; }
.stat span { color: var(--ink-soft); font-size: 0.82rem; }

.industries {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.industries li {
  padding: 9px 13px;
  color: #3f454b;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 650;
}

.cta-panel {
  display: grid;
  padding: clamp(36px, 6vw, 72px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(242,101,34,0.36), transparent 30%),
    var(--surface-dark);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 48px;
  overflow: hidden;
}

.cta-panel h2 { max-width: 760px; margin-bottom: 0.25em; }
.cta-panel p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,0.68); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

.page-hero {
  position: relative;
  padding: 112px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(242,101,34,0.24), transparent 27%),
    var(--surface-dark);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  content: "";
}

.page-hero h1 { max-width: 940px; font-size: clamp(2.65rem, 6vw, 5.25rem); }
.page-hero .lead { color: rgba(255,255,255,0.72); }

.breadcrumbs {
  display: flex;
  margin: 0 0 28px;
  padding: 0;
  gap: 10px;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li + li::before { margin-right: 10px; content: "/"; }
.breadcrumbs a { color: rgba(255,255,255,0.78); text-decoration: none; }

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 80px;
}

.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.75em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.6em; }
.prose > :first-child { margin-top: 0; }
.prose a { color: var(--orange-dark); }

.sidebar-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-card .button { width: 100%; margin-top: 10px; }
.sidebar-card ul { margin: 20px 0; padding: 0; list-style: none; }
.sidebar-card li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.sidebar-card li:last-child { border-bottom: 0; }

.feature-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-box {
  padding: 26px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature-box p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.94rem; }

.seminar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.seminar-card {
  display: flex;
  min-height: 250px;
  padding: 30px;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.seminar-card .tag { align-self: flex-start; }
.seminar-card .text-link { margin-top: auto; }

.tag {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 10px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 7vw, 100px);
}

.contact-details { display: grid; margin-top: 34px; gap: 20px; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.contact-row svg { width: 25px; height: 25px; color: var(--orange); }
.contact-row strong { display: block; margin-bottom: 2px; }
.contact-row a { color: var(--ink); }

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd0d5;
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,101,34,0.12);
  outline: 0;
}

.field textarea { min-height: 160px; resize: vertical; }
.field small { color: var(--ink-soft); }

.checkbox-field {
  display: grid;
  margin: 6px 0 4px;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 0.86rem;
}

.checkbox-field input { margin-top: 5px; accent-color: var(--orange); }
.checkbox-field a { color: var(--orange-dark); }

.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.form-status.is-visible { display: block; }
.form-status.success { color: #14532d; background: #ecfdf3; border: 1px solid #a6f4c5; }
.form-status.error { color: #7a271a; background: #fff1f0; border: 1px solid #fecdca; }

.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-note {
  margin-bottom: 36px;
  padding: 18px 20px;
  color: #5b4613;
  background: #fffaeb;
  border: 1px solid #fedf89;
  border-radius: 12px;
}

.site-footer { color: rgba(255,255,255,0.7); background: #101215; }
.footer-main { display: grid; padding: 72px 0 54px; grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr; gap: 48px; }
.footer-brand img { width: 210px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: 0.96; }
.footer-brand p { max-width: 340px; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li { margin-bottom: 9px; }
.footer-list a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-list a:hover { color: #fff; text-decoration: underline; }
.footer-contact a { color: #fff; }
.footer-bottom { display: flex; padding: 22px 0 28px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.7); text-decoration: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 34px 20px;
    align-content: start;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-list { display: grid; align-items: stretch; gap: 0; }
  .nav-link { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.03rem; }
  .nav-link::after { display: none; }
  .nav-cta { justify-self: start; margin-top: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .trust-item:nth-child(3) { padding-left: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 50px; }
  .sidebar-card { position: static; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 164px; }
  .site-nav { top: 72px; }
  .hero { min-height: 680px; }
  .hero-inner { padding-top: 70px; padding-bottom: 70px; grid-template-columns: 1fr; }
  .hero::before { background: linear-gradient(90deg, rgba(11,13,16,0.95), rgba(11,13,16,0.63)); }
  .hero .button-group { display: grid; }
  .hero .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3) { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading .button { margin-top: 20px; }
  .services-grid, .seminar-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5), .service-card:last-child { min-height: 0; grid-column: auto; }
  .service-card { padding: 26px; }
  .card-icon { margin-bottom: 30px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .split.reverse .media-frame { order: 2; }
  .process-grid, .stats-grid, .feature-grid { grid-template-columns: 1fr; }
  .process-step::before { margin-bottom: 28px; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { align-items: stretch; }
  .page-hero { padding: 82px 0 72px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { padding: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .button, .sidebar-card, .cta-panel { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .page-hero { padding: 30px 0; color: #000; background: none; }
  .page-hero .lead, .breadcrumbs, .breadcrumbs a { color: #333; }
  a { color: #000; }
}
