/* ============================================================
   SAIVAI GROUP — GLOBAL STYLES
   Aesthetic: "Authoritative Intelligence"
   Palette: Navy #0D1B3E | Gold #C9A84C | White #FFFFFF | Gray #F7F8FA | Teal #0A7EA4
   Typography: Playfair Display (headlines) + Inter (body)
   ============================================================ */

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

:root {
  --navy:      #0D1B3E;
  --navy-mid:  #162447;
  --navy-light:#1E3A5F;
  --gold:      #C9A84C;
  --gold-light:#E2C97A;
  --white:     #FFFFFF;
  --gray-50:   #F7F8FA;
  --gray-100:  #EEF0F4;
  --gray-300:  #C5C9D4;
  --gray-500:  #7A8099;
  --teal:      #0A7EA4;
  --teal-light:#12A3D0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,62,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.2);
}

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

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.desktop-only { display: inline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.45); }
.btn-primary.large { font-size: 1.05rem; padding: 16px 40px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); color: var(--gold); }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-headline.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.7;
}

.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.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: transform 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10,126,164,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  position: relative;
  width: 360px;
}
.hero-card-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Trust Bar */
.trust-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 18px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-icon { color: var(--gold); }
.trust-sep { color: rgba(201,168,76,0.3); font-size: 1.2rem; }

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.section-light { padding: var(--section-pad); background: var(--gray-50); }
.section-dark { padding: var(--section-pad); background: var(--navy); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem-body { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-frame { position: relative; }
.about-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  height: 480px;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-credentials {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 10px 20px;
}
.cred-item {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(201,168,76,0.1);
  border-radius: 20px;
}
.about-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(201,168,76,0.06);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 600;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 100px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
}
.service-icon { font-size: 1.8rem; margin-bottom: 16px; }
.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-outcome {
  font-size: 0.9rem;
  color: var(--teal);
  background: rgba(10,126,164,0.06);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-body { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.service-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.service-cta:hover { color: var(--teal); }

/* ============================================================
   CONVERGENCE (AI + HEALTHCARE) SECTION
   ============================================================ */
.convergence { position: relative; overflow: hidden; }
.convergence-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.convergence-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}
.convergence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.conv-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 28px 24px;
}
.conv-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.conv-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.result-metric {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.result-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.result-body { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.result-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.results-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-300);
  padding-top: 8px;
}

/* ============================================================
   SPEAKING SECTION
   ============================================================ */
.speaking-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.speaking-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 32px;
}
.speaking-topics { margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.topic-dot { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.speaking-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 320px;
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 24px;
}
.speaking-ai-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 20px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ai-note-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ai-note-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.ai-note-link { color: var(--gold); font-weight: 600; display: inline-block; margin-top: 6px; }
.ai-note-link:hover { color: var(--gold-light); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section-contact {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
  position: relative;
}
.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-headline .gold { color: var(--gold); }
.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.contact-options { display: flex; flex-direction: column; gap: 24px; }
.contact-alt { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { font-size: 1rem; width: 24px; text-align: center; }
.contact-link {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }

.qr-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}
.qr-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.qr-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 8px;
}
.qr-url {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.qr-sub { font-size: 0.78rem; color: var(--gray-300); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080F1F;
  padding: 60px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer-location { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
.footer-legal p { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.6; margin-bottom: 8px; }
.footer-disclaimer { font-size: 0.75rem !important; max-width: 800px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card { width: 100%; max-width: 380px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-frame { max-width: 380px; }
  .convergence-inner { grid-template-columns: 1fr; gap: 48px; }
  .speaking-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .qr-panel { max-width: 320px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .desktop-only { display: none; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 24px; gap: 20px; border-top: 1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .convergence-stats { grid-template-columns: 1fr 1fr; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .trust-bar-inner { gap: 8px; }
  .trust-sep { display: none; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .convergence-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE OVERFLOW LOCK — prevents horizontal scroll/wobble
   ============================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* Every direct child of body must not exceed viewport */
body > * {
  max-width: 100%;
  overflow-x: hidden;
}

/* Sections and containers */
section, header, footer, nav, .container {
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero glow — was positioned at -200px right, causing overflow */
.hero-glow {
  right: -100px;
  max-width: 100vw;
  overflow: hidden;
}

/* ============================================================
   SERVICE LIST (missing from original styles)
   ============================================================ */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--gray-500);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.service-card.service-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.service-card.service-featured .service-title { color: var(--white); }
.service-card.service-featured .service-body { color: rgba(255,255,255,0.72); }
.service-card.service-featured .service-list li { color: rgba(255,255,255,0.72); }

/* ============================================================
   ABOUT STATS (missing sub-classes)
   ============================================================ */
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================================
   PROCESS SECTION (missing entirely)
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.process-content { flex: 1; min-width: 0; }
.process-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.process-body {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-left: 39px;
  opacity: 0.4;
}

/* ============================================================
   BOOKING OPTIONS (missing entirely)
   ============================================================ */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.booking-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-option.booking-option-featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.booking-option-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.booking-option-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.booking-option-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
}
.booking-btn {
  margin-top: 8px;
  align-self: flex-start;
}
.btn-ghost-navy {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-navy:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   ATTRIBUTION PANEL (missing entirely)
   ============================================================ */
.attribution-panel {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.attribution-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.attribution-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.attribution-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s;
}
.attribution-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* ============================================================
   COMPREHENSIVE MOBILE FIXES — no horizontal scroll/wobble
   ============================================================ */
@media (max-width: 768px) {
  /* Lock all sections */
  .hero, .async-section, .section-light, .section-dark,
  .section-contact, .footer, #about, #process, #speaking {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Hero glow must not cause overflow */
  .hero-glow { display: none; }
  .hero-bg-grid { width: 100%; }

  /* Booking options stack on mobile */
  .booking-options { grid-template-columns: 1fr; }

  /* Process step: tighter on mobile */
  .process-step { gap: 16px; padding: 24px 0; }
  .process-num { font-size: 2.5rem; width: 56px; }
  .process-connector { margin-left: 27px; }

  /* Attribution wraps cleanly */
  .attribution-options { gap: 6px; }

  /* Service featured card full width */
  .service-card.service-featured { grid-column: 1; }

  /* About credentials pill — was overflowing */
  .about-credentials {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 12px;
    margin-top: 16px;
    width: 100%;
  }

  /* Async inner already handled but reinforce */
  .async-inner { overflow-x: hidden; }

  /* Nav menu must not cause overflow */
  .nav-links {
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  /* Contact inner */
  .contact-inner { overflow-x: hidden; }

  /* Footer */
  .footer-links { gap: 24px; }

  /* QR panel on mobile */
  .qr-panel { max-width: 100%; }

  /* Sync session grid */
  .sync-session-grid { grid-template-columns: 1fr 1fr; }

  /* Convergence stats */
  .convergence-stats { overflow-x: hidden; }

  /* Trust bar */
  .trust-bar-inner { overflow-x: hidden; }
}

@media (max-width: 480px) {
  /* Tightest mobile — iPhone SE etc */
  .container { padding: 0 16px; }
  .hero-inner { padding-top: 48px; padding-bottom: 48px; }
  .hero-card { width: 100%; }
  .hero-photo { height: 320px; }
  .booking-btn { width: 100%; text-align: center; }
  .sync-session-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 8px; }
  .process-num { font-size: 2rem; width: auto; }
  .process-connector { margin-left: 16px; }
  .about-credentials { display: none; } /* hide pill on very small screens */
  .attribution-options { flex-direction: column; }
  .attribution-btn { text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; }
  .async-tier-title { font-size: 0.95rem; }
  .section-headline { font-size: 1.75rem; }
}
