/* ============================================================
   METALSCOPE INDIA — FULL DESIGN SYSTEM
   Colors: White #FFFFFF (dominant), Red #d72226, Blue #1a7fc1, Black #0A0A14
   ============================================================ */

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

:root {
  --white: #FFFFFF;
  --surface: #F7F7F7;
  --surface-2: #F0F2F5;
  --red: #d72226;
  --red-dark: #b31c20;
  --navy: #1a7fc1;
  --navy-dark: #1568a0;
  --black: #0A0A14;
  --black-mid: #12121F;
  --text: #111111;
  --text-muted: #666666;
  --border: #E2E2E2;
  --gold: #F0A500;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-num: 'Barlow Condensed', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.4s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-tag.white {
  color: rgba(255, 255, 255, 0.7);
}

.section-tag.white::before {
  background: rgba(255, 255, 255, 0.5);
}

.num-display {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  color: var(--red);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .section-pad-sm {
    padding: 48px 0;
  }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

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

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s;
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, padding 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--navy);
}

.nav-link.active::after {
  background: var(--navy);
}

.nav-caret {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.nav-caret svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav-item:hover .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  border-radius: 0 0 4px 4px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--surface);
  color: var(--navy);
  padding-left: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.nav-login:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-hamburger span:last-child {
  width: 70%;
}

/* Mobile overlay nav */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.nav-mobile-overlay.open {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
}

.mobile-sub-links {
  display: none;
  padding: 0 0 12px 16px;
  flex-direction: column;
  gap: 8px;
}

.mobile-sub-links.open {
  display: flex;
}

.mobile-sub-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 0;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 9px 16px;
    font-size: 0.75rem;
  }
}

/* ── HERO VIDEO SECTION ───────────────────────────────────── */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-video video,
.hero-video .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 20, 0.9) 0%,
      rgba(10, 10, 20, 0.5) 40%,
      rgba(10, 10, 20, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero-h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-h1 .red {
  color: var(--red);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ── 20 YEARS BAND ───────────────────────────────────────── */
.twenty-years-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 28px 0;
  border-top: 3px solid var(--red);
}

.twenty-years-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.twenty-years-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

.twenty-years-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.twenty-years-headline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.twenty-years-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .twenty-years-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .twenty-years-logo {
    height: 52px;
  }
}

/* ── NUMBERS SECTION ──────────────────────────────────────── */
.numbers-section {
  background: var(--white);
  overflow: hidden;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.numbers-left {
  padding: 80px 60px 80px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.numbers-left .display-md {
  color: var(--black);
  margin-bottom: 16px;
}

.numbers-left .sub-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.numbers-left p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
}

.numbers-right {
  padding: 60px 0 60px 40px;
  display: flex;
  align-items: center;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  width: 100%;
}

.stat-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  cursor: default;
}

.stat-card:nth-child(4),
.stat-card:nth-child(5) {
  grid-column: span 3;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 127, 193, 0.38);
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.stat-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-family: var(--font-num);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-card-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .numbers-left {
    padding: 64px 0 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .numbers-right {
    padding: 40px 0 64px;
  }

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

  .stat-card,
  .stat-card:nth-child(4),
  .stat-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* ── BUSINESS VERTICALS (FLIP CARDS) ─────────────────────── */
.verticals-section {
  background: var(--surface);
}

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 440px;
  gap: 20px;
  margin-top: 48px;
}

.flip-card {
  height: 440px;
  perspective: 1200px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-in-out);
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
}

.flip-front {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.flip-front::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
}

.flip-front-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-front-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flip-front-icon svg {
  width: 100%;
  height: 100%;
}

.flip-front h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.flip-front .hover-hint {
  font-size: 0.68rem;
  color: #52C5E5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}

.flip-back {
  background: var(--navy);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  color: var(--white);
}

.flip-back h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.flip-back-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.flip-back-content::-webkit-scrollbar {
  width: 3px;
}

.flip-back-content::-webkit-scrollbar-track {
  background: transparent;
}

.flip-back-content::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

.flip-back-sector {
  margin-bottom: 14px;
}

.flip-back-sector h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.flip-back-sector ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.flip-back-sector ul li {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.flip-back .btn-know-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.flip-back .btn-know-more:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .flip-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 440px;
  }
}

@media (max-width: 540px) {
  .flip-cards-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .flip-card {
    min-height: 380px;
  }
}

/* ── WAY OF WORKING (DARK SECTION) ───────────────────────── */
.wow-section {
  background: url('../logo/wow.jpeg') center center / cover no-repeat;
  color: var(--white);
  position: relative;
}

.wow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.wow-section .container {
  position: relative;
  z-index: 1;
}

.wow-header {
  margin-bottom: 56px;
}

.wow-section .section-tag {
  color: rgba(255, 255, 255, 0.5);
}

.wow-section .section-tag::before {
  background: rgba(255, 255, 255, 0.3);
}

.wow-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}

.wow-tagline span.red {
  color: var(--red);
}

.wow-tagline span.italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.wow-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.7;
}

.wow-key-stmt {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  margin-top: 24px;
  padding: 20px 28px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 4px 4px 0;
}

.wow-key-stmt strong {
  color: var(--red);
}

/* Process steps */
.wow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.wow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  z-index: 0;
}

.wow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.wow-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black-mid);
  border: 2px solid rgba(200, 16, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
}

.wow-step:hover .wow-step-icon {
  border-color: var(--red);
  background: var(--black-mid);
  box-shadow: 0 0 0 6px var(--black), 0 0 0 9px rgba(200, 16, 46, 0.4);
}

.wow-step:nth-child(even) .wow-step-icon {
  border-color: rgba(27, 127, 193, 0.45);
}

.wow-step:nth-child(even):hover .wow-step-icon {
  border-color: var(--navy);
  background: var(--black-mid);
  box-shadow: 0 0 0 6px var(--black), 0 0 0 9px rgba(27, 127, 193, 0.4);
}

.wow-step:nth-child(even) .wow-step-icon svg {
  stroke: var(--navy);
}

.wow-step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.wow-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wow-step:nth-child(even) .wow-step-num {
  background: var(--navy);
}

.wow-step h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.wow-step p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.wow-relay {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(27, 127, 193, 0.05);
  border-left: 3px solid var(--navy);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .wow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .wow-steps::before {
    display: none;
  }
}

@media (max-width: 540px) {
  .wow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── COMMITMENT SECTION ───────────────────────────────────── */
.commitment-section {
  background: var(--surface);
}

.commitment-section .section-heading .section-tag {
  color: var(--navy);
}

.commitment-section .section-heading .section-tag::before {
  background: var(--navy);
}

.commitment-section .section-heading .display-md {
  color: var(--black);
}

.commitment-section .section-heading p {
  color: var(--text-muted);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.commitment-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 36px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.commitment-card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.commitment-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commitment-icon i {
  font-size: 34px;
  color: var(--navy);
}

.commitment-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PROJECTS SECTION ─────────────────────────────────────── */
.projects-section {
  background: var(--black);
}

.projects-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.projects-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-mid);
  cursor: pointer;
}

.project-card.featured {
  grid-row: span 2;
}

.project-card-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.project-card.featured .project-card-img {
  min-height: 460px;
}

.project-card:hover .project-card-img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.95) 0%, rgba(10, 10, 20, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.project-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.project-stat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

.project-tag-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.project-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.project-year {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.project-card.featured .project-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.project-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 14px;
  display: none;
}

.project-card.featured .project-desc {
  display: block;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.25s;
}

.project-link:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .projects-header-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-cards-grid {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-row: auto;
  }

  .project-card.featured .project-card-img {
    min-height: 300px;
  }
}

/* ── CLIENTELE SECTION ────────────────────────────────────── */
.clientele-section {
  background: var(--white);
  padding: 80px 0;
}

.clientele-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.clientele-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 12px;
}

.clientele-section-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.client-logo-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  height: 90px;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, box-shadow 0.25s;
  cursor: default;
}

.client-logo-card:hover {
  background: var(--surface);
  z-index: 1;
  box-shadow: 0 0 0 1px var(--navy);
}

.client-logo-card img {
  width: 72px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(0.8) opacity(0.85);
  transition: filter 0.35s, transform 0.35s var(--ease-out);
}

.client-logo-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.12);
}

.client-logo-card .client-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 20, 50, 0.86);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 6px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.22s, transform 0.22s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-logo-card:hover .client-name-badge {
  opacity: 1;
  transform: translateY(0);
}

.client-logo-card.name-only .client-name-badge {
  position: static;
  transform: none;
  opacity: 1;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 6px 10px;
  max-width: 86px;
  overflow: visible;
  white-space: normal;
  pointer-events: auto;
}

.client-logo-card.name-only img {
  display: none;
}

.client-logo-card.name-only:nth-child(even) .client-name-badge {
  border-color: rgba(27, 127, 193, 0.35);
  color: var(--navy);
}

.client-logo-card.name-only:nth-child(odd) .client-name-badge {
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--red-dark);
}

@media (max-width: 1024px) {
  .client-logos-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 640px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-logo-card {
    height: 72px;
  }
}

@media (max-width: 420px) {
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── CLIENT LOGO CAROUSEL ────────────────────────────────── */
.logo-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 75s linear infinite;
}
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}
.logo-item {
  flex-shrink: 0;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.logo-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0.8) opacity(0.65);
  transition: filter 0.3s var(--ease-out);
  display: block;
}
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TESTIMONIALS SECTION ─────────────────────────────────── */
.testimonials-section {
  background: var(--black);
}

.testimonials-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.testimonials-header-grid p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 8px;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--black-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-4px);
}

.video-card:nth-child(3n) {
  border-color: rgba(27, 127, 193, 0.1);
}

.video-card:nth-child(3n):hover {
  border-color: rgba(27, 127, 193, 0.45);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a2e;
  overflow: hidden;
}

.video-thumb-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-circle {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover .video-play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(27, 127, 193, 0.2);
}

.video-play-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 8px;
  border-radius: 2px;
}

.video-info {
  padding: 18px 20px;
}

.video-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.video-person {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.video-company {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .testimonials-header-grid {
    grid-template-columns: 1fr;
  }

  .video-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── AWARDS & CERTIFICATIONS ──────────────────────────────── */
.certs-section {
  background: var(--black-mid);
}

.certs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.certs-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  align-self: start;
  margin-top: 8px;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.cert-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  background: rgba(200, 16, 46, 0.04);
  transform: translateY(-3px);
}

.cert-card:nth-child(even):hover {
  border-color: rgba(27, 127, 193, 0.45);
  background: rgba(27, 127, 193, 0.05);
}

.cert-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.cert-card:nth-child(even) .cert-icon {
  background: rgba(27, 127, 193, 0.15);
}

.cert-card:nth-child(even) .cert-icon svg {
  stroke: var(--navy);
}

.cert-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.cert-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}

.cert-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.awards-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.awards-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  align-self: start;
  margin-top: 8px;
}

/* ── AWARDS TIMELINE ────────────────────────────────────────── */
.awards-timeline {
  position: relative;
  padding: 32px 0 8px;
  margin-top: 16px;
}

.awards-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(200, 16, 46, 0.08) 100%);
}

.timeline-event {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  margin-bottom: 44px;
  align-items: flex-start;
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-event-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 22px 26px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.timeline-event-content:hover {
  border-color: rgba(200, 16, 46, 0.3);
  background: rgba(200, 16, 46, 0.05);
  transform: translateY(-3px);
}

.timeline-event.align-right .timeline-event-content {
  text-align: right;
}

.timeline-event.align-left .timeline-event-content {
  text-align: left;
}

.timeline-spacer {}

.timeline-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
  z-index: 1;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--black-mid);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.2);
  transition: box-shadow 0.3s;
}

.timeline-event:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.15), 0 0 20px rgba(200, 16, 46, 0.3);
}

.timeline-year-pill {
  font-family: var(--font-num);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.25);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.timeline-award-year {
  font-family: var(--font-num);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.timeline-award-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-award-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .awards-timeline::before {
    left: 16px;
    transform: none;
  }

  .timeline-event {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .timeline-event .timeline-spacer {
    display: none;
  }

  .timeline-event.align-right .timeline-event-content {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-center-col {
    order: -1;
    padding-top: 4px;
  }

  .timeline-year-pill {
    display: none;
  }
}

@media (max-width: 900px) {

  .certs-header,
  .awards-header {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }

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

/* ── LEAD FORM SECTION ────────────────────────────────────── */
.lead-section {
  background: var(--black);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.lead-left .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.lead-left .contact-detail+.contact-detail {
  margin-top: 12px;
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: var(--red);
}

.lead-form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px 32px;
}

.lead-form-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.lead-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.form-group select option {
  background: var(--black-mid);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: rgba(27, 127, 193, 0.05);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
  padding: 16px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-group.full {
    grid-column: auto;
  }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-logo-text span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo-text span:last-child {
  display: block;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-address span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  color: rgba(255, 255, 255, 0.55);
}

.social-icon:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.social-icon[aria-label="LinkedIn"]:hover {
  background: #0077B5;
  border-color: #0077B5;
}

.social-icon[aria-label="Instagram"]:hover {
  background: #E4405F;
  border-color: #E4405F;
}

.social-icon[aria-label="Facebook"]:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon[aria-label="YouTube"]:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon[aria-label="Twitter"]:hover,
.social-icon[aria-label="Twitter/X"]:hover {
  background: #111;
  border-color: #444;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s, padding-left 0.25s;
  letter-spacing: 0.02em;
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1.5fr repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── STICKY CTA SIDEBAR ───────────────────────────────────── */
.sticky-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 14px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s, padding-right 0.25s;
  overflow: hidden;
  max-width: 50px;
  border-radius: 4px 0 0 4px;
}

.sticky-cta a:hover {
  background: var(--red);
  max-width: 200px;
  padding-right: 20px;
}

.sticky-cta a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.sticky-cta .sticky-label {
  opacity: 0;
  transition: opacity 0.2s 0.1s;
  white-space: nowrap;
}

.sticky-cta a:hover .sticky-label {
  opacity: 1;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ── VIDEO MODAL ──────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--black);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-out);
}

.video-modal.open .video-modal-inner {
  transform: scale(1);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}

.video-modal-close:hover {
  background: var(--red);
}

.video-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ── PAGE HERO (non-home) ─────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(200, 16, 46, 0.08));
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero h1 span.red {
  color: var(--red);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
}

.page-hero-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-img {
    display: none;
  }

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

/* ── ABOUT PAGE SPECIFIC ──────────────────────────────────── */
.who-we-are-section {
  background: var(--white);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}

.who-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.who-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-num);
  font-size: 5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
}

.who-card:nth-child(odd) {
  border-left-color: var(--navy);
}

.who-card:nth-child(even) {
  border-left-color: var(--red);
}

.who-card:hover {
  background: var(--surface);
}

.who-card-num {
  font-family: var(--font-num);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.who-card-num::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 32px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 14px;
}

.who-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .who-we-are-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
}

.what-we-do-section {
  background: var(--surface-2);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.what-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.what-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.what-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}

.what-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.what-finishing {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  border-radius: 4px;
}

.what-finishing strong {
  color: var(--red);
}

@media (max-width: 768px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }
}

.chairman-section {
  background: var(--white);
}

.chairman-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.chairman-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.chairman-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}

.chairman-photo-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1;
}

.chairman-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.chairman-content blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}

.chairman-content blockquote p+p {
  margin-top: 16px;
}

.chairman-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.chairman-sig-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  display: none;
}

.chairman-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
}

.chairman-title {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .chairman-grid {
    grid-template-columns: 1fr;
  }

  .chairman-photo {
    max-width: 240px;
  }
}

/* ── MISSION VISION PAGE ──────────────────────────────────── */
.mv-section {
  background: var(--white);
}

.mv-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.mv-block:last-of-type {
  border-bottom: none;
}

.mv-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.mv-display span {
  color: var(--red);
  display: block;
}

.mv-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 24px;
}

.mv-content h3:first-child {
  margin-top: 0;
}

.mv-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  border-left: 4px solid var(--red);
  transition: box-shadow 0.3s, transform 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.value-num {
  font-family: var(--font-num);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mv-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ── BUSINESS VERTICALS HUB ───────────────────────────────── */
.verticals-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vertical-hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.vertical-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.vertical-hub-card-img {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.vertical-hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s, opacity 0.3s;
}

.vertical-hub-card:hover .vertical-hub-card-img img {
  transform: scale(1.05);
  opacity: 0.85;
}

.vertical-hub-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vertical-hub-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.vertical-hub-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.vertical-hub-card-body .btn-outline-red {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .verticals-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .verticals-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* ── VERTICAL SUB-PAGE SPECIFIC ───────────────────────────── */
.intro-section {
  background: var(--white);
}

.intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-cols img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.intro-text p+p {
  margin-top: 16px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.intro-stat-box {
  text-align: center;
  padding: 20px 12px;
  background: var(--surface);
  border-radius: 4px;
  border-top: 3px solid var(--red);
}

.intro-stat-box .num {
  font-family: var(--font-num);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.intro-stat-box span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .intro-cols {
    grid-template-columns: 1fr;
  }

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

.advantages-section {
  background: var(--surface-2);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.advantage-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.advantage-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--red);
}

.advantage-num {
  font-family: var(--font-num);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.advantage-text {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.applications-section {
  background: var(--white);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
}

.app-item:hover {
  background: var(--white);
  border-color: var(--red);
}

.app-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.app-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-strip {
  background: var(--navy);
  padding: 36px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.cta-strip-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ── PROJECTS PAGE ────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.projects-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.06);
}

.portfolio-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.portfolio-card:hover .portfolio-card-img-overlay {
  opacity: 1;
}

.portfolio-view-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-card-body {
  padding: 20px;
}

.portfolio-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.portfolio-card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.portfolio-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.client-chip {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(28, 56, 114, 0.08);
  padding: 3px 10px;
  border-radius: 2px;
}

.portfolio-card[style*="display: none"] {
  display: none !important;
}

@media (max-width: 900px) {
  .projects-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .projects-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contact-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  border-top: 4px solid var(--navy);
  transition: box-shadow 0.3s, transform 0.3s, border-top-color 0.3s;
}

.contact-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-top-color: var(--red);
}

.contact-type-icon {
  width: 48px;
  height: 48px;
  background: rgba(28, 56, 114, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-type-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.contact-type-card:hover .contact-type-icon {
  background: rgba(200, 16, 46, 0.08);
}

.contact-type-card:hover .contact-type-icon svg {
  stroke: var(--red);
}

.contact-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.contact-type-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info-section {
  background: var(--surface-2);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-text h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--red);
}

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1;
}

@media (max-width: 768px) {
  .contact-types-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ── EXCELLENCE / MEDIA / PLACEHOLDER PAGES ──────────────── */
.placeholder-section {
  background: var(--surface);
  text-align: center;
  padding: 120px 0;
}

.placeholder-section h2 {
  margin-bottom: 16px;
}

.placeholder-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-red {
  color: var(--red);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--text-muted);
}

.bg-white {
  background: var(--white);
}

.bg-surface {
  background: var(--surface);
}

.bg-black {
  background: var(--black);
}

.bg-navy {
  background: var(--navy);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* Section heading block */
.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center p {
  margin: 0 auto;
}

.section-heading.dark h2 {
  color: var(--white);
}

.section-heading.dark p {
  color: rgba(255, 255, 255, 0.55);
}

/* Inline red/navy colored text */
.accent-red {
  color: var(--red);
}

.accent-navy {
  color: var(--navy);
}

/* ── PRINT / REDUCE MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}