/* ============================================================
   UQAB — Multi-Page Corporate Website
   Premium Enterprise Design · Swiss Typographic Foundation
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand: #2B6B2F;
  --brand-dark: #1E4D21;
  --brand-light: #7CB342;
  --brand-glow: rgba(43, 107, 47, 0.10);
  --brand-glow-strong: rgba(43, 107, 47, 0.22);

  --dark: #09090B;
  --dark-2: #111114;
  --dark-3: #18181B;
  --dark-4: #27272A;
  --gray-700: #3F3F46;
  --gray-600: #52525B;
  --gray-500: #71717A;
  --gray-400: #A1A1AA;
  --gray-300: #D4D4D8;
  --gray-200: #E4E4E7;
  --gray-100: #F4F4F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;

  --gap: 24px;
  --max-w: 1320px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'IBM Plex Mono', 'Fira Code', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.7s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Anchor targets: avoid fixed header overlap when scrolling */
[id] { scroll-margin-top: calc(72px + 3px); }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--brand); color: var(--white); }

img, video { display: block; max-width: 100%; height: auto; }

/* Discourage saving/dragging content media (logos excluded via JS) */
.overview__media img,
.preview-card__media img,
.hero__video,
.about-video__player,
.about-intro__img,
.founder-block__img,
.prod__media-img,
.about-gallery__img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Top accent bar ── */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* ========== GRID ========== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

/* ========== TYPOGRAPHY ========== */
.t-mega {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.t-display {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.t-h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.t-h2 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.t-h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.t-h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

.t-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
}

.t-body--lg {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.t-small {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.t-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.t-stat {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ========== SECTION ========== */
.sec {
  padding: 128px 0;
  position: relative;
}

.sec--sm { padding: 80px 0; }
.sec--flush { padding: 0; }

.sec--dark {
  background: var(--dark);
  color: var(--white);
}
.sec--dark .t-body, .sec--dark .t-body--lg { color: var(--gray-400); }
.sec--dark .t-small { color: var(--gray-500); }

.sec--dark-2 {
  background: var(--dark-2);
  color: var(--white);
}
.sec--dark-2 .t-body, .sec--dark-2 .t-body--lg { color: var(--gray-400); }

.sec--alt { background: var(--gray-50); }

.sec__eyebrow {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}

.sec--dark .sec__eyebrow::before { background: var(--brand-light); }

.sec__heading { margin-bottom: 24px; max-width: 720px; }
.sec__desc { max-width: 620px; }
.sec__top { margin-bottom: 72px; }

.sec__top--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav--hero-mode {
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.04);
}

.nav--scrolled {
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.nav__logo {
  height: 54px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.85; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 450;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  transition: color 0.25s, background 0.25s;
  border-radius: 6px;
  letter-spacing: 0.005em;
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__link--active { color: var(--brand-light); font-weight: 500; }

.nav__cta {
  margin-left: 12px;
  padding: 8px 22px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--brand);
  color: var(--white);
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: 1px solid rgba(255,255,255,0.1);
}
.nav__cta:hover {
  background: var(--brand-light);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 179, 66, 0.3);
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.25s var(--ease);
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav__toggle:hover { background: rgba(255,255,255,0.08); }

.nav__grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.nav__toggle--open .nav__grid-icon {
  transform: rotate(45deg);
}

.nav__grid-icon span {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), border-radius 0.35s, opacity 0.25s;
}

.nav__toggle--open .nav__grid-icon span {
  border-radius: 1px;
}

.nav__toggle--open .nav__grid-icon span:nth-child(1) {
  transform: translate(2px, 2px);
}
.nav__toggle--open .nav__grid-icon span:nth-child(2) {
  transform: translate(-2px, 2px);
}
.nav__toggle--open .nav__grid-icon span:nth-child(3) {
  transform: translate(2px, -2px);
}
.nav__toggle--open .nav__grid-icon span:nth-child(4) {
  transform: translate(-2px, -2px);
}

/* ========== MEGA DROPDOWN ========== */
.nav__group {
  position: static;
}

.nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 450;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  cursor: pointer;
  letter-spacing: 0.005em;
}

.nav__trigger:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__trigger--active { color: var(--brand-light); }

.nav__icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.nav__icon::before,
.nav__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.nav__icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.nav__group.is-open .nav__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

/* Active nav trigger indicator (line under open dropdown) */
.nav__trigger--active {
  color: var(--white);
}
.nav__trigger--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-light);
  opacity: 1;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 20px 56px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  pointer-events: none;
}

.mega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.nav__group.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__group.is-open .mega::before { opacity: 1; }

.mega__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 48px 48px;
}

.mega__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.mega__title {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.mega__view-all {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}

.mega__view-all:hover { gap: 10px; }

/* Mega: Products grid */
.mega__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.mega-prod {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s;
}

.mega-prod:hover {
  background: var(--gray-50);
  box-shadow: inset 0 0 0 1px var(--gray-100);
}

.mega-prod__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, transform 0.25s;
}

.mega-prod__icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-prod:hover .mega-prod__icon {
  background: var(--brand);
  transform: translateY(-2px);
}
.mega-prod:hover .mega-prod__icon svg { color: var(--white); }

.mega-prod__num {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.mega-prod__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.mega-prod__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.mega-prod__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s var(--ease);
}

.mega-prod:hover .mega-prod__link { gap: 8px; }

/* Mega: Services grid + Industries separator */
.mega__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mega-svc:nth-child(7) {
  grid-column: 1 / -1;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 20px;
}

.mega-svc:nth-child(7)::before {
  content: 'Industries';
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 12px;
}

.mega-svc {
  padding: 16px 24px 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: padding-left 0.25s var(--ease), background 0.2s;
}

.mega-svc:hover {
  padding-left: 8px;
  background: var(--gray-50);
}

.mega-svc__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.mega-svc__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-svc:hover .mega-svc__icon {
  background: var(--brand);
  transform: translateY(-2px);
}
.mega-svc:hover .mega-svc__icon svg { color: var(--white); }

.mega-svc__content { flex: 1; min-width: 0; }

.mega-svc__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-svc__title-arrow {
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  font-size: 0.75rem;
  color: var(--brand);
}

.mega-svc:hover .mega-svc__title-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.mega-svc__desc {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Mega: Company grid */
.mega__company {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-link {
  padding: 20px 24px 20px 0;
  border-left: 2px solid transparent;
  padding-left: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.25s, background 0.25s;
}

.mega-link:hover {
  border-left-color: var(--brand);
  background: var(--gray-50);
}

.mega-link__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.mega-link__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-link:hover .mega-link__icon {
  background: var(--brand);
  transform: translateY(-2px);
}
.mega-link:hover .mega-link__icon svg { color: var(--white); }

.mega-link__content { flex: 1; min-width: 0; }

.mega-link__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.mega-link__desc {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.45;
}

/* Mega overlay */
.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.mega-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========== HERO (homepage) — same scale as .sec / .container ========== */
.hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,11,0.4) 0%, rgba(9,9,11,0) 35%),
    linear-gradient(180deg, rgba(9,9,11,0) 50%, rgba(9,9,11,0.92) 100%);
  z-index: 1;
}

.hero__accent-orb {
  position: absolute;
  width: min(80vw, 520px);
  height: min(80vw, 520px);
  max-width: 520px;
  max-height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  animation: heroOrbPulse 6s ease-in-out infinite;
}

@keyframes heroOrbPulse {
  0%, 100% { opacity: 0.22; transform: translate(-20%, -50%) scale(1); }
  50% { opacity: 0.32; transform: translate(-18%, -50%) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__kicker-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 1px;
  animation: heroKickerLine 0.8s var(--ease) 0.2s both;
}

@keyframes heroKickerLine {
  from { width: 0; opacity: 0; }
  to { width: 40px; opacity: 1; }
}

.hero__kicker-text {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
}

/* Same typography scale as .page-hero / .t-display */
.hero__title {
  margin-bottom: 24px;
  max-width: 720px;
  position: relative;
}

.hero__title-text {
  display: block;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__title-accent {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  transition: width 0.5s var(--ease);
}

.hero:hover .hero__title-accent { width: 96px; }

.hero__subtitle {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 400;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero__focus {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__focus-item {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.hero__focus-item:hover {
  color: var(--brand-light);
  border-color: rgba(124, 179, 66, 0.35);
  background: rgba(124, 179, 66, 0.08);
}

.hero__focus-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__cta-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__cta-note::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.8;
}

.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
  padding: 12px 28px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--brand-light);
  color: var(--white);
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__metrics {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__metric {
  flex: 0 0 auto;
  transition: transform 0.2s var(--ease);
}

.hero__metric:hover { transform: translateY(-2px); }

.hero__metric-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
  margin: 0 40px;
}

.hero__metric-value {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}

.hero__metric-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.hero__metric:hover .hero__metric-label { color: var(--gray-400); }

/* Scroll indicator aligned with container right edge */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: max(48px, calc((100vw - var(--max-w)) / 2 + 48px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-4), transparent);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-hero__breadcrumb a {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover { color: var(--brand-light); }

.page-hero__sep {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.page-hero__current {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.65;
}

.page-hero__accent {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero__line {
  position: absolute;
  bottom: 0;
  left: var(--container-pad, 48px);
  width: 2px;
  height: 40px;
  background: var(--brand);
  opacity: 0.4;
}

/* ========== CONTACT DETAIL ICONS ========== */
.contact-detail__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.marquee--dark {
  border-color: var(--dark-4);
  background: var(--dark);
}

.marquee__track {
  display: flex;
  gap: 72px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee--dark .marquee__item { color: var(--gray-600); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== OVERVIEW (home) ========== */
.sec--overview .overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.overview__content .sec__heading { margin-bottom: 24px; }
.overview__content .t-body--lg { margin-bottom: 0; }

.overview__media {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  /* Frame: 4∶3. Image: 1200×900 or overview.jpeg */
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.overview__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

.overview__media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  background-size: 200% 200%;
}

/* ========== LEGAL PAGES (Privacy / Terms) ========== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content__block {
  margin-bottom: 40px;
}

.legal-content__block:last-child { margin-bottom: 0; }

.legal-content__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-content__block .t-body {
  margin-bottom: 0;
  color: var(--gray-600);
}

.legal-content__block .t-body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content__block .t-body a:hover { color: var(--brand-dark); }

/* ========== STAT STRIP ========== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-strip__item {
  padding: 48px 40px;
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.stat-strip__item:last-child { border-right: none; }

.sec--dark .stat-strip__item,
.sec--dark-2 .stat-strip__item { border-right-color: var(--dark-4); }

.stat-strip__number { color: var(--brand); margin-bottom: 8px; }
.sec--dark .stat-strip__number { color: var(--brand-light); }

.stat-strip__label {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.stat-strip__accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brand);
}

/* ========== ABOUT INTRO ========== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-intro__text { display: flex; flex-direction: column; }

.about-intro__media { position: relative; }

.about-intro__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-intro__img-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand);
  z-index: -1;
  opacity: 0.2;
}

/* ========== ABOUT VIDEO ========== */
.about-video-sec { padding: 0; }

.about-video {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.about-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,9,11,0.7) 0%, rgba(9,9,11,0.4) 100%);
  z-index: 1;
}

.about-video__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 56px;
}

.about-video__label {
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-video__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-light);
}

.about-video__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  max-width: 560px;
  line-height: 1.25;
}

/* ========== ABOUT GALLERY ========== */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.about-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.about-gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.about-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-gallery__item:hover .about-gallery__img { transform: scale(1.04); }

.about-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(9,9,11,0.85));
  z-index: 1;
}

.about-gallery__tag {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 8px;
  display: block;
}

.about-gallery__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.about-gallery__desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.5;
  max-width: 420px;
}

/* ========== OVERVIEW SPLIT ========== */
.overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.overview-split__lead {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.65;
  color: var(--gray-700);
}

.overview-split__body p + p { margin-top: 20px; }

/* ========== PREVIEW CARDS (homepage) ========== */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-4);
}

.preview-card {
  background: var(--dark-2);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.preview-card:hover { background: var(--dark-3); }

.preview-card__media {
  aspect-ratio: 16 / 9;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.preview-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.preview-card:hover .preview-card__media img { transform: scale(1.03); }

/* Overlay so label text is readable on any image */
.preview-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  pointer-events: none;
}

.preview-card__media .preview-card__media-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
  font-weight: 600;
}

.preview-card__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 2;
}

.preview-card:hover .preview-card__media::after {
  transform: scaleX(1);
}

.preview-card__media-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-card__body {
  padding: 32px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.preview-card__num {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--brand-light);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.preview-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.preview-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.preview-card__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}

.preview-card:hover .preview-card__cta { gap: 10px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--brand);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 500px;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-banner__btn {
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--white);
  color: var(--brand-dark);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-banner__btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.cta-banner__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}

.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-banner__orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(124, 179, 66, 0.25);
  top: -120px;
  right: -60px;
}

.cta-banner__orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(30, 77, 33, 0.4);
  bottom: -80px;
  left: -40px;
}

/* ========== HOME SERVICES STRIP ========== */
.home-svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.home-svc__item {
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.home-svc__item:hover {
  background: var(--gray-50);
}

.home-svc__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.home-svc__icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-svc__item:hover .home-svc__icon {
  background: var(--brand);
  transform: translateY(-2px);
}

.home-svc__item:hover .home-svc__icon svg { color: var(--white); }

.home-svc__num {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.home-svc__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.home-svc__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ========== TRUST CARDS ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.trust-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card:hover .trust-card__icon {
  background: var(--brand);
}
.trust-card:hover .trust-card__icon svg { color: var(--white); }

.trust-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== INDUSTRIES PREVIEW ========== */
.ind-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-4);
  border: 1px solid var(--dark-4);
}

.ind-preview__item {
  background: var(--dark-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.ind-preview__item:hover { background: var(--dark-3); }

.ind-preview__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(43, 107, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.ind-preview__icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-light);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ind-preview__item:hover .ind-preview__icon {
  background: var(--brand);
}
.ind-preview__item:hover .ind-preview__icon svg { color: var(--white); }

.ind-preview__label {
  font-family: var(--mono);
  font-size: 0.5625rem;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ind-preview__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.ind-preview__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}

.ind-preview__arrow {
  font-size: 1.25rem;
  color: var(--brand-light);
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
}

.ind-preview__item:hover .ind-preview__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== PRODUCT BLOCKS ========== */
.prod + .prod { margin-top: 0; }

.prod__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 96px 0;
}

.prod--reverse .prod__inner { direction: rtl; }
.prod--reverse .prod__inner > * { direction: ltr; }

.prod__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.prod__num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.08em;
}

.prod__line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.sec--dark .prod__line, .sec--dark-2 .prod__line { background: var(--dark-4); }

.prod__title { margin-bottom: 8px; }

.prod__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

.prod__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.prod__media {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.prod__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.prod__media-label {
  position: relative;
  z-index: 1;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(9,9,11,0.75));
  width: 100%;
  text-align: center;
}

.sec--dark .prod__media, .sec--dark-2 .prod__media {
  background: var(--dark-3);
  border-color: var(--dark-4);
}

.prod__media-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(43, 107, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.prod__media-icon svg {
  width: 40px;
  height: 40px;
  color: var(--brand-light);
  opacity: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod__media-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prod__media .prod__media-label { color: var(--white); }

.prod__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.prod__section { margin-bottom: 28px; }

.prod__section-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.sec--dark .prod__section-title, .sec--dark-2 .prod__section-title {
  border-bottom-color: var(--dark-4);
  color: var(--gray-500);
}

.prod__list li {
  padding: 7px 0 7px 18px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.sec--dark .prod__list li, .sec--dark-2 .prod__list li { color: var(--gray-400); }

.prod__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 1px;
}

.prod__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.prod__tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: border-color 0.2s, color 0.2s;
}
.prod__tag:hover { border-color: var(--brand); color: var(--brand); }
.sec--dark .prod__tag, .sec--dark-2 .prod__tag { border-color: var(--dark-4); color: var(--gray-400); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 12px 28px;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.005em;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--brand-glow-strong);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn--ghost {
  border: 1px solid var(--gray-300);
  color: var(--dark);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}
.sec--dark .btn--ghost, .sec--dark-2 .btn--ghost { border-color: var(--dark-4); color: var(--gray-300); }
.sec--dark .btn--ghost:hover, .sec--dark-2 .btn--ghost:hover { border-color: var(--white); background: var(--white); color: var(--dark); }

.btn__arrow {
  transition: transform 0.25s var(--ease);
  font-size: 1rem;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ========== SERVICE CARDS ========== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.sec--dark .svc-grid { background: var(--dark-4); border-color: var(--dark-4); }

.svc-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.3s var(--ease);
}
.sec--dark .svc-card { background: var(--dark-2); }
.svc-card:hover { background: var(--gray-50); }
.sec--dark .svc-card:hover { background: var(--dark-3); }

.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.svc-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card:hover .svc-card__icon {
  background: var(--brand);
  transform: translateY(-2px);
}
.svc-card:hover .svc-card__icon svg { color: var(--white); }

.svc-card__num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.svc-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
}

.svc-card__list { margin-top: 16px; }

.svc-card__list li {
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 4px 0;
  line-height: 1.5;
}

.svc-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========== INDUSTRY ========== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.ind-card {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  transition: border-color 0.3s;
}
.ind-card:hover { border-top-color: var(--brand); }
.sec--dark .ind-card { border-top-color: var(--dark-4); }
.sec--dark .ind-card:hover { border-top-color: var(--brand-light); }

.ind-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.ind-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ind-card:hover .ind-card__icon { background: var(--brand); }
.ind-card:hover .ind-card__icon svg { color: var(--white); }

.ind-card__num {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ind-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.ind-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========== VISION / MISSION ========== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vm-block {
  padding: 48px;
  border: 1px solid var(--gray-200);
}
.vm-block + .vm-block { border-left: none; }

.vm-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 179, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-block__icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-light);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-block__title {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.vm-block__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ========== VALUES ========== */
.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.val {
  padding: 32px 24px 32px 24px;
  border-left: 2px solid var(--gray-200);
  transition: border-color 0.3s;
}
.val:hover { border-left-color: var(--brand); }

.val__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.val__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.val:hover .val__icon { background: var(--brand); }
.val:hover .val__icon svg { color: var(--white); }

.val__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.val__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ========== FOUNDER ========== */
.founder-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.founder-block__img-wrap { position: relative; }

.founder-block__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.founder-block__img-accent {
  position: absolute;
  bottom: -8px; left: -8px;
  width: 100%; height: 100%;
  border: 1px solid var(--brand);
  z-index: -1;
}

.founder-block__name { margin-bottom: 6px; }

.founder-block__role {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 32px;
}

.founder-block__bio p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.founder-block__bio p + p { margin-top: 16px; }

.founder-block__certs {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-block__cert {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

/* ========== PARTNERS ========== */
.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
}
.sec--dark .partners { border-color: var(--dark-4); }

.partner {
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.02em;
  min-height: 88px;
}
.sec--dark .partner { border-color: var(--dark-4); color: var(--gray-500); }
.partner:nth-child(6n) { border-right: none; }
.partner:nth-last-child(-n+6) { border-bottom: none; }
.partner:hover { color: var(--brand); background: var(--brand-glow); }
.sec--dark .partner:hover { color: var(--brand-light); background: rgba(43,107,47,0.06); }

/* ========== CONTACT ========== */
.contact-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-info { position: sticky; top: 100px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
}

.contact-detail__content { flex: 1; }

.contact-detail__label {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.contact-detail__value {
  font-size: 1.0625rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--brand);
  transition: color 0.2s;
}
.contact-detail__value a:hover { color: var(--brand-dark); }

/* ── Form Card ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 48px;
  position: relative;
}

.form-card__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.form-card__title { margin-bottom: 8px; }
.form-card__desc { max-width: 420px; }

/* ── Form Layout ── */
.form { display: flex; flex-direction: column; gap: 0; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__group {
  position: relative;
  margin-bottom: 28px;
}

.form__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.form__group:focus-within .form__label {
  color: var(--brand);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--dark);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2371717A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__select:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232B6B2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form__hint {
  font-size: 0.6875rem;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ── Error State ── */
.form__group--error .form__input,
.form__group--error .form__select,
.form__group--error .form__textarea {
  border-color: #dc2626;
  background: #fef2f2;
}

.form__group--error .form__label { color: #dc2626; }

.form__error {
  font-size: 0.6875rem;
  color: #dc2626;
  margin-top: 6px;
  display: none;
}

.form__group--error .form__error { display: block; }

/* ── Submit ── */
.form__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 36px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.005em;
}

.form__submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--brand-glow-strong);
}

.form__submit:active { transform: translateY(0); }

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form__submit-arrow {
  transition: transform 0.25s var(--ease);
  font-size: 1.125rem;
}

.form__submit:hover .form__submit-arrow { transform: translateX(3px); }

.form__privacy {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.form__privacy a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Success State ── */
.form-success {
  display: none;
  text-align: center;
  padding: 64px 32px;
}

.form-success.is-visible { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand);
  stroke-width: 2.5;
  fill: none;
}

.form-success__title { margin-bottom: 12px; }
.form-success__text { max-width: 380px; margin: 0 auto; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.3;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--gap);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 300px;
  margin-top: 20px;
}

.footer__logo { height: 36px; }

.footer__col-title {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--brand-light); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: var(--gray-600); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--brand-light); }

/* ========== DIVIDER ========== */
.rule {
  height: 1px;
  background: var(--gray-200);
  border: none;
  margin: 0;
}
.sec--dark .rule { background: var(--dark-4); }

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__media { max-width: 480px; }
  .about-video { height: 340px; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery__item--wide { aspect-ratio: 16 / 9; }
  .overview-split { grid-template-columns: 1fr; gap: 40px; }
  .prod__inner { grid-template-columns: 1fr; gap: 40px; }
  .prod--reverse .prod__inner { direction: ltr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: repeat(3, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-block + .vm-block { border-left: 1px solid var(--gray-200); border-top: none; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item:nth-child(2) { border-right: none; }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .partner:nth-child(6n) { border-right: 1px solid var(--gray-200); }
  .partner:nth-child(3n) { border-right: none; }
  .partner:nth-last-child(-n+6) { border-bottom: 1px solid var(--gray-200); }
  .partner:nth-last-child(-n+3) { border-bottom: none; }
  .founder-block { grid-template-columns: 1fr; gap: 40px; }
  .founder-block__img-wrap { max-width: 280px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .form-card { padding: 36px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; margin-bottom: 24px; }
  .hero__metric-divider { margin: 0 28px; }
  .sec__top--wide { grid-template-columns: 1fr; gap: 24px; }
  .sec--overview .overview__grid { grid-template-columns: 1fr; gap: 40px; }
  .overview__media { aspect-ratio: 16 / 9; }
  .preview-grid { grid-template-columns: 1fr; }
  .home-svc { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-preview { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; text-align: left; align-items: flex-start; }
  .cta-banner__actions { margin-top: 24px; }
  .hero__scroll { display: none; }
  .page-hero__accent { display: none; }
  .page-hero__line { left: 32px; }

  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  /* Hero: reserve space for fixed nav so content isn't hidden */
  .hero { padding-top: calc(72px + 3px); }

  .nav__menu--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 76px);
    background: var(--white);
    padding: 0;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--gray-200);
  }

  /* Accordion: group items */
  .nav__menu--open .nav__group {
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__menu--open .nav__trigger {
    font-size: 1rem;
    font-weight: 500;
    padding: 18px 32px;
    color: var(--dark);
    border-radius: 0;
    width: 100%;
    justify-content: space-between;
    background: transparent;
    transition: background 0.2s, color 0.2s;
  }

  .nav__menu--open .nav__trigger:hover,
  .nav__menu--open .nav__group.is-open .nav__trigger {
    background: var(--gray-50);
  }

  .nav__menu--open .nav__group.is-open .nav__trigger {
    color: var(--brand);
  }

  .nav__menu--open .nav__trigger .nav__icon {
    width: 14px;
    height: 14px;
  }

  .nav__menu--open .nav__trigger--active { color: var(--brand); }
  .nav__menu--open .nav__trigger--active::after { display: none; }

  .nav__menu--open .nav__link {
    font-size: 1rem;
    font-weight: 500;
    padding: 18px 32px;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    display: block;
    width: 100%;
  }
  .nav__menu--open .nav__link:hover { background: var(--gray-50); }
  .nav__menu--open .nav__link--active { color: var(--brand); }

  .nav__menu--open .nav__cta {
    margin: 24px 32px;
    text-align: center;
    justify-content: center;
    padding: 16px 28px;
    border-bottom: none;
    font-size: 0.9375rem;
    border-radius: 8px;
  }

  /* Accordion: mega panels */
  .mega {
    position: static;
    box-shadow: none;
    border-bottom: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
  }

  .nav__group.is-open .mega {
    max-height: 800px;
  }

  .mega__container {
    padding: 8px 16px 16px;
  }

  .mega__header {
    margin-bottom: 8px;
    padding: 12px 16px 10px;
    border-bottom: 1px solid var(--gray-200);
  }

  .mega-svc__icon,
  .mega-link__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .mega-svc__icon svg,
  .mega-link__icon svg {
    width: 16px;
    height: 16px;
  }

  .mega__products {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    gap: 0;
  }

  .mega-prod {
    padding: 16px 16px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 0;
  }
  .mega-prod:last-child { border-bottom: none; }

  .mega__services {
    grid-template-columns: 1fr;
  }

  .mega-svc {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
  }
  .mega-svc:last-child { border-bottom: none; }

  .mega__company {
    grid-template-columns: 1fr;
  }

  .mega-link {
    padding: 14px 16px;
    border-left: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .mega-link:last-child { border-bottom: none; }
  .mega-link:hover { border-left: none; }

  .mega-overlay { display: none; }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; height: 64px; }
  .nav__menu--open { max-height: calc(100dvh - 68px); padding: 0; }
  .nav__menu--open .nav__trigger,
  .nav__menu--open .nav__link { padding: 16px 20px; }
  .nav__menu--open .nav__cta { margin: 20px 20px; }
  .mega__container { padding: 8px 4px 12px; }
  .sec { padding: 80px 0; }
  .sec--sm { padding: 56px 0; }
  /* Hero: space for fixed header (64px) + top offset (3px) + safe-area */
  .hero {
    min-height: 100dvh;
    padding-top: calc(64px + 3px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
  /* hero__metrics handled above with flexbox */
  .page-hero {
    padding-top: calc(64px + 3px + 48px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .page-hero__line { left: 20px; }
  [id] { scroll-margin-top: calc(64px + 3px + env(safe-area-inset-top, 0px)); }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-strip__item:last-child { border-bottom: none; }
  .about-video { height: 280px; }
  .about-video__content { padding-bottom: 32px; }
  .about-gallery__caption { padding: 20px; }
  .about-gallery__title { font-size: 1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .partner:nth-child(3n) { border-right: 1px solid var(--gray-200); }
  .partner:nth-child(2n) { border-right: none; }
  .partner:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-200); }
  .partner:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .home-svc { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .ind-preview { grid-template-columns: 1fr; }
  .hero__metrics { flex-direction: column; gap: 24px; }
  .hero__metric-divider { width: 48px; height: 1px; margin: 0; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .hero__focus { gap: 8px; margin-bottom: 24px; }
  .hero__focus-item { padding: 5px 10px; font-size: 0.625rem; }
  .hero__cta-note { margin-bottom: 32px; }
  .hero__accent-orb { opacity: 0.15; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__btn { text-align: center; justify-content: center; }
  .vm-block { padding: 32px 24px; }
  .form-card { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form__privacy { max-width: 100%; }
}

/* ========== PRINT ========== */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .nav, .top-bar, .hero__video-wrap, .hero__overlay, .marquee { display: none; }
  .hero { min-height: auto; padding: 48px 0; }
  .sec { padding: 40px 0; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
