/* =============================================================
   microsoft-solution.de — Production website styles
   Built on the project's design tokens (colors_and_type.css).
   ============================================================= */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --brand-primary: #0B2447;
  --brand-primary-90: #1E3358;
  --brand-primary-70: #455A7D;
  --brand-accent: #19A7CE;
  --brand-accent-dark: #137FA1;
  --brand-accent-light: #5EC4DF;
  --brand-warm: #F2994A;
  --ink-1: #0A1424;
  --ink-2: #2B3A55;
  --ink-3: #5A6987;
  --ink-4: #8B97AE;
  --ink-5: #C5CDDB;
  --ink-6: #E4E9F2;
  --paper: #F5F7FB;
  --paper-2: #ECEFF6;
  --white: #FFFFFF;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-2: 8px;
  --r-3: 12px;
  --r-4: 16px;

  --elev-1: 0 1px 2px rgba(11,36,71,0.06), 0 1px 3px rgba(11,36,71,0.04);
  --elev-2: 0 4px 12px rgba(11,36,71,0.08), 0 2px 4px rgba(11,36,71,0.05);
  --elev-3: 0 16px 40px rgba(11,36,71,0.12), 0 4px 12px rgba(11,36,71,0.06);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --content-max: 1280px;
  --content-pad: clamp(20px, 4vw, 56px);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand-accent); color: #fff; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--content-pad);
  padding-right: var(--content-pad);
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 250ms var(--ease-out),
              backdrop-filter 250ms var(--ease-out),
              border-color 250ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--ink-6);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 250ms var(--ease-out);
}
.logo .dot { color: var(--brand-accent); margin: 0 1px; }
.site-header.scrolled .logo { color: var(--brand-primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  transition: color 150ms var(--ease-out);
  position: relative;
}
.nav a:hover { color: #fff; }
.site-header.scrolled .nav a { color: var(--ink-2); }
.site-header.scrolled .nav a:hover { color: var(--brand-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand-accent);
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  transition: background 150ms var(--ease-out);
}
.nav-cta:hover { background: var(--brand-accent-dark); color: #fff !important; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}
.site-header.scrolled .lang-switch { color: var(--ink-3); }
.lang-switch .active { color: #fff; font-weight: 500; }
.site-header.scrolled .lang-switch .active { color: var(--brand-primary); }
.lang-switch a:hover { color: var(--brand-accent); }

/* Mobile menu trigger */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  color: #fff;
}
.site-header.scrolled .menu-toggle { color: var(--brand-primary); }

/* =============================================================
   HERO with video background
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-primary);
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media canvas {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Fallback animated mesh — visible until video loads, hidden when video plays */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(25,167,206,0.35), transparent 60%),
    radial-gradient(900px 500px at 15% 75%, rgba(11,36,71,0.0), transparent 60%),
    linear-gradient(135deg, #061128 0%, #0B2447 50%, #102E5A 100%);
}
.hero.video-ready .hero-mesh { opacity: 0; transition: opacity 600ms ease; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,36,71,0.55) 0%, rgba(11,36,71,0.72) 60%, rgba(11,36,71,0.88) 100%),
    linear-gradient(90deg, rgba(11,36,71,0.5) 0%, transparent 50%);
}
/* Grid blueprint texture overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(1200px 800px at 60% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(1200px 800px at 60% 50%, #000 30%, transparent 80%);
}

.hero-content {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 96px;
  max-width: 920px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 0 rgba(25,167,206,0.6);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(25,167,206,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(25,167,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(25,167,206,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--brand-accent); }

.hero-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 0 40px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  border: 0;
  transition: all 150ms var(--ease-out);
}
.btn-primary { background: var(--brand-accent); color: #fff; }
.btn-primary:hover { background: var(--brand-accent-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(25,167,206,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45); }
.btn .arrow { font-family: var(--font-mono); transition: transform 200ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero trust strip — sits at the bottom of the hero */
.hero-trust {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, transparent, rgba(6,17,40,0.4));
}
.hero-trust .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
}
.hero-trust .badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.hero-trust .badge .dot { color: var(--brand-accent); }
.hero-trust .badge strong { font-weight: 500; color: #fff; }

/* Scroll hint — only on very wide screens, in the right gutter so it
   can never collide with the centered hero CTA row */
.scroll-hint { display: none; }
@media (min-width: 1440px) {
  .scroll-hint {
    position: absolute;
    right: 56px;
    bottom: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    animation: bob 2.4s ease-in-out infinite;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .scroll-hint .line {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  }
}
@keyframes bob {
  0%, 100% { transform: rotate(180deg) translateX(0); }
  50%      { transform: rotate(180deg) translateX(-6px); }
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section.paper { background: var(--paper); }
.section.paper-2 { background: var(--paper-2); }
.section.white { background: var(--white); }
.section.dark { background: var(--brand-primary); color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head .lead { max-width: 720px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  margin-bottom: 16px;
}
.dark .eyebrow { color: var(--brand-accent-light); }
.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink-1);
  text-wrap: balance;
}
.dark h2 { color: #fff; }
.section h2 .accent { color: var(--brand-accent); }
.section-head .lead p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.dark .section-head .lead p { color: rgba(255,255,255,0.78); }

/* =============================================================
   SERVICES
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-6);
  border: 1px solid var(--ink-6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--elev-1);
}
.dark .services-grid {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}
.service {
  background: #fff;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 200ms var(--ease-out);
}
.dark .service { background: var(--brand-primary); }
.service:hover { background: var(--paper); }
.dark .service:hover { background: var(--brand-primary-90); }

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(25,167,206,0.12);
  border-radius: 10px;
  color: var(--brand-accent-dark);
}
.service-icon svg { width: 22px; height: 22px; }
.dark .service-icon { background: rgba(25,167,206,0.18); color: var(--brand-accent-light); }

.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-1);
  line-height: 1.2;
}
.dark .service h3 { color: #fff; }
.service p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.dark .service p { color: rgba(255,255,255,0.72); }

.service .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--paper-2);
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.dark .tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); }

/* =============================================================
   STATS STRIP
   ============================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--ink-6);
  border-bottom: 1px solid var(--ink-6);
}
.dark .stats { border-color: rgba(255,255,255,0.12); }
.stat .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.dark .stat .n { color: #fff; }
.stat .n .unit { font-size: 0.45em; color: var(--brand-accent); font-weight: 500; }
.stat .l {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 12px;
  line-height: 1.4;
}
.dark .stat .l { color: rgba(255,255,255,0.62); }

/* =============================================================
   PROCESS
   ============================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 24px 28px;
  background: #fff;
  border: 1px solid var(--ink-6);
  border-radius: 12px;
  transition: all 200ms var(--ease-out);
}
.step:hover { transform: translateY(-2px); box-shadow: var(--elev-2); border-color: transparent; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-accent-dark);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 24px;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink-1);
}
.step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* =============================================================
   CASE / SPLIT
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-figure {
  position: relative;
  background: linear-gradient(135deg, #0B2447 0%, #16315C 100%);
  border-radius: 16px;
  aspect-ratio: 5/4;
  overflow: hidden;
  box-shadow: var(--elev-3);
}
.split-figure::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(600px 400px at 30% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(600px 400px at 30% 30%, #000, transparent 80%);
}
.split-figure .figure-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  text-align: center;
  padding: 32px;
}
.figure-mark .quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 480px;
  text-wrap: balance;
}
.figure-mark .quote::before { content: "„"; color: var(--brand-accent); }
.figure-mark .quote::after  { content: """; color: var(--brand-accent); }
.figure-mark .who {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
}

.split-body h2 { margin-bottom: 24px; }
.split-body p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin: 0 0 16px; }
.split-body .features { margin: 32px 0 36px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.split-body .features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.split-body .features svg { flex-shrink: 0; color: var(--brand-accent-dark); margin-top: 2px; }

/* =============================================================
   INDUSTRIES
   ============================================================= */
.industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid var(--ink-6);
  border-radius: 12px;
  text-align: center;
  transition: all 200ms var(--ease-out);
}
.industry:hover {
  border-color: var(--brand-accent);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--elev-2);
}
.industry svg { width: 28px; height: 28px; color: var(--brand-primary); }
.industry span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-1);
}

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-banner {
  background: var(--brand-primary);
  border-radius: 20px;
  padding: 80px clamp(32px, 6vw, 80px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(800px 400px at 110% -20%, rgba(25,167,206,0.4), transparent 60%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  font-size: 14px;
}
.contact-card .k { color: rgba(255,255,255,0.6); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.contact-card .v { color: #fff; }
.contact-card .v a { color: var(--brand-accent-light); }
.contact-card .v a:hover { text-decoration: underline; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: #061128;
  color: rgba(255,255,255,0.72);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo { font-size: 26px; }
.footer-brand p {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 14px; transition: color 150ms var(--ease-out); }
.footer-col a:hover { color: var(--brand-accent-light); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.02em;
}
.footer-legal .legal-links { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--brand-accent-light); }

/* =============================================================
   ENTRANCE ANIMATIONS
   ============================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.fade-up.in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .cta-banner { grid-template-columns: 1fr; padding: 56px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav .nav-links { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .services-grid, .industries, .process { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-top: calc(var(--header-h) + 40px); padding-bottom: 56px; }
  .hero-trust { position: static; padding: 24px 0 32px; }
  .scroll-hint { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
