/* ═══════════════════════════════════════════
   TALK MAN 2 MAN — Shared Stylesheet
   ═══════════════════════════════════════════ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
img, video, svg, iframe { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { word-break: break-word; overflow-wrap: break-word; }
body {
  font-family: 'Inter', sans-serif;
  color: #1A2B35;
  background: #F5F7FA;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── CSS Variables ── */
:root {
  --navy: #0A2533;
  --teal-deep: #15394F;
  --teal-mid: #1E6B7E;
  --teal-light: #2A8FA8;
  --gold: #C18D36;
  --gold-hover: #a87a2e;
  --bg: #F5F7FA;
  --white: #fff;
  --text-dark: #1A2B35;
  --text-mid: #475569;
  --text-light: #94A3B8;
}

/* ══════════════════════════════════
   MOBILE MENU
══════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 80px 32px 48px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; z-index: 1001; }
.mobile-menu a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 600;
  transition: color 0.2s;
  display: flex; align-items: center;
  padding: 14px 0;
  width: 100%; max-width: 300px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover, .mobile-menu a.gold { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  color: #fff; font-size: 32px; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 112px;
  padding: 0 24px;
  display: flex; align-items: center;
  background: rgba(10,37,51,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,37,51,0.97);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  background: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-radius: 0; padding: 0; border: none; box-shadow: none;
  cursor: pointer;
  margin-right: 8px;
  opacity: 0.9; transition: opacity 0.2s;
}
.nav-logo:hover { background: none; border-color: transparent; box-shadow: none; opacity: 1; }
.nav-logo:hover .nav-logo-img { filter: none; }
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-logo-img {
  height: 96px; width: auto; display: block;
  transition: none;
}
.nav-links {
  display: flex; align-items: center;
  flex: 1;
  justify-content: space-evenly;
  list-style: none;
  gap: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  height: 112px;
  display: flex; align-items: center;
  padding: 0 6px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  color: var(--gold) !important;
  background: none !important;
  font-weight: 500 !important;
  padding: 0 6px !important;
  border-radius: 0 !important;
  height: 112px !important;
  font-size: 12.5px !important;
  display: flex !important; align-items: center !important;
  transition: color 0.15s !important;
}
.nav-cta:hover { background: none !important; color: var(--gold-hover) !important; transform: none !important; box-shadow: none !important; }
/* ── Resources Dropdown ── */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.82); font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.01em; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 4px;
  height: 112px; padding: 0 6px;
  transition: color 0.15s; white-space: nowrap;
}
.nav-drop-btn:hover, .nav-dropdown.open .nav-drop-btn { color: #fff; }
.drop-arrow { font-size: 9px; transition: transform 0.25s; display: inline-block; }
.nav-dropdown:hover .drop-arrow,
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(10,37,51,0.97); backdrop-filter: blur(20px);
  border-radius: 12px; padding: 6px; list-style: none;
  min-width: 150px; width: max-content;
  opacity: 0; visibility: hidden;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  z-index: 100;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu li a {
  display: block; padding: 10px 16px; border-radius: 8px;
  color: rgba(255,255,255,0.82) !important; font-size: 13px;
  font-weight: 500; transition: all 0.15s;
}
.nav-drop-menu li a:hover {
  background: rgba(193,141,54,0.18); color: var(--gold) !important;
}

/* Mobile menu icons */
.mob-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  vertical-align: middle; margin-right: 10px; opacity: 0.75;
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ── Dark-bg nav (for non-hero pages) ── */
.nav-dark {
  background: var(--navy);
  position: relative;
  padding: 20px 48px;
  overflow: visible;
}

/* ══════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.section { max-width: 100%; }
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193,141,54,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero-title {
  font-size: clamp(28px, 5vw, 64px);
  color: #fff; margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: 100%;
}
.page-hero-lead {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 580px; margin: 0 auto;
  line-height: 1.75;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title { font-size: clamp(32px, 5vw, 52px); color: var(--teal-deep); margin-bottom: 20px; }
.section-title.on-dark { color: #fff; }
.section-lead { font-size: 18px; color: var(--text-mid); line-height: 1.8; }
.section-lead.on-dark { color: rgba(255,255,255,0.72); }
.section-centered { text-align: center; }
.section-centered .section-lead { max-width: 640px; margin: 0 auto; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: #fff;
  padding: 16px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 600;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(193,141,54,0.4); }
.btn-outline-dark {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; padding: 16px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 600;
  transition: all 0.25s;
}
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-teal {
  display: inline-block;
  background: var(--teal-mid); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
}
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-1px); }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.js .reveal { transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in  { opacity: 1 !important; transform: translateY(0) !important; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

/* ══════════════════════════════════
   PILLAR CARDS
══════════════════════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 28px rgba(10,37,51,0.07);
  transition: transform 0.32s, box-shadow 0.32s;
}
.pillar-card:hover { transform: translateY(-7px); box-shadow: 0 18px 52px rgba(10,37,51,0.14); }
.pillar-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pillar-body { padding: 32px; }
.pillar-num { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pillar-title { font-size: 24px; color: var(--teal-deep); margin-bottom: 14px; }
.pillar-desc { color: var(--text-mid); font-size: 15px; line-height: 1.72; }
.pillar-rule { display: block; width: 36px; height: 3px; background: var(--gold); margin-top: 22px; border-radius: 2px; }

/* ══════════════════════════════════
   PACKAGE CARDS
══════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pkg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.pkg-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.pkg-card.featured { background: rgba(193,141,54,0.14); border-color: var(--gold); }
.pkg-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.pkg-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px; flex: 1;
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.5;
}
.pkg-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pkg {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.3s; position: relative;
}
.pkg:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.pkg.featured { background: rgba(193,141,54,0.14); border-color: var(--gold); transform: scale(1.03); }
.pkg.featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 999px;
  white-space: nowrap;
}
.pkg-name { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 6px; }
.pkg-sessions { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.pkg-rule { height: 1px; background: rgba(255,255,255,0.14); margin-bottom: 22px; }
.pkg-desc { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.8); font-size: 14px; }
.chk { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: #fff; margin-top: 2px; }
.pkg-btn { display: block; width: 100%; text-align: center; padding: 14px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all 0.25s; }
.pkg-btn-gold { background: var(--gold); color: #fff; }
.pkg-btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.pkg-btn-line { border: 2px solid rgba(255,255,255,0.38); color: #fff; }
.pkg-btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════
   BLOG CARDS
══════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  border-radius: 16px; overflow: hidden;
  background: var(--bg); border: 1px solid #E2ECF3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(10,37,51,0.1); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-body { padding: 26px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; display: block; }
.blog-title { font-size: 18px; color: var(--teal-deep); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.blog-link { color: var(--gold); font-size: 14px; font-weight: 600; }
.blog-link:hover { color: var(--gold-hover); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--navy); padding: 64px 48px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px;
  display: block;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 14px; background: #fff; border-radius: 6px; padding: 4px 8px; display: inline-block; }
.footer-about p { color: rgba(255,255,255,0.52); font-size: 14px; line-height: 1.72; max-width: 270px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { color: rgba(255,255,255,0.58); font-size: 14px; transition: color 0.2s; }
.footer-col li a:hover { color: #fff; }

/* Phone number in footer */
.footer-phone {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-phone-left { display: flex; flex-direction: column; gap: 4px; }
.footer-phone-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.footer-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: #fff; font-weight: 700;
  letter-spacing: -0.5px;
}
.footer-phone-number a { color: #fff; transition: color 0.2s; }
.footer-phone-number a:hover { color: var(--gold); }
.footer-phone-note { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-phone-right { }

/* Social icons */
.social-row {
  display: flex; gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  color: rgba(255,255,255,0.7);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }

/* Footer bottom */
.footer-bottom {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 0 32px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer-legal { color: rgba(255,255,255,0.32); font-size: 12px; max-width: 560px; text-align: right; line-height: 1.55; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
/* ── 1024px: Tablet Landscape ── */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .page-hero { padding: 130px 40px 72px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pkg.featured { transform: none; }
  .pkg.featured:hover { transform: translateY(-4px); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 600px–900px: Compact nav — items shrink to fit ── */
@media (min-width: 601px) and (max-width: 900px) {
  .nav-links a, .nav-cta { font-size: 11px !important; padding: 0 3px !important; }
  .nav-drop-btn { font-size: 11px !important; padding: 0 3px !important; }
  .nav-logo-img { height: 82px !important; }
}

/* ── 600px: Nav switches to hamburger ── */
@media (max-width: 600px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
}

/* ── 768px: Tablet Portrait ── */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .nav { height: 80px; padding: 0 16px; }
  .nav.scrolled { height: 80px; padding: 0 16px; }
  .nav-dark { height: 80px; padding: 0 16px !important; }
  .nav-logo-img { height: 60px; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 100px 20px 56px; }
  .section-inner { padding: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { text-align: left; }
  .footer-phone { flex-direction: column; }
  /* Tables get horizontal scroll */
  .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { min-width: 480px; }
  /* Bar chart labels shrink */
  .bar-label { min-width: 120px; font-size: 12px; }
  /* ── Collapse ALL inline-style multi-col grids to single column ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:340px"],
  [style*="grid-template-columns:repeat(2,"],
  [style*="grid-template-columns:repeat(3,"],
  [style*="grid-template-columns: repeat(2,"],
  [style*="grid-template-columns: repeat(3,"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ── 600px: Large Mobile ── */
@media (max-width: 600px) {
  .nav { height: 72px; padding: 0 16px; }
  .nav.scrolled { height: 72px; padding: 0 16px; }
  .nav-logo-img { height: 54px; }
  .section { padding: 52px 16px !important; }
  .page-hero { padding: 90px 16px 48px !important; }
  .page-hero-title { font-size: 28px !important; line-height: 1.2 !important; }
  .section-title { font-size: 26px !important; line-height: 1.2 !important; }
  .section-lead { font-size: 16px; }
  .bar-label { min-width: 90px; font-size: 11px; }
  .hbar-label { min-width: 90px; font-size: 11px; }
}

/* ── 480px: Small Mobile ── */
@media (max-width: 480px) {
  .section { padding: 40px 16px !important; }
  .page-hero { padding: 88px 16px 40px !important; }
  .page-hero-title { font-size: 22px !important; line-height: 1.3 !important; }
  .section-title { font-size: 22px !important; line-height: 1.25 !important; }
  .page-hero-lead { font-size: 15px !important; }
  .section-lead { font-size: 15px; }
  .nav { height: 70px; padding: 0 14px; }
  .nav.scrolled { height: 70px; padding: 0 14px; }
  .nav-logo-img { height: 52px; }
  .btn-primary, .btn-outline-dark, .btn-teal { padding: 14px 24px; font-size: 15px; display: block; width: 100%; text-align: center; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .bar-row { flex-wrap: wrap; }
  .bar-label { min-width: 100%; text-align: left; margin-bottom: 4px; }
  .bar-track { width: 100%; }
  .hbar-label { min-width: 80px; font-size: 10px; }
}

@media (max-width: 560px) {
  .footer-phone-number { font-size: 22px; }
}

/* ══════════════════════════════════
   FIXED SOCIAL BAR — Bottom Left
══════════════════════════════════ */
.social-fixed {
  position: fixed;
  bottom: 32px;
  left: 18px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.social-fixed::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(193,141,54,0.55), transparent);
  margin-top: 2px;
}
.social-icon-fixed {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,37,51,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(193,141,54,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: all 0.22s;
  text-decoration: none;
}
.social-icon-fixed:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(4px) scale(1.08);
}
.social-icon-fixed svg { width: 14px; height: 14px; fill: currentColor; display: block; }

@media (max-width: 768px) {
  .social-fixed { display: none !important; }
}

/* ─── STATISTICS COMPONENTS ─────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(160deg, #0A2533 0%, #15394F 55%, #0A2533 100%);
  padding: 72px 40px;
}
.stats-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-block {
  background: rgba(255,255,255,0.05);
  border-radius: 16px; padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid #C18D36;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative; overflow: hidden;
}
.stat-block:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.stat-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(193,141,54,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 700;
  color: #C18D36; line-height: 1; margin-bottom: 12px;
  letter-spacing: -1px;
}
.stat-label { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 500; line-height: 1.5; margin-bottom: 8px; }
.stat-source { font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 0.5px; }
.stat-source a { color: rgba(193,141,54,0.72); text-decoration: underline; }

/* Bar Chart */
.bar-chart-wrap { background: #0A2533; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.bar-chart-title { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 8px; }
.bar-chart-sub { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 28px; }
.bar-chart-sub a { color: rgba(193,141,54,0.72); }
.bar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.bar-label { font-size: 13px; color: rgba(255,255,255,0.82); min-width: 210px; text-align: right; line-height: 1.35; font-weight: 500; }
.bar-track { flex: 1; background: rgba(255,255,255,0.09); border-radius: 8px; height: 44px; overflow: hidden; position: relative; }
.bar-fill {
  height: 100%; border-radius: 8px;
  background: linear-gradient(90deg, #8B6220, #C18D36, #D4A84F);
  width: 0; transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.bar-fill.gold { background: linear-gradient(90deg, #8B6220, #C18D36, #D4A84F); }
.bar-pct { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 14px; font-weight: 700; white-space: nowrap; }
.bar-pct-outside { font-size: 13px; font-weight: 700; color: #C18D36; min-width: 40px; }
.bar-cite { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 20px; }
.bar-cite a { color: rgba(193,141,54,0.7); }

/* Stat Callout (inline pull stat) */
.stat-callout {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, #0A2533, #15394F);
  border-radius: 16px; padding: 28px 32px; margin: 40px 0;
}
.stat-callout-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: #C18D36; line-height: 1; white-space: nowrap; }
.stat-callout-text { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.6; }
.stat-callout-text strong { color: #fff; }

/* Data Table */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: #0A2533; color: #C18D36; text-align: left; padding: 12px 16px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid #E2ECF3; color: #475569; vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #F8FAFC; }
.data-table td:first-child { color: #0A2533; font-weight: 600; }
.data-table td .pct-pill { display: inline-block; background: #C18D36; color: #fff; border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 700; }
.data-table td .pct-pill.blue { background: #15394F; }

@media print {
  .bar-fill { width: attr(data-pct '%') !important; transition: none !important; }
  .bar-fill[data-pct="82"] { width: 82% !important; }
  .bar-fill[data-pct="78"] { width: 78% !important; }
  .bar-fill[data-pct="71"] { width: 71% !important; }
  .bar-fill[data-pct="69"] { width: 69% !important; }
  .bar-fill[data-pct="74"] { width: 74% !important; }
  .bar-fill[data-pct="65"] { width: 65% !important; }
  .bar-fill[data-pct="54"] { width: 54% !important; }
  .bar-fill[data-pct="48"] { width: 48% !important; }
  .bar-fill[data-pct="41"] { width: 41% !important; }
  .bar-fill[data-pct="37"] { width: 37% !important; }
  .bar-fill[data-pct="62"] { width: 62% !important; }
  .bar-fill[data-pct="55"] { width: 55% !important; }
  .bar-fill[data-pct="43"] { width: 43% !important; }
  .bar-fill[data-pct="38"] { width: 38% !important; }
  .bar-fill[data-pct="31"] { width: 31% !important; }
}

/* ─── Responsive grid helpers (replaces inline styles) ─── */
.two-col        { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.two-col.top    { align-items:start; }
.two-col.gap40  { gap:40px; }
.two-col.gap28  { gap:28px; }
.book-hero-grid { display:grid; grid-template-columns:340px 1fr; gap:80px; align-items:center; }

@media(max-width: 900px) {
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bar-label { min-width: 140px; }
  .two-col { gap: 40px; }
}
@media(max-width: 768px) {
  .two-col, .two-col.top, .two-col.gap40, .two-col.gap28, .book-hero-grid {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }
}
@media(max-width: 600px) {
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-strip { padding: 44px 16px; }
  .stat-block { padding: 20px 12px; }
  .stat-num { font-size: clamp(32px,10vw,48px); }
  .bar-row { flex-direction: column; align-items: flex-start; }
  .bar-label { text-align: left; min-width: unset; font-size: 12px; }
  .bar-track { width: 100%; }
  .stat-callout { flex-direction: column; text-align: center; padding: 20px 16px; gap: 12px; }
  .stat-callout-num { font-size: 44px; }
  .bar-chart-wrap { padding: 24px 16px; }
  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 8px 10px; }
}
@media(max-width: 480px) {
  .section { padding: 52px 20px !important; }
  .stats-strip { padding: 40px 12px; }
  .stats-strip-inner { grid-template-columns: 1fr !important; gap: 14px; }
  .stat-block { padding: 24px 20px; }
  .stat-num { font-size: clamp(40px,11vw,60px); }
  .stat-label { font-size: 14px; }
}

/* ── Vivid Animated Stats (redesigned bar charts) ── */
.stats-vivid-section { background: #0A2533; }
.stats-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.stats-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 36px 32px; }
.stats-panel-eye { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: #C18D36; margin-bottom: 10px; }
.stats-panel-h { font-family: 'Playfair Display',serif; font-size: 20px; color: #fff; margin-bottom: 8px; }
.stats-panel-sub { font-size: 11px; color: rgba(255,255,255,0.52); margin-bottom: 28px; line-height: 1.6; }

/* Horizontal colored bars */
.hbar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hbar-label { font-size: 13px; color: rgba(255,255,255,0.85); min-width: 160px; line-height: 1.35; flex-shrink: 0; font-weight: 500; }
.hbar-track { flex: 1; background: rgba(255,255,255,0.09); border-radius: 8px; height: 44px; overflow: hidden; position: relative; }
.hbar-fill { height: 100%; border-radius: 8px; width: 0; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); position: relative; }
.hbar-pct { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
/* Unified gold for all bars — single brand color */
.hbar-c1, .hbar-c2, .hbar-c3, .hbar-c4, .hbar-c5 {
  background: linear-gradient(90deg, #8B6220, #C18D36, #D4A84F);
}

/* Vertical colored bars */
.vbar-chart { height: 180px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 2px solid rgba(255,255,255,0.1); padding: 0 2px; margin-bottom: 0; }
.vbar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.vbar-num { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); flex-shrink: 0; }
.vbar-bar { width: 100%; height: 0; border-radius: 8px 8px 0 0; transition: height 1.4s cubic-bezier(0.4,0,0.2,1); }
.vbar-labels { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 10px; padding: 0 2px; }
.vbar-label-text { font-size: 10px; color: rgba(255,255,255,0.55); text-align: center; line-height: 1.35; }
/* Unified gold for all vertical bars */
.vbc1, .vbc2, .vbc3, .vbc4, .vbc5 {
  background: linear-gradient(180deg, #D4A84F, #C18D36, #8B6220);
}

/* Dark vivid chart (used inside light sections) */
.bar-chart-vivid { background: #0A2533; border-radius: 20px; padding: 36px 32px; }
.bar-chart-vivid .hbar-track { background: rgba(255,255,255,0.07); }

/* Gottman 69% callout */
.gottman-callout { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 48px; background: rgba(193,141,54,0.1); border: 1px solid rgba(193,141,54,0.28); border-radius: 20px; padding: 32px 40px; }
.gottman-num { font-family: 'Playfair Display',serif; font-size: 80px; font-weight: 700; color: #C18D36; line-height: 1; }
.gottman-text { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 440px; line-height: 1.7; }
.gottman-text strong { color: #fff; }

/* QR footer strip */
.footer-qr-strip { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.footer-qr-img { width: 32px; height: 32px; border-radius: 4px; background: #fff; padding: 2px; flex-shrink: 0; object-fit: contain; }
.footer-qr-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 3px; }
.footer-qr-sub { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.4; }

@media(max-width:900px) {
  .stats-dual { grid-template-columns: 1fr; }
  .hbar-label { min-width: 120px; font-size: 11px; }
  .gottman-num { font-size: 60px; }
  .gottman-callout { padding: 24px 28px; }
}
@media(max-width:600px) {
  .hbar-row { gap: 8px; }
  .hbar-label { min-width: 100px; font-size: 10px; }
  .gottman-callout { padding: 20px; gap: 16px; }
  .gottman-num { font-size: 48px; }
  .footer-qr-strip { flex-direction: column; align-items: flex-start; }
}
