/* ============================================================
   ZALTIVEX — DENTAL SOLUTIONS PLATFORM
   Design System: Clinical authority meets modern precision
   Palette: Deep navy command, surgical teal, warm ivory, clean white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  /* Core Palette */
  --navy:      #0B1F3A;
  --navy-mid:  #142D52;
  --teal:      #1A7F7A;
  --teal-light:#22A39D;
  --teal-pale: #E6F5F4;
  --gold:      #C9A84C;
  --ivory:     #F7F4EF;
  --white:     #FFFFFF;
  --gray-100:  #F2F2F2;
  --gray-300:  #D1D5DB;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --text-dark: #0D1B2A;
  --text-body: #2D3748;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-util:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --section-pad-sm: 64px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s var(--ease);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.logo-mark {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(26,127,122,0.5));
}
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.logo-tagline {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 400;
  color: var(--teal-light);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-util);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal-light);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-light) !important; }

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

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,58,0.93) 42%, rgba(26,127,122,0.38) 100%),
    url('https://images.unsplash.com/photo-1588776814546-ec7e904bbae4?w=1800&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 32px 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}
.hero-sub {
  font-family: var(--font-util);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-stat-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-family: var(--font-util);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}
.stat-accent { color: var(--teal-light) !important; }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-heading em { font-style: italic; color: var(--teal); }
.section-sub {
  font-family: var(--font-util);
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 640px;
}
.bg-ivory { background: var(--ivory); }
.bg-navy  { background: var(--navy); }
.bg-teal-pale { background: var(--teal-pale); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--gray-300);
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  transition: background 0.25s;
}
.service-card:hover { background: var(--teal-pale); }
.service-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}
.service-line {
  width: 40px;
  height: 3px;
  background: var(--teal);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--teal);
  border-radius: 12px;
  z-index: -1;
}
.feature-body .section-label { margin-top: 0; }
.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--teal-pale);
  line-height: 0.7;
  position: absolute;
  top: 28px;
  left: 28px;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-util);
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 28px;
  padding-top: 20px;
}
.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-500);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-300);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--ivory);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-family: var(--font-util);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-size: cover;
  background-position: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero p {
  font-family: var(--font-util);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--teal);
  padding: 72px 0;
}
.cta-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  max-width: 620px;
  line-height: 1.2;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--teal);
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--ivory); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  border-top: 3px solid var(--teal);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-family: var(--font-util);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  max-width: 300px;
}
.footer-heading {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: var(--font-util);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  font-family: var(--font-util);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-item strong {
  display: block;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-util);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label .optional {
  font-weight: 400;
  color: var(--gray-500);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,127,122,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* SMS Checkboxes */
.consent-block {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 28px;
  margin-top: 32px;
  border-left: 3px solid var(--teal);
}
.consent-block h4 {
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.checkbox-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-300);
}
.checkbox-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.checkbox-item p {
  font-family: var(--font-util);
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.7;
}
.checkbox-item p a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* Success message */
.success-msg {
  display: none;
  background: var(--teal-pale);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  font-family: var(--font-util);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 24px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value-card {
  border-top: 3px solid var(--teal);
  padding: 32px 28px;
  background: var(--white);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card p {
  font-family: var(--font-util);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray-100);
}
.leader-info { padding: 20px; }
.leader-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-info span {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-300);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.flip { }
.service-detail.flip .sd-image { order: 2; }
.service-detail.flip .sd-body { order: 1; }
.sd-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sd-image img { width: 100%; height: 100%; object-fit: cover; }
.sd-body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sd-body p {
  font-family: var(--font-util);
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sd-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-family: var(--font-util);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}
.stat-block {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-block span {
  font-family: var(--font-util);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-body {
  max-width: 860px;
  margin: 0 auto;
}
.privacy-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-300);
}
.privacy-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.privacy-body p {
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 16px;
}
.privacy-body ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.privacy-body ul li {
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 6px;
}
.privacy-highlight {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-stat-panel { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.flip .sd-image { order: 0; }
  .service-detail.flip .sd-body { order: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-block:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 96px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px 32px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stat-panel { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-block { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .trust-bar-inner { justify-content: center; }
}

/* About page stats+image split — mobile collapse */
@media (max-width: 768px) {
  .about-stats-split {
    grid-template-columns: 1fr !important;
  }
  .about-stats-split > div:first-child {
    min-height: 220px !important;
    position: relative !important;
  }
}
