:root {
  --navy: #0A1628;
  --navy-mid: #122040;
  --navy-light: #1A3060;
  --gold: #C9922A;
  --gold-light: #E8B04A;
  --gold-pale: #F5E6C8;
  --steel: #4A6FA5;
  --steel-light: #6B8FC7;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #EEF1F7;
  --gray-300: #C2CBD9;
  --gray-500: #7A8BA0;
  --gray-700: #3D4E62;
  --text-dark: #0D1B2E;
  --text-body: #3D4E62;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; color: var(--text-dark); line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--gold);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; margin-top: 12px; margin-bottom: 20px;
}

.section-sub {
  font-size: 17px; color: var(--gray-500);
  max-width: 580px; line-height: 1.75;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.5px;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--white); color: var(--white);
  padding: 13px 30px; border-radius: var(--radius);
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 14px; transition: all 0.25s ease;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 13px; color: var(--gray-300);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gray-300); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ===================== HEADER ===================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,22,40,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  color: var(--gold); letter-spacing: -1px;
}
.logo-text { font-family: 'Sora', sans-serif; }
.logo-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-text span { font-size: 11px; font-weight: 400; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 28px 18px;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--gray-700); transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--gold); }

/* Mega menu indicator */
.nav-link.has-sub::after {
  content: '▾'; margin-left: 4px; font-size: 10px; color: var(--gray-500);
}

.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  padding: 32px; min-width: 600px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.2s ease; margin-top: 8px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: all; }

.mega-item {
  padding: 12px 14px; border-radius: var(--radius);
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.mega-item:hover { background: var(--off-white); }
.mega-item:focus { background: var(--off-white); outline: 2px solid var(--navy); outline-offset: 2px; }
.mega-item-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 8px;
}
.mega-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Sora',sans-serif; margin-bottom: 2px; }
.mega-item p { font-size: 12px; color: var(--gray-500); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn-primary { padding: 11px 24px; font-size: 13px; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }

/* ===================== PAGE TABS (Demo Navigation) ===================== */
.page-tabs {
  background: var(--navy-mid);
  padding: 0 24px;
  display: flex; gap: 0; overflow-x: auto;
}
.page-tab {
  padding: 14px 20px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--gray-300); cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all 0.2s;
}
.page-tab.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.page-tab:hover { color: var(--white); }

/* ===================== PAGE SECTIONS ===================== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===================== HERO ===================== */
.hero {
  background: var(--navy);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-circuit {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 55%; height: 80%;
  background: radial-gradient(ellipse at 60% 50%, rgba(74,111,165,0.25) 0%, transparent 70%);
  z-index: 1;
}

.hero-accent {
  position: absolute; top: 10%; right: 10%;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.15);
  z-index: 1;
}
.hero-accent::after {
  content: ''; position: absolute; inset: 40px;
  border-radius: 50%; border: 1px solid rgba(201,146,42,0.1);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 40px 0; }

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -30px;
  background: radial-gradient(circle, rgba(201,146,42,0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  overflow: visible;
}

.hero-shape-1 {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(201,146,42,0.3);
  border-radius: 50%;
  top: 10%;
  right: -5%;
  animation: rotateFloat 12s linear infinite;
}

.hero-shape-2 {
  position: absolute;
  width: 25px;
  height: 25px;
  background: rgba(201,146,42,0.2);
  border-radius: 50%;
  bottom: 20%;
  left: 0%;
  animation: pulseFloat 5s ease-in-out infinite;
}

.hero-shape-3 {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid rgba(201,146,42,0.15);
  bottom: 40%;
  right: 5%;
  transform: rotate(45deg);
  animation: rotateFloat 10s linear infinite reverse;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 200px 10px 60px 10px;
  overflow: visible;
  background: linear-gradient(135deg, rgba(201,146,42,0.2) 0%, rgba(30,60,114,0.4) 100%);
  padding: 8px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, transparent 40%, var(--gold-light) 100%);
  border-radius: 220px 15px 80px 15px;
  opacity: 0.3;
  z-index: -1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: -30px;
  left: -20px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.4;
}

@keyframes morphShape {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes floatPulse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(10px, -10px) scale(1.1); opacity: 0.3; }
}

@keyframes rotateFloat {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-10px); }
  100% { transform: rotate(360deg) translateY(0); }
}

@keyframes pulseFloat {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

.hero-image-inner {
  border-radius: 180px 5px 50px 5px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}

.hero-image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.hero-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  min-height: 500px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,146,42,0.15); border: 1px solid rgba(201,146,42,0.3);
  border-radius: 50px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--gold-light);
  margin-bottom: 28px; font-family: 'Sora', sans-serif;
}
.hero-badge::before { content: '⚡'; }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800; color: var(--white); line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  line-height: 1.75; margin-bottom: 40px; max-width: 560px;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 0; margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.stat-item { padding-right: 40px; }
.stat-item + .stat-item { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.trust-strip .container { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
  justify-content: center; 
  flex-wrap: wrap;
}
.trust-label { 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--gray-500); 
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-divider { 
  width: 1px; 
  height: 32px; 
  background: var(--gray-300); 
  flex-shrink: 0;
}

/* Logo Slider */
.logo-slider-wrapper {
  flex: 1;
  overflow: hidden;
  max-width: 700px;
}
.logo-slider-track {
  display: flex;
  gap: 32px;
  animation: logo-scroll 20s linear infinite;
  width: fit-content;
}
.logo-slider-track:hover {
  animation-play-state: paused;
}

.trust-logo {
  height: 72px; 
  display: flex; 
  align-items: center;
  font-family: 'Sora', sans-serif; 
  font-weight: 700;
  font-size: 13px; 
  color: var(--gray-500); 
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logo img {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: center;
}
.trust-logo:hover { opacity: 1; }

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

/* Responsive */
@media (max-width: 768px) {
  .trust-strip .container {
    flex-direction: column;
    gap: 16px;
  }
  .trust-divider {
    width: 60px;
    height: 1px;
  }
  .logo-slider-wrapper {
    max-width: 100%;
  }
  .logo-slider-track {
    gap: 24px;
    animation-duration: 15s;
  }
  .trust-logo {
    font-size: 12px;
  }
  .trust-logo img {
    height: 56px;
    max-width: 160px;
  }
}

/* ===================== SERVICES OVERVIEW ===================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 56px; }

.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gray-100); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; font-size: 13px; font-weight: 600;
  color: var(--gold); font-family: 'Sora', sans-serif;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ===================== WHY CHOOSE US ===================== */
.why-us { background: var(--navy); position: relative; overflow: hidden; }
.why-us-bg {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 70%);
}

.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.55); }
.why-us .label { color: var(--gold-light); }
.why-us .label::before { background: var(--gold-light); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.why-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.3s;
}
.why-item:hover { background: rgba(201,146,42,0.07); border-color: rgba(201,146,42,0.2); }
.why-num {
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
  color: rgba(201,146,42,0.25); line-height: 1; min-width: 40px;
}
.why-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-text p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===================== PROCESS ===================== */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px; background: var(--gray-100); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--navy); transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-num {
  background: var(--navy); color: var(--gold); border-color: var(--navy);
}
.process-step h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 12.5px; color: var(--gray-500); }

/* ===================== CLIENTS MASONRY SECTION ===================== */
.clients-section {
  background: var(--off-white);
  overflow-x: hidden;
}

.clients-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 48px;
  max-width: 100%;
}

.client-logo-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.client-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.client-logo-card img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.client-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
}

@media (max-width: 768px) {
  .clients-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .client-logo-card {
    padding: 20px 16px;
    min-height: 100px;
  }
  .client-logo-card img {
    max-width: 100px;
    max-height: 40px;
  }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px; color: var(--gray-700); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
}
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.author-info span { font-size: 12px; color: var(--gray-500); }

/* Testimonials Carousel */
.testimonials-carousel { position: relative; margin-top: 56px; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; max-width: 100%; padding: 0 40px; }
.testimonial-slide .testimonial-card { max-width: 700px; margin: 0 auto; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.carousel-btn-testimonial {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--navy);
  background: transparent; color: var(--navy); font-size: 18px; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.carousel-btn-testimonial:hover { background: var(--navy); color: var(--white); }
.carousel-dots-testimonial { display: flex; gap: 8px; }
.carousel-dot-testimonial {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: var(--gray-300); cursor: pointer; padding: 0; transition: all 0.3s;
}
.carousel-dot-testimonial.active { background: var(--navy); transform: scale(1.2); }

@media (max-width: 768px) {
  .testimonial-slide { padding: 0 10px; }
}

/* ===================== CTA BAND ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #A87520 100%);
  padding: 72px 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(24px,3vw,38px); color: var(--navy); font-weight: 800; }
.cta-band p { color: rgba(10,22,40,0.65); margin-top: 8px; font-size: 16px; }
.cta-band .btn-primary { background: var(--navy); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--navy-light); }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }

.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; margin: 20px 0 28px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 16px;
  transition: all 0.2s; text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-300); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 60px; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold-light); }

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.about-hero::before {
  content: 'ABOUT'; position: absolute;
  font-family: 'Sora', sans-serif; font-size: 200px; font-weight: 900;
  color: rgba(255,255,255,0.03); top: 50%; left: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none;
}
.about-hero h1 { color: var(--white); font-size: clamp(32px,5vw,56px); font-weight: 800; }
.about-hero p { color: rgba(255,255,255,0.65); font-size: 18px; margin-top: 16px; max-width: 580px; }

.about-story .grid-2 { gap: 80px; }
.about-story img { border-radius: var(--radius-lg); }
.timeline { margin-top: 40px; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: 15px; top: 32px; bottom: 0;
  width: 1px; background: var(--gray-100);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.timeline-content { padding-top: 4px; }
.timeline-year { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.timeline-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--gray-500); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mv-card {
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.mv-card.mission { background: var(--navy); }
.mv-card.vision { background: var(--off-white); }
.mv-card h3 { font-size: 20px; margin-bottom: 14px; }
.mv-card.mission h3 { color: var(--gold-light); }
.mv-card p { font-size: 15px; line-height: 1.75; }
.mv-card.mission p { color: rgba(255,255,255,0.7); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--gold);
}
.team-info { padding: 20px; }
.team-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--gray-500); }

/* Values */
.values-section { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-100);
  text-align: center;
}
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-500); }

/* ===================== SERVICES PAGE ===================== */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 80px;
}
.services-hero h1 { color: var(--white); font-size: clamp(32px,5vw,56px); font-weight: 800; }
.services-hero p { color: rgba(255,255,255,0.65); font-size: 18px; margin-top: 16px; max-width: 560px; }

.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.service-full-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: all 0.3s;
}
.service-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-card-header {
  background: var(--navy); padding: 28px;
  display: flex; align-items: center; gap: 16px;
}
.service-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(201,146,42,0.15); border: 1px solid rgba(201,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.service-card-header h3 { font-size: 17px; font-weight: 700; color: var(--white); }
.service-card-header p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.service-card-body { padding: 24px; }
.service-card-body ul { list-style: none; }
.service-card-body ul li {
  padding: 8px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 14px; display: flex; gap: 10px; align-items: center;
}
.service-card-body ul li:last-child { border-bottom: none; }
.service-card-body ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ===================== PORTFOLIO ===================== */
.portfolio-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 80px;
}
.portfolio-hero h1 { color: var(--white); font-size: clamp(32px,5vw,56px); font-weight: 800; }
.portfolio-hero p { color: rgba(255,255,255,0.65); font-size: 18px; margin-top: 16px; }

.portfolio-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 48px; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 50px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  border: 2px solid var(--gray-100); background: var(--white);
  color: var(--gray-700); cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 4/3;
}
.portfolio-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label h4 { color: var(--white); font-size: 16px; font-weight: 700; }
.portfolio-label p { color: var(--gold-light); font-size: 12px; margin-top: 4px; }
.portfolio-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; font-family: 'Sora', sans-serif;
}

/* ===================== CONTACT ===================== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 80px;
}
.contact-hero h1 { color: var(--white); font-size: clamp(32px,5vw,56px); font-weight: 800; }
.contact-hero p { color: rgba(255,255,255,0.65); font-size: 18px; margin-top: 16px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; margin-top: 64px; }

.contact-info h3 { font-size: 22px; margin-bottom: 32px; }
.nap-list { list-style: none; }
.nap-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.nap-item:last-child { border-bottom: none; }
.nap-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nap-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.nap-detail span { font-size: 14px; color: var(--gray-500); }

.map-placeholder {
  margin-top: 28px; height: 200px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8eef5 0%, #d4dde8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed var(--gray-300); gap: 8px;
  color: var(--gray-500); font-size: 13px; text-align: center;
}

/* Form */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.contact-form h3 { font-size: 22px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; font-family: 'Sora', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-100); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--off-white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--steel-light); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius);
  padding: 15px 36px; font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.25s; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.2); }

/* FAQ section */
.faq-section { background: var(--off-white); }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  margin-bottom: 12px; border: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px; font-weight: 700; font-size: 15px;
  color: var(--navy); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: 'Sora', sans-serif; width: 100%; border: none; background: none; text-align: left;
}
.faq-q:hover { background: var(--off-white); }
.faq-icon { color: var(--gold); font-size: 20px; font-weight: 400; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  font-size: 14px; color: var(--gray-500); line-height: 1.75;
}
.faq-a-inner { padding-bottom: 20px; }
.faq-item.active .faq-a { max-height: 500px; padding: 0 24px 20px; }

/* ===================== IMAGE CAROUSEL ===================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--navy);
  display: none; /* hidden until images added */
}
.carousel-wrapper.has-slides { display: block; }

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Dark overlay gradient at bottom */
.carousel-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.1) 0%,
    rgba(10,22,40,0.0) 40%,
    rgba(10,22,40,0.55) 100%
  );
  pointer-events: none;
}

/* Slide caption */
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 40px;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.slide-caption-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.slide-caption-text p {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Progress bar */
.carousel-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.15); z-index: 10;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* Prev / Next arrows */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(10,22,40,0.55); border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: all 0.2s; backdrop-filter: blur(6px);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Dot indicators */
.carousel-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.3s;
  border: none; padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px; border-radius: 4px;
}

/* Counter badge */
.carousel-counter {
  position: absolute; top: 16px; right: 16px;
  background: rgba(10,22,40,0.6); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 4px 12px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.8); backdrop-filter: blur(6px);
  z-index: 10;
}

/* Upload button (visible always when no slides, or as edit overlay) */
.carousel-upload-zone {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; z-index: 20;
  background: var(--navy);
}
.carousel-wrapper.has-slides .carousel-upload-zone { display: none; }

.upload-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,146,42,0.12); border: 2px dashed rgba(201,146,42,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.carousel-upload-zone h3 {
  font-size: 18px; color: var(--white); font-weight: 700;
}
.carousel-upload-zone p { font-size: 13px; color: rgba(255,255,255,0.45); }

.btn-upload {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 11px 28px; border-radius: var(--radius);
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; margin-top: 4px;
  transition: all 0.2s;
}
.btn-upload:hover { background: var(--gold-light); }

/* Floating add-more button (visible when slides exist) */
.carousel-add-btn {
  display: none;
  position: absolute; bottom: 20px; right: 72px;
  background: rgba(10,22,40,0.65); border: 1.5px solid rgba(201,146,42,0.5);
  color: var(--gold-light); border-radius: 50px;
  padding: 7px 16px; font-size: 12px; font-weight: 700;
  font-family: 'Sora', sans-serif; cursor: pointer;
  backdrop-filter: blur(6px); z-index: 10; gap: 6px;
  align-items: center; transition: all 0.2s;
}
.carousel-wrapper.has-slides .carousel-add-btn { display: flex; }
.carousel-add-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Pause indicator */
.carousel-pause-indicator {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: rgba(10,22,40,0.7); border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white; z-index: 10;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.carousel-pause-indicator.show { opacity: 1; }

/* Thumbnails strip */
.carousel-thumbs {
  display: none;
  background: var(--navy-mid);
  padding: 10px 16px;
  gap: 8px; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--gold) var(--navy);
}
.carousel-wrapper.has-slides ~ .carousel-thumbs { display: flex; }
.thumb-item {
  flex-shrink: 0; width: 72px; height: 48px;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s;
  position: relative;
}
.thumb-item.active { border-color: var(--gold); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-remove {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(200,50,50,0.9); color: white;
  font-size: 9px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; cursor: pointer; border: none;
  font-weight: 700;
}
.thumb-item:hover .thumb-remove { opacity: 1; }

@media (max-width: 768px) {
  .carousel-wrapper { height: 260px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 14px; }
  .slide-caption { padding: 16px 16px; }
  .slide-caption-text h3 { font-size: 14px; }
}
@media (max-width: 480px) {
  .carousel-wrapper { height: 200px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega-menu { min-width: 400px; grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 1000; }
  .nav-item { width: 100%; text-align: left; }
  .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid #eee; }
  .mega-menu { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .header-cta { display: none; }
  .hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-container { max-width: 400px; margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat-item:last-child { grid-column: 1/-1; border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .header-cta { display: none; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat-item + .stat-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
}
