/* ============================================================
   ACLON ENGINEER — styles.css
   Brand Palette:
     Gold (Apricot Cream) : #FED28F  /  #FFB347
     Deep (DeepSpace Blue): #002C3D  /  #003a52
     Frost (Frosted Blue) : #A4DDED  /  #6EC6E6
     Ghost White          : #F8F8FF
     Pitch Black          : #100C08
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  --gold:    #FED28F;
  --gold2:   #FFB347;
  --deep:    #002C3D;
  --deep2:   #003a52;
  --frost:   #A4DDED;
  --frost2:  #6EC6E6;
  --white:   #FFFFFF;
  --ghost:   #F8F8FF;
  --off:     #E8F0F5;
  --muted:   #4A7A94;
  --text:    #1A2E38;
  --border:  rgba(0, 44, 61, 0.15);
  --borderg: rgba(254, 210, 143, 0.4);
  --grid:    rgba(0, 44, 61, 0.06);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ghost);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nb-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--deep);
}

.nb-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.46rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold2);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--deep); }

.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--deep);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--deep2);
  transform: translateY(-1px);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--deep);
  display: block;
  border-radius: 1px;
  transition: 0.3s;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu img.mm-logo {
  height: 72px;
  margin-bottom: 0.8rem;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: var(--deep);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold2); }

.mm-close {
  position: absolute;
  top: 20px;
  right: 5vw;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.mm-bottom {
  position: absolute;
  bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 5vw 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 50%, #004d6e 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(254,210,143,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(164,221,237,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo-bg {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 36vw, 520px);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--frost);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero-title .hl  { color: var(--gold); }
.hero-title .hl2 { color: var(--frost); }

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(248, 248, 255, 0.75);
  max-width: 530px;
  font-weight: 300;
}

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.8rem;
}

.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(254, 210, 143, 0.45);
  color: var(--gold);
  background: rgba(254, 210, 143, 0.08);
}

/* Hero buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 2.3rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--deep);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(254, 210, 143, 0.35);
}

.btn-primary:hover {
  background: #ffe0a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(254, 210, 143, 0.5);
}

.btn-outline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* Hero bar accent */
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--frost), var(--gold));
}

/* ── PARTNER CAROUSEL ────────────────────────────────────── */
.carousel-section {
  width: 100%;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

.carousel-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 248, 255, 0.35);
  margin-bottom: 1rem;
  text-align: left;
}

.carousel-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track-wrap::before,
.carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0,44,61,1), transparent);
}

.carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(0,44,61,1), transparent);
}

.carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 150px;
  height: 84px;
  margin: 0 12px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.partner-card:hover {
  background: rgba(254, 210, 143, 0.1);
  border-color: rgba(254, 210, 143, 0.35);
}

/* Use .partner-logo for <img> tags (PNG/SVG files) */
.partner-logo {
  width: auto;
  height: 32px;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s, filter 0.25s;
}

.partner-card:hover .partner-logo {
  opacity: 1;
  filter: none;
}

.partner-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
  white-space: nowrap;
}

.partner-card:hover .partner-name { color: var(--gold); }

/* Inline SVG placeholder logos */
.partner-svg {
  width: auto;
  height: 32px;
  opacity: 0.55;
  transition: opacity 0.25s;
}

.partner-card:hover .partner-svg { opacity: 1; }

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SHARED SECTION STYLES ───────────────────────────────── */
section { position: relative; z-index: 1; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '//';
  color: var(--frost2);
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--deep);
  letter-spacing: 0.02em;
}

/* Section divider strip */
.strip {
  height: 6px;
  background: linear-gradient(90deg, var(--deep), var(--gold), var(--frost), var(--gold), var(--deep));
}

/* ── ABOUT ───────────────────────────────────────────────── */
#about {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  background: var(--white);
}

.about-card {
  background: var(--deep);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 44, 61, 0.2);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--frost));
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(254,210,143,0.08), transparent);
  pointer-events: none;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-logo-wrap img {
  height: 90px;
  width: auto;
}

/* About card overrides for dark background */
.about-card .section-label         { color: var(--frost); }
.about-card .section-label::before { color: rgba(164, 221, 237, 0.5); }
.about-card .section-heading       { color: var(--white); }
.about-card p {
  color: rgba(248, 248, 255, 0.7);
  font-size: 0.87rem;
  margin-top: 0.9rem;
  line-height: 1.75;
}

/* Vision / Mission grid */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.vm-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(254, 210, 143, 0.2);
  padding: 1.2rem;
  transition: background 0.2s;
}

.vm-box:hover { background: rgba(255, 255, 255, 0.11); }

.vm-box h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.vm-box p {
  color: rgba(248, 248, 255, 0.6) !important;
  margin-top: 0 !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
}

/* About text (right column) */
.about-text .section-heading { color: var(--deep); }
.about-text p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }

/* Why Choose Us checklist */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 1.8rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text);
  padding: 10px 12px;
  background: var(--ghost);
  border: 1px solid rgba(0, 44, 61, 0.1);
  transition: border-color 0.2s, background 0.2s;
}

.why-item:hover {
  background: var(--off);
  border-color: rgba(0, 44, 61, 0.25);
}

.why-item::before {
  content: '✔';
  color: var(--gold2);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────── */
#services {
  padding: 100px 5vw;
  background: var(--ghost);
  border-top: 1px solid rgba(0, 44, 61, 0.08);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5px;
  background: rgba(0, 44, 61, 0.08);
}

.service-card {
  background: var(--white);
  padding: 2.3rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  cursor: default;
}

.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 44, 61, 0.12);
  transform: translateY(-3px);
  position: relative;
  z-index: 2;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold2);
}

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: var(--gold2);
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: var(--deep);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  line-height: 1.1;
}

.service-desc {
  font-size: 0.81rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.04em;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--frost2);
}

/* ── INDUSTRIES ──────────────────────────────────────────── */
#industries {
  padding: 100px 5vw;
  background: var(--deep);
}

#industries .section-label         { color: var(--frost); }
#industries .section-label::before { color: rgba(164, 221, 237, 0.4); }
#industries .section-heading       { color: var(--white); }
#industries h3                     { color: var(--white); }
#industries p.roadmap-sub          { color: rgba(248, 248, 255, 0.55); font-size: 0.83rem; }

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5vw;
  align-items: start;
  margin-top: 3rem;
}

.industries-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.industry-pill {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ghost);
  transition: all 0.25s;
  cursor: default;
}

.industry-pill:hover {
  background: rgba(254, 210, 143, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.ind-icon svg {
  width: 24px;
  height: 24px;
  color: var(--frost);
}

.future-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2.2rem;
}

.future-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(164, 221, 237, 0.15);
  font-size: 0.83rem;
  color: rgba(248, 248, 255, 0.65);
  transition: all 0.2s;
}

.future-item:hover {
  background: rgba(164, 221, 237, 0.08);
  border-color: var(--frost);
  color: var(--ghost);
}

.fi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--frost);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--frost);
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  padding: 100px 5vw;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5vw;
  margin-top: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-intro {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem 1.4rem;
  background: var(--ghost);
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid rgba(0, 44, 61, 0.07);
  transition: background 0.2s;
}

.contact-item:hover { background: var(--off); }

.ci-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold2);
}

.ci-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold2);
  margin-bottom: 2px;
}

.ci-val {
  font-size: 0.85rem;
  color: var(--text);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.57rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ghost);
  border: 1.5px solid rgba(0, 44, 61, 0.15);
  color: var(--text);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(0, 44, 61, 0.08);
}

.form-group select option { background: var(--white); }
.form-group textarea      { resize: vertical; min-height: 105px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 2.5rem 5vw;
  background: var(--deep);
  border-top: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img { height: 36px; width: auto; }

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE — TABLET (≤ 1024px) ─────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE — MOBILE (≤ 860px) ──────────────────────── */
@media (max-width: 860px) {
  #about            { grid-template-columns: 1fr; }
  .industries-inner { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .nav-links,
  .nav-cta          { display: none; }
  .hamburger        { display: flex; }
  .services-grid    { grid-template-columns: 1fr; }
  .vm-grid          { grid-template-columns: 1fr 1fr; }
  footer            { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── RESPONSIVE — SMALL MOBILE (≤ 560px) ────────────────── */
@media (max-width: 560px) {
  #hero             { padding: 90px 5vw 60px; }
  .hero-logo-bg     { opacity: 0.06; width: clamp(180px, 60vw, 300px); }
  .industries-track { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .vm-grid          { grid-template-columns: 1fr; }
  .nav-brand img    { height: 34px; }
  .nb-top           { font-size: 1.05rem; }
  .carousel-section { margin-top: 2.2rem; }
  .partner-card     { min-width: 120px; height: 72px; margin: 0 8px; }
  .partner-svg      { height: 24px; }
  .carousel-track-wrap::before,
  .carousel-track-wrap::after { width: 40px; }
}

/* ── RESPONSIVE — EXTRA SMALL (≤ 400px) ─────────────────── */
@media (max-width: 400px) {
  .hero-title    { font-size: 2.6rem; }
  .section-heading { font-size: 1.9rem; }
  .about-card    { padding: 1.8rem; }
}
