/* ============================================
   COREQ GROUP
   Black / Burgundy / Grey - Bold, editorial, motion
   ============================================ */

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

:root {
  --black: #0A0A0A;
  --black-soft: #141414;
  --grey: #D0D0D0;
  --grey-dim: #6B6B6B;
  --grey-light: #E2E0DD;
  --white: #F5F4F2;
  --burgundy: #6B1D2A;
  --burgundy-light: #8A2E3C;
  --burgundy-glow: rgba(107, 29, 42, 0.12);
  --burgundy-border: rgba(107, 29, 42, 0.3);
  --font: 'Inter Tight', -apple-system, 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url('maze.svg');
  background-size: 140vmax 140vmax;
  background-repeat: no-repeat;
  background-position: center;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(107, 29, 42, 0.35) 0%, rgba(107, 29, 42, 0.1) 25%, transparent 55%);
}

::selection {
  background: var(--burgundy);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 700; color: var(--white); }

/* --- Cursor glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--burgundy-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* --- Container --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: difference;
}

.nav.scrolled {
  mix-blend-mode: normal;
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.3s;
}

.nav-logo-eq {
  border-bottom: 3px solid var(--burgundy);
  padding-bottom: 1px;
  display: inline;
  line-height: 1;
}

.nav-logo:hover { opacity: 0.6; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--white); }

.nav-link-cta {
  color: var(--white);
  background: var(--burgundy);
  padding: 10px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-cta:hover {
  background: var(--burgundy-light);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile-toggle.open span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-mobile-toggle.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-link {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--burgundy-light); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero-left {
  position: relative;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 11rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  position: relative;
  display: inline-block;
}


@keyframes fadeIn { to { opacity: 1; } }

.hero-right {
  padding-left: clamp(20px, 4vw, 60px);
}

.hero-content {
  max-width: 480px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--grey);
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-meta-item {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--burgundy);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--burgundy);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
}

.hero-cta svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover svg {
  transform: translate(3px, -3px);
}

.hero-scroll-line {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--burgundy), transparent);
  opacity: 0;
  animation: scrollPulse 2.5s ease-in-out 2s infinite, fadeIn 0.5s ease 2s forwards;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5) translateX(-50%); }
  50% { opacity: 0.6; transform: scaleY(1) translateX(-50%); }
}

/* =====================
   MARQUEE
   ===================== */
.marquee {
  padding: 20px 0;
  background: var(--burgundy);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 0 16px;
}

.marquee-sep {
  color: var(--grey-light);
  opacity: 0.4;
  padding: 0 8px;
  font-size: 0.7rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  z-index: 1;
}

.section-num {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--burgundy-light);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
}

/* =====================
   ABOUT / THE HOUSE
   ===================== */
.about {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
}


.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.about-lead {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 40px;
}

.about-body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 2;
  color: var(--grey-dim);
  margin-bottom: 24px;
  max-width: 600px;
}

/* Who This Is For */
.who-for {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
  padding-top: clamp(60px, 8vw, 100px);
  margin-bottom: clamp(50px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.who-for-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.who-for-item {
  padding: 28px;
  border: 1px solid rgba(185, 185, 185, 0.08);
  background: var(--black-soft);
  transition: border-color 0.3s;
}

.who-for-item:hover {
  border-color: var(--burgundy);
}

.who-for-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.who-for-desc {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey-dim);
}

/* Industries - flip cards */
.industries {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
  padding-top: clamp(60px, 8vw, 100px);
}

.industries-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.industry-card {
  perspective: 800px;
  height: 180px;
  cursor: pointer;
}

.industry-front,
.industry-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
}

.industry-card {
  position: relative;
}

.industry-front {
  background: var(--black-soft);
  border: 1px solid rgba(185, 185, 185, 0.08);
}

.industry-back {
  background: var(--burgundy);
  transform: rotateY(180deg);
}

.industry-back-img {
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.industry-back-img .industry-name {
  background: rgba(10, 10, 10, 0.6);
  padding: 6px 16px;
}

.industry-card:hover .industry-front {
  transform: rotateY(180deg);
}

.industry-card:hover .industry-back {
  transform: rotateY(0deg);
}

.industry-icon {
  color: var(--burgundy-light);
}

.industry-back .industry-name {
  color: var(--white);
}

.industry-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

/* =====================
   SERVICES / THE PRACTICE
   ===================== */
.services {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
  background: var(--black-soft);
}

.services-header {
  margin-bottom: 64px;
}

.services-sub {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--grey-dim);
  max-width: 460px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding: 48px 0;
  position: relative;
  transition: all 0.4s;
}

.service-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 16px;
}

.service-num {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--burgundy-light);
  min-width: 24px;
}

.service-name {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
  display: inline-block;
}

.service-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  padding-left: 48px;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--grey-dim);
  max-width: 640px;
  padding-left: 48px;
}

.service-line {
  height: 1px;
  background: var(--burgundy);
  opacity: 0.4;
  margin-top: 48px;
}

.service-item:last-child .service-line { display: none; }

.service-item:hover .service-name {
  color: var(--burgundy-light);
  transform: scale(1.08);
}

.service-item:hover .service-desc {
  transform: scale(1.02);
  transform-origin: left;
}

.service-desc {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================
   FOMO
   ===================== */
.fomo {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.fomo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.fomo-text {
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fomo-text strong {
  color: var(--white);
  font-weight: 800;
}

.fomo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 20px;
}

/* =====================
   INTELLIGENCE / THE BRIEF
   ===================== */
.intelligence {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
}

.intel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 120px);
  align-items: start;
}

.intel-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--grey);
  margin-top: 8px;
}

.intel-heading strong {
  color: var(--white);
  font-weight: 800;
}

.intel-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 2;
  color: var(--grey-dim);
  margin-bottom: 36px;
}

.intel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.intel-highlight {
  color: var(--burgundy-light);
  font-weight: 700;
}

.intel-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  background: rgba(185, 185, 185, 0.08);
  border: 1px solid rgba(185, 185, 185, 0.15);
  padding: 10px 20px;
  transition: all 0.3s;
  cursor: default;
}

.intel-tag:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.intel-form-row {
  display: flex;
  border: 1px solid rgba(185, 185, 185, 0.15);
  transition: border-color 0.3s;
}

.intel-form-row:focus-within { border-color: var(--burgundy); }

.intel-form-row input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--white);
  outline: none;
}

.intel-form-row input::placeholder { color: var(--grey-dim); }

.intel-form-row button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  border: none;
  color: var(--white);
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.intel-form-row button:hover { background: var(--burgundy-light); }

/* =====================
   INQUIRY
   ===================== */
.inquiry {
  border-top: 1px solid rgba(185, 185, 185, 0.08);
  background: var(--black-soft);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 120px);
  align-items: start;
}

.inquiry-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--grey);
  margin-top: 8px;
}

.inquiry-heading strong {
  color: var(--white);
  font-weight: 800;
}

.inquiry-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-top: 28px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(185, 185, 185, 0.12);
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--grey-dim);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--burgundy);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--burgundy);
  border: none;
  color: var(--white);
  padding: 18px 40px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
}

.form-submit svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover svg {
  transform: translate(3px, -3px);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  border-top: 1px solid rgba(185, 185, 185, 0.06);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo-eq {
  border-bottom: 3px solid var(--burgundy);
  padding-bottom: 1px;
}

.footer-tagline {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--grey-dim);
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dim);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--burgundy-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-contact a {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--grey-dim);
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--burgundy-light); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dim);
  transition: color 0.3s;
}

.footer-social:hover { color: var(--burgundy-light); }

.footer-locations {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 185, 185, 0.06);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--grey-dim);
}

/* =====================
   ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .hero-right { padding-left: 0; }

  .hero-title {
    font-size: clamp(4rem, 16vw, 8rem);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intel-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand { align-items: center; }
  .footer-contact { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 120px 0 60px; }

  .form-row { grid-template-columns: 1fr; }

  .intel-heading br,
  .inquiry-heading br { display: none; }

  .intel-form-row { flex-direction: column; }
  .intel-form-row button { justify-content: center; }

  .service-desc { padding-left: 0; }
  .service-label { padding-left: 0; }
  .who-for-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .industry-card { height: 150px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .section-label { margin-bottom: 36px; }
  .service-num { display: none; }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card { height: 130px; }

  .fomo-watermark {
    font-size: 5rem;
  }
}
