/* ============================================
   RENDER DSM — Stylesheet
   ============================================ */

:root {
  --navy:      #0F2044;
  --navy-mid:  #1B3A6B;
  --gold:      #F5A623;
  --gold-dark: #D4881A;
  --teal:      #1ABFBF;
  --teal-dark: #148f8f;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100:  #F0EFEC;
  --gray-200:  #E2E0DC;
  --gray-400:  #9E9B96;
  --gray-600:  #5C5954;
  --gray-800:  #2C2A27;
  --text:      #1A1918;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15, 32, 68, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo-render { color: var(--white); }
.logo-dsm    { color: var(--gold); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(15, 32, 68, 0.99);
  padding: 8px 0 16px;
}

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 24px;
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #080f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.hero-orb--blue {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(27,58,107,0.85) 0%, transparent 65%);
  top: -260px;
  left: -200px;
  animation: orbDrift 22s ease-in-out infinite;
}

.hero-orb--gold {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 65%);
  bottom: -80px;
  right: 8%;
  animation: orbDrift 17s ease-in-out infinite reverse;
}

.hero-orb--teal {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(26,191,191,0.12) 0%, transparent 65%);
  top: 25%;
  right: -120px;
  animation: orbDrift 26s ease-in-out infinite 6s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 38px 38px;
}

@keyframes orbDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(40px, -30px) scale(1.06); }
  65%      { transform: translate(-25px, 45px) scale(0.94); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--gold);
  font-style: italic;
}

.cursor {
  color: var(--gold);
  animation: blink 0.9s step-start infinite;
  font-style: normal;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
}

.desktop-break { display: none; }
@media (min-width: 768px) { .desktop-break { display: block; } }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.btn-ghost {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(255,255,255,0.35);
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  margin-top: -4px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.neighborhoods-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.neighborhoods-scroll span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.neighborhoods-scroll .dot {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   SECTION SHARED
   ============================================ */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--off-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.problem-text .section-eyebrow { color: var(--gold-dark); }

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.problem-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 191, 191, 0.10);
  border: 1px solid rgba(26, 191, 191, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--teal-dark);
  transition: background var(--transition), border-color var(--transition);
}

.problem-icon svg {
  width: 22px;
  height: 22px;
}

.problem-card:hover .problem-icon {
  background: rgba(26, 191, 191, 0.18);
  border-color: rgba(26, 191, 191, 0.35);
}

.problem-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
}

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

.service-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-400);
}

.service-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--navy);
  color: var(--white);
}

.service-card--featured h3,
.service-card--featured .service-price { color: var(--white); }
.service-card--featured .service-timeline { color: rgba(255,255,255,0.6); }
.service-card--featured li { color: rgba(255,255,255,0.85); }
.service-card--featured li::before { color: var(--gold); }

.service-card--care {
  background: linear-gradient(160deg, #E8F8F8 0%, #F0FAFA 100%);
  border-color: var(--teal);
}

.service-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-badge--gold {
  background: rgba(245,166,35,0.15);
  color: var(--gold-dark);
}

.service-badge--teal {
  background: rgba(26,191,191,0.12);
  color: var(--teal-dark);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(26, 191, 191, 0.10);
  border: 1px solid rgba(26, 191, 191, 0.18);
  color: var(--teal-dark);
  transition: background var(--transition), border-color var(--transition);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card--featured .service-icon {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.30);
  color: var(--gold);
}

.service-card--care .service-icon {
  background: rgba(15, 32, 68, 0.10);
  border-color: rgba(15, 32, 68, 0.18);
  color: var(--navy-mid);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.service-timeline {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.service-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-service {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: auto;
}

.btn-service:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

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

.btn-service--gold:hover { background: var(--gold-dark); }

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

.btn-service--teal:hover { background: var(--teal-dark); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process .section-header h2 { color: var(--white); }
.process .section-header p  { color: rgba(255,255,255,0.6); }
.process .section-eyebrow   { color: var(--gold); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(245,166,35,0.07);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: rgba(245,166,35,0.25);
  align-self: flex-start;
  margin-top: 30px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3.5px;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(245,166,35,0.35);
  border-top: 2px solid rgba(245,166,35,0.35);
  transform: rotate(45deg);
}

/* ============================================
   NEIGHBORHOODS
   ============================================ */
.neighborhoods {
  background: var(--off-white);
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.neighborhoods-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.neighborhoods-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}

.dsm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.dsm-tag {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.dsm-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* DSM Stats Card */
.dsm-stats-card {
  background: linear-gradient(160deg, var(--navy) 0%, #162d55 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.dsm-stats-header {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.map-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

.dsm-stats-body {
  padding: 8px 0;
}

.dsm-stat-item {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dsm-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-body);
}

.dsm-stat-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

.dsm-stat-rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 28px;
}

.dsm-stats-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.who-we-serve {
  background: var(--white);
}

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

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  background: var(--off-white);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 191, 191, 0.08);
  border: 1px solid rgba(26, 191, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.industry-icon svg {
  width: 20px;
  height: 20px;
}

.industry-card:hover .industry-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.industry-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--off-white);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   AUDIT CTA
   ============================================ */
.audit-cta {
  background: var(--navy);
  padding: 72px 0;
}

.audit-card {
  background: linear-gradient(135deg, rgba(245,166,35,0.12) 0%, transparent 60%);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.audit-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.audit-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--off-white);
}

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

.contact-text .section-eyebrow { color: var(--teal-dark); }

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-text > p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 8px;
  color: var(--teal);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

.btn-submit {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 100px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.form-success {
  display: none;
  background: rgba(26,191,191,0.1);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 600;
  text-align: center;
}

.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-800);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.82rem !important;
  margin-top: 8px;
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger children of .reveal elements */
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }

.industries-grid .industry-card:nth-child(2) { transition-delay: 0.05s; }
.industries-grid .industry-card:nth-child(3) { transition-delay: 0.10s; }
.industries-grid .industry-card:nth-child(4) { transition-delay: 0.15s; }
.industries-grid .industry-card:nth-child(5) { transition-delay: 0.20s; }
.industries-grid .industry-card:nth-child(6) { transition-delay: 0.25s; }
.industries-grid .industry-card:nth-child(7) { transition-delay: 0.30s; }
.industries-grid .industry-card:nth-child(8) { transition-delay: 0.35s; }

.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.problem-cards .problem-card:nth-child(2) { transition-delay: 0.06s; }
.problem-cards .problem-card:nth-child(3) { transition-delay: 0.12s; }
.problem-cards .problem-card:nth-child(4) { transition-delay: 0.18s; }

.process-step:nth-child(3) { transition-delay: 0.1s; }
.process-step:nth-child(5) { transition-delay: 0.2s; }
.process-step:nth-child(7) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 32px;
    gap: 20px;
  }

  .process-num { margin-bottom: 0; flex-shrink: 0; }

  .process-connector {
    width: 2px;
    height: 24px;
    margin-top: 0;
    margin-left: 29px;
    margin-bottom: 0;
  }

  .process-connector::after {
    right: -3.5px;
    top: auto;
    bottom: -5px;
    border-right: 0;
    border-top: 0;
    border-left: 2px solid rgba(245,166,35,0.35);
    border-bottom: 2px solid rgba(245,166,35,0.35);
    transform: rotate(-45deg);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .audit-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .reveal-left, .reveal-right {
    transform: translateY(24px);
  }
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats {
    gap: 0;
  }

  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.3rem; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.1rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-cards { grid-template-columns: 1fr; }
}
