/* =============================================================
   ZSSK Ltd — Homepage stylesheet
   Brand: Red #BF1E2E · Dark grey #1A1A1F
   Tagline: Close | Consolidate | Report
   ============================================================= */

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

:root {
  --brand-red: #BF1E2E;
  --brand-red-bright: #D8253A;
  --brand-grey: #1A1A1F;
  --brand-grey-mid: #3A3A3D;
  --brand-grey-light: #6B6B6E;
  --ink: #1A1A1C;
  --paper: #FFFFFF;
  --soft: #F8F8F8;
  --soft-2: #EFEFF0;
  --rule: #E5E5E6;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
a { color: inherit; text-decoration: none; }

@keyframes slow-drift {
  0% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-8px) scale(1.015); }
  100% { transform: translateX(0) scale(1); }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(26, 26, 31, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.78); letter-spacing: 0.8px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 12px 24px;
  background: var(--brand-red); color: #fff !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 1.4px !important;
  border: 1px solid var(--brand-red);
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: transparent; border-color: #fff; }

/* Hamburger button — hidden until mobile breakpoint */
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background: var(--brand-grey);
  color: #fff;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 0 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,26,31,0.82) 0%, rgba(26,26,31,0.5) 45%, rgba(26,26,31,0.15) 100%),
    linear-gradient(to bottom, rgba(26,26,31,0.25) 0%, rgba(26,26,31,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-stripes {
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: repeating-linear-gradient(
    -55deg,
    var(--brand-red) 0 4px,
    transparent 4px 24px
  );
  opacity: 0.025;
  pointer-events: none;
  z-index: 2;
  animation: slow-drift 18s ease-in-out infinite;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700;
  color: var(--brand-red-bright);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ""; width: 40px; height: 1px; background: var(--brand-red-bright);
}
.hero h1 {
  font-size: 92px; font-weight: 700; color: #fff;
  letter-spacing: -2.5px; line-height: 0.98; margin-bottom: 40px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--brand-red-bright); }
.hero-sub {
  font-size: 21px; color: rgba(255,255,255,0.92);
  line-height: 1.5; max-width: 720px;
  margin-bottom: 52px; font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-cta-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 38px;
  background: var(--brand-red); color: #fff !important;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--brand-red);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-primary:hover { background: transparent; border-color: #fff; transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-primary .arrow { display: inline-block; transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(6px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 0; color: #fff !important;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--brand-red-bright); color: var(--brand-red-bright) !important; }

/* ---------- STATS ---------- */
.stats-band { background: #fff; padding: 96px 0; border-bottom: 1px solid var(--rule); }
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; }
.stat-item { border-left: 2px solid var(--brand-red); padding-left: 28px; }
.stat-number {
  font-size: 70px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -2.5px; line-height: 1; margin-bottom: 18px;
}
.stat-number .small { font-size: 34px; vertical-align: super; opacity: 0.7; margin: 0 2px; }
.stat-label {
  font-size: 12px; color: var(--brand-grey-light);
  text-transform: uppercase; letter-spacing: 2.2px;
  font-weight: 600; line-height: 1.6;
}

/* ---------- SECTION BLOCKS ---------- */
.section-block { padding: 140px 0; border-bottom: 1px solid var(--rule); }
.section-block.dark {
  background: var(--brand-grey); color: #fff;
  border-bottom: none; position: relative; overflow: hidden;
}
.section-block.dark::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    var(--brand-red) 0 4px,
    transparent 4px 28px
  );
  opacity: 0.03; pointer-events: none;
}
.section-block.dark > * { position: relative; z-index: 2; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-text .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--brand-red);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.split-text .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--brand-red); }
.dark .split-text .eyebrow { color: var(--brand-red-bright); }
.dark .split-text .eyebrow::before { background: var(--brand-red-bright); }
.split-text h2 {
  font-size: 56px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -1.4px; line-height: 1.05; margin-bottom: 32px;
}
.dark .split-text h2 { color: #fff; }
.split-text h2 .accent { color: var(--brand-red); }
.dark .split-text h2 .accent { color: var(--brand-red-bright); }
.split-text p {
  font-size: 17px; color: var(--brand-grey-mid);
  line-height: 1.7; margin-bottom: 18px; font-weight: 300;
}
.dark .split-text p { color: rgba(255,255,255,0.85); }
.split-text .link-out {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  color: var(--brand-red); font-size: 12px; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  border-bottom: 1px solid var(--brand-red);
  padding-bottom: 6px;
  transition: gap 0.25s;
}
.split-text .link-out:hover { gap: 18px; }
.dark .split-text .link-out { color: var(--brand-red-bright); border-color: var(--brand-red-bright); }

.visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }

.visual-label-overlay {
  position: absolute;
  top: 24px; left: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  backdrop-filter: blur(8px);
}
.visual-label-light {
  position: absolute;
  top: 24px; left: 24px;
  color: var(--brand-grey-mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(255,255,255,0.7);
  padding: 8px 14px;
  backdrop-filter: blur(8px);
}

/* Approach typographic flow */
.visual-process {
  background: linear-gradient(135deg, #25252B 0%, #1A1A1F 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.visual-process::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    var(--brand-red) 0 8px,
    transparent 8px 36px
  );
  opacity: 0.07;
}
.approach-flow { position: relative; z-index: 2; width: 100%; text-align: center; }
.approach-flow .word {
  font-size: 42px; font-weight: 700; letter-spacing: -0.5px;
  color: #fff; margin: 22px 0; line-height: 1;
}
.approach-flow .word .num {
  display: block; font-size: 11px;
  color: var(--brand-red-bright); letter-spacing: 4px;
  margin-bottom: 10px; font-weight: 600;
}
.approach-flow .arrow-down {
  display: block; margin: 18px auto;
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--brand-red-bright), transparent);
}

/* Photographic visual treatment */
.visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) saturate(0.95);
  transition: filter 0.4s ease;
}
.visual:hover .visual-photo {
  filter: brightness(1.02) saturate(1.0);
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 140px 0; background: var(--soft);
  border-bottom: 1px solid var(--rule);
}
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--brand-red);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px;
}
.services-header h2 {
  font-size: 56px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -1.4px; line-height: 1.05;
  max-width: 780px; margin: 0 auto;
}
.services-header h2 .accent { color: var(--brand-red); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: #fff; border: 1px solid var(--rule);
  padding: 44px 36px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--brand-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--brand-red);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-size: 11px; font-weight: 700; color: var(--brand-red);
  letter-spacing: 2.5px; margin-bottom: 24px; display: block;
}
.service-card h3 {
  font-size: 22px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -0.3px; margin-bottom: 16px; line-height: 1.25;
}
.service-card p { font-size: 14px; line-height: 1.7; color: var(--brand-grey-mid); }

/* ---------- TEAM ---------- */
.team-section { padding: 140px 0; background: #fff; }
.team-header { margin-bottom: 80px; max-width: 800px; }
.team-header .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--brand-red);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.team-header .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--brand-red); }
.team-header h2 {
  font-size: 56px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -1.4px; line-height: 1.05; margin-bottom: 24px;
}
.team-header p { font-size: 18px; color: var(--brand-grey-mid); line-height: 1.65; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.team-card {
  border-top: 1px solid var(--rule); padding-top: 36px;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--brand-red); }
.team-photo-wrap {
  width: 150px; height: 150px; margin-bottom: 32px;
  border-radius: 50%; overflow: hidden;
}
.team-photo-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; }
.team-card h3 {
  font-size: 26px; font-weight: 700; color: var(--brand-grey);
  letter-spacing: -0.4px; margin-bottom: 6px;
}
.team-card .team-role {
  font-size: 11px; font-weight: 700; color: var(--brand-red);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.team-card .team-pedigree {
  font-size: 14px; color: var(--brand-grey-light);
  font-style: italic; margin-bottom: 18px;
}
.team-card .team-spec { font-size: 14px; color: var(--brand-grey-mid); line-height: 1.65; }

/* ---------- CTA + CONTACT FORM ---------- */
.cta-section {
  background: var(--brand-grey); color: #fff;
  padding: 140px 0 120px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    var(--brand-red) 0 4px,
    transparent 4px 32px
  );
  opacity: 0.04; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--brand-red-bright);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 28px;
}
.cta-section h2 {
  font-size: 64px; font-weight: 700; color: #fff;
  letter-spacing: -2px; line-height: 1.05; margin-bottom: 28px;
  max-width: 940px; margin-left: auto; margin-right: auto;
}
.cta-section h2 .accent { color: var(--brand-red-bright); }
.cta-section .cta-lede {
  font-size: 18px; color: rgba(255,255,255,0.78);
  line-height: 1.6; max-width: 620px; margin: 0 auto 56px auto;
  font-weight: 300;
}

/* Form */
.contact-form {
  max-width: 620px; margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px; text-transform: uppercase;
}
.form-field label .req { color: var(--brand-red-bright); margin-left: 4px; }
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand-red-bright);
  background: rgba(255,255,255,0.07);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.32);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
/* Honeypot field — fully hidden from real users, screen readers and tab order */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}
.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; gap: 24px; flex-wrap: wrap;
}
.form-meta {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.4px;
}
.form-meta a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.2); }
.form-meta a:hover { color: var(--brand-red-bright); border-color: var(--brand-red-bright); }

.form-success,
.form-error {
  display: none;
  padding: 22px 24px;
  margin: 28px auto 0;
  max-width: 620px;
  text-align: left;
  border: 1px solid;
  font-size: 14px;
  line-height: 1.6;
}
.form-success {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
}
.form-success strong { color: var(--brand-red-bright); display: block; margin-bottom: 6px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.form-error {
  border-color: rgba(216,37,58,0.5);
  background: rgba(216,37,58,0.08);
  color: rgba(255,255,255,0.92);
}
.contact-form.is-submitted .form-success { display: block; }
.contact-form.has-error .form-error { display: block; }

/* ---------- FOOTER ---------- */
footer { background: #0F0F11; color: #fff; padding: 80px 0 32px 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 28px; margin-bottom: 26px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 300px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--brand-red-bright);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 22px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 2; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; font-size: 12px; color: rgba(255,255,255,0.4);
  gap: 24px; flex-wrap: wrap;
}
.footer-tagline {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.footer-tagline .sep { color: var(--brand-red-bright); margin: 0 12px; }

/* =============================================================
   RESPONSIVE BREAKPOINTS
   - 1100px : tighten oversized typography for laptops
   -  900px : tablet — most grids collapse to 1 col, hide nav
   -  640px : phone — reflow form, tighten paddings
   -  420px : small phone
   ============================================================= */

@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .hero h1 { font-size: 72px; letter-spacing: -2px; }
  .hero-sub { font-size: 19px; }
  .split-text h2,
  .services-header h2,
  .team-header h2 { font-size: 44px; letter-spacing: -1px; }
  .cta-section h2 { font-size: 52px; letter-spacing: -1.5px; }
  .stat-number { font-size: 58px; }
  .stats-inner { gap: 48px; }
  .split { gap: 64px; }
  .section-block { padding: 110px 0; }
  .services-section,
  .team-section { padding: 110px 0; }
  .nav-links { gap: 28px; }
}

@media (max-width: 900px) {
  .container { padding: 0 28px; }

  /* Nav: hide links, show hamburger */
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: rgba(26, 26, 31, 0.97);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    align-self: stretch;
  }
  .nav-toggle { display: inline-flex; }

  /* Hero */
  .hero { min-height: 88vh; padding-top: 90px; }
  .hero h1 { font-size: 52px; letter-spacing: -1.5px; margin-bottom: 28px; }
  .hero-sub { font-size: 17px; margin-bottom: 36px; }
  .hero-eyebrow { margin-bottom: 24px; font-size: 11px; letter-spacing: 2.4px; }
  .hero-inner { padding-bottom: 60px; }
  .hero-cta-row { gap: 20px; }
  .btn-primary { padding: 16px 28px; }
  /* Slightly lift overlay opacity on mobile — small viewports show video less, text contrast matters more */
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(26,26,31,0.55) 0%, rgba(26,26,31,0.7) 100%);
  }

  /* Stats: 1 column, lighter padding */
  .stats-band { padding: 64px 0; }
  .stats-inner { grid-template-columns: 1fr; gap: 36px; }
  .stat-number { font-size: 52px; margin-bottom: 12px; }

  /* Split layouts: stack */
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
  .visual { aspect-ratio: 16/10; max-height: 420px; }
  .split-text h2,
  .services-header h2,
  .team-header h2 { font-size: 36px; letter-spacing: -0.6px; }

  /* Section paddings */
  .section-block,
  .services-section,
  .team-section { padding: 80px 0; }
  .services-header { margin-bottom: 56px; }

  /* Services / team grids: 1 col */
  .services-grid,
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card { padding: 36px 28px; }
  .team-grid { gap: 48px; }
  .team-header { margin-bottom: 56px; }

  /* CTA */
  .cta-section { padding: 96px 0 88px; }
  .cta-section h2 { font-size: 40px; letter-spacing: -1px; }
  .cta-section .cta-lede { font-size: 16px; margin-bottom: 40px; }

  /* Form: stack name/email */
  .form-row { grid-template-columns: 1fr; gap: 14px; }

  /* Approach flow */
  .visual-process { padding: 48px 24px; }
  .approach-flow .word { font-size: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 16px 0; }
  .nav-logo img { height: 28px; }
  .nav-links { top: 66px; }

  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary { justify-content: center; }
  .btn-ghost { padding: 16px 0; }

  .split-text h2,
  .services-header h2,
  .team-header h2 { font-size: 30px; }
  .cta-section h2 { font-size: 32px; }
  .stat-number { font-size: 44px; }

  .section-block,
  .services-section,
  .team-section,
  .stats-band { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .approach-flow .word { font-size: 26px; }
}

/* Reduced-motion: kill the slow drift on the hero stripes */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
