/* ═══════════════════════════════════════════════
   CORE8 — Improved Stylesheet
   Fonts: System display + body stacks
   Theme: Dark navy / gold luxury industrial
═══════════════════════════════════════════════ */

/* Syne-style display stack — no external request needed */
@font-face {
  font-family: 'DisplayStack';
  src: local('Futura'), local('Century Gothic'), local('Trebuchet MS');
}

:root {
  --navy:        #08172e;
  --navy-mid:    #0d2040;
  --navy-light:  #132845;
  --gold:        #c9a33a;
  --gold-bright: #e2bb50;
  --gold-glow:   rgba(201,163,58,0.18);
  --gold-border: rgba(201,163,58,0.30);
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --text-dark:   #0d1f38;
  --text-muted-dark:  #4a5f7a;
  --text-light:  #e8edf5;
  --text-muted:  #8ba0bc;
  --border:      rgba(139,160,188,0.18);
  --border-light:rgba(0,0,0,0.1);
  --radius:      14px;
  --radius-sm:   8px;
  --pill:        999px;
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.55);
  --shadow-md:   0 12px 36px rgba(0,0,0,0.35);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── BASE ─── */
body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }

.section--dark  { background: var(--navy); }
.section--light { background: var(--off-white); color: var(--text-dark); }

/* labels / eyebrows */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.section-title--dark { color: var(--text-dark); }

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
  font-size: 1rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(201,163,58,0.35);
}
.btn--gold:hover { box-shadow: 0 12px 36px rgba(201,163,58,0.5); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--text-light);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

.btn--navy {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--gold-border);
}
.btn--navy:hover { border-color: var(--gold); background: var(--navy-mid); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(8,23,46,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo { height: 42px; width: auto; }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: var(--pill);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text-light); background: rgba(255,255,255,0.07); }

.nav-cta {
  background: var(--gold-glow) !important;
  border: 1.5px solid var(--gold-border) !important;
  color: var(--gold-bright) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: rgba(201,163,58,0.28) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.05);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 18px;
  margin: 0 auto;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,23,46,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 0.65rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0 !important; }
}
/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  /* Fallback when video doesn't load */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,163,58,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(19,40,69,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #05102a 0%, #08172e 40%, #0d2040 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-media {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,23,46,0.88) 45%, rgba(8,23,46,0.4) 100%),
    linear-gradient(to top, rgba(8,23,46,0.9) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 6rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-border);
  background: var(--gold-glow);
  padding: 0.35rem 0.9rem;
  border-radius: var(--pill);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-pills span {
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--pill);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ─── SERVICE GRID ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center top;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.04); }

.service-body { padding: 1.5rem; }
.service-body h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.service-list li::before {
  content: '→ ';
  color: var(--gold);
}
.service-list strong { color: var(--text-light); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tags span {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--pill);
}

/* ─── TWO-COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--flip .two-col__text { order: 2; }
.two-col--flip > :first-child { order: 1; }
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--flip .two-col__text { order: unset; }
}

.body-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.body-text--muted { color: var(--text-muted); }
.section--light .body-text { color: var(--text-muted-dark); }

/* ─── STACKED INFO CARDS ─── */
.stacked-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover { border-color: var(--gold-border); transform: translateX(4px); }
.section--light .info-card { background: var(--white); border-color: var(--border-light); }

.info-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

.info-card h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.section--light .info-card h3 { color: var(--text-dark); }
.info-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ─── VMV GRID ─── */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vmv-card {
  padding: 2rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.vmv-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.vmv-card--featured {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border-color: var(--gold-border);
}

.vmv-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.vmv-card h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}
.vmv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.values-list strong { color: var(--text-light); }

/* ─── WHY GRID ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201,163,58,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.why-card h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted-dark); }

/* ─── SECTOR GRID ─── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.sector-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.sector-img-wrap {
  height: 160px;
  overflow: hidden;
}
.sector-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}
.sector-card:hover .sector-img { transform: scale(1.07); }

.sector-card h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 1rem 1.1rem 0.35rem;
}
.sector-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 1.1rem 1.1rem;
  line-height: 1.6;
}

/* ─── FOUNDER ─── */
.founder-visual {
  position: relative;
}

.founder-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.founder-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(8,23,46,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.founder-badge strong {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.founder-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── APPLY LIST ─── */
.apply-list {
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.apply-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.apply-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── GLASS FORM ─── */
.glass-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.glass-form--light {
  background: var(--white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.glass-form h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.glass-form--light h3 { color: var(--text-dark); }

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.field-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.glass-form--light .field-group label { color: var(--text-muted-dark); }

input, textarea, select {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  transition: border-color var(--transition), background var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.glass-form--light input,
.glass-form--light textarea,
.glass-form--light select {
  background: var(--off-white);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-dark);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,163,58,0.04);
}

select option { background: var(--navy); color: var(--text-light); }
.glass-form--light select option { background: var(--white); color: var(--text-dark); }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── CONTACT LIST ─── */
.contact-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a, .contact-list span {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
}
.contact-list a:hover { color: var(--navy); text-decoration: underline; }

.map-wrap {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.75rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

.footer-cols {
  display: flex;
  gap: 3rem;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.footer-cols ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-cols a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-cols a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.back-top { transition: color var(--transition); }
.back-top:hover { color: var(--gold-bright); }

@media (max-width: 768px) {
  .footer-grid { flex-direction: column; gap: 2rem; }
  .footer-cols { gap: 2rem; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 0.5rem; }
}

/* ─── SCROLL REVEAL ─── */
.reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE GRIDS ─── */
@media (max-width: 1024px) {
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .service-grid { grid-template-columns: 1fr; }
  .vmv-grid     { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid    { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-title { font-size: 2.8rem; }
}
