:root {
  --emb-deep-blue: #004B7A;
  --emb-teal: #0ea5a0;
  --emb-accent: #2196F3;
  --emb-dark-bg: #0a1929;
  --emb-page-bg: #F8FAFC;
  --emb-text: #1a2e44;
  --emb-text-muted: #4a5568;
  --emb-text-light: #9ca3af;
  --emb-border: rgba(198,215,226,.4);
  --emb-border-strong: rgba(198,215,226,.7);
  --emb-white: #ffffff;
  --emb-star: #f59e0b;
  --emb-success: #10b981;
  --emb-error: #ef4444;
  --emb-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --emb-fw-regular: 400;
  --emb-fw-medium: 500;
  --emb-fw-semibold: 600;
  --emb-fw-bold: 700;
  --emb-fw-extrabold: 800;
  --emb-radius-sm: 8px;
  --emb-radius-md: 12px;
  --emb-radius-lg: 16px;
  --emb-radius-xl: 24px;
  --emb-radius-pill: 100px;
  --emb-shadow-sm: 0 2px 8px rgba(0,75,122,.06);
  --emb-shadow-md: 0 4px 16px rgba(0,75,122,.08);
  --emb-shadow-lg: 0 8px 32px rgba(0,75,122,.12);
  --emb-shadow-xl: 0 12px 40px rgba(0,75,122,.16);
  --emb-container: 1200px;
  --emb-container-wide: 1280px;
  --emb-spacing-xs: 4px;
  --emb-spacing-sm: 8px;
  --emb-spacing-md: 16px;
  --emb-spacing-lg: 24px;
  --emb-spacing-xl: 32px;
  --emb-spacing-2xl: 48px;
  --emb-spacing-3xl: 64px;
  --emb-spacing-4xl: 80px;
  --emb-transition-fast: 0.15s ease;
  --emb-transition: 0.25s ease;
  --emb-transition-slow: 0.4s ease;
}

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

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

body {
  font-family: var(--emb-font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--emb-text);
  background-color: var(--emb-page-bg);
  -webkit-font-smoothing: antialiased;
}

.skip-to-main {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: #004B7A;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-to-main:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid #004B7A;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.field-error {
  color: #b91c1c;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

*:focus-visible {
  outline: 2px solid #004B7A;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #004B7A;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p { color: #4a5568; }

a {
  color: #004B7A;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #003558; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #004B7A;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  white-space: nowrap;
}
.btn-primary:hover {
  background-color: #003558;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -2px rgba(0,0,0,.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #004B7A !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  border: 2px solid #C6D7E2;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background-color: rgba(0,75,122,.05);
  border-color: #004B7A;
  transform: translateY(-1px);
}

/* ---- NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198,215,226,.4);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,75,122,.1);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.site-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}
.nav-menu a {
  font-weight: 500;
  font-size: 14px;
  color: #475569;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0ea5a0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu a:hover {
  color: #004B7A;
}
.nav-menu a:hover::after {
  transform: scaleX(1);
}
.nav-menu a.active {
  color: #004B7A;
  font-weight: 600;
}
.nav-menu a.active::after {
  transform: scaleX(1);
  background: #0ea5a0;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2e44;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE DRAWER ---- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 1050;
  padding: 80px 24px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links li { border-bottom: 1px solid rgba(198,215,226,.4); }
.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mobile-nav-links a:hover { color: #004B7A; }
.mobile-nav-links a.active { color: #004B7A; font-weight: 700; }

/* ---- HERO CENTERED ---- */
.hero-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #d4e8f7 0%, #EAF2FB 40%, #f0f5fb 70%, #ffffff 100%);
}
.hero-centered-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0,75,122,.08);
  color: #004B7A;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-badge::before { content: '✨'; font-size: 14px; }
.hero-centered-inner h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #004B7A;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-accent { color: #2196F3; }
.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- STATS INLINE ---- */
.stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(198,215,226,.5);
}
.stats-inline-item { text-align: center; }
.stats-inline-number {
  font-size: 36px;
  font-weight: 800;
  color: #004B7A;
  line-height: 1;
  letter-spacing: -1px;
}
.stats-inline-label {
  font-size: 12px;
  color: #4b5563;
  margin-top: 6px;
  font-weight: 500;
}

/* ---- SECTION SHARED ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #004B7A;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-header p { font-size: 17px; color: #4b5563; line-height: 1.65; }

/* ---- SERVICES ---- */
.services-section {
  padding: 100px 0;
  background-color: white;
}
.services-section.pathways-section {
  background-color: #EEF2F7;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 44px 36px;
  border: 1px solid rgba(198,215,226,.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,75,122,.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004B7A, #2196F3);
  border-radius: 20px 20px 0 0;
}
.service-icon {
  width: 56px; height: 56px;
  background-color: rgba(0,75,122,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 24px; font-weight: 800; color: #004B7A; margin-bottom: 12px; }
.service-card > p { font-size: 15px; color: #4b5563; margin-bottom: 24px; line-height: 1.65; }
.service-features { list-style: none; margin-bottom: 32px; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  padding: 8px 0;
  border-bottom: 1px solid rgba(198,215,226,.3);
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e0f2f1'/%3E%3Cpath d='M6 10.5l2.5 2.5 5.5-5.5' stroke='%2300897B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---- WHY US ---- */
.why-section {
  padding: 56px 0 100px;
  background-color: #F8FAFC;
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.why-icon {
  width: 80px; height: 80px;
  background: rgba(14,165,160,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.why-card h3 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: #4b5563; line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 100px 0; background-color: #F8FAFC; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 32px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(0,75,122,.1);
  line-height: 1;
}
.testimonial-stars { margin-bottom: 18px; color: #f59e0b; font-size: 16px; }
.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #004B7A, #2196F3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: #004B7A; font-size: 15px; }
.author-role { font-size: 12px; color: #9ca3af; margin-top: 2px; }

/* ---- PODCAST ---- */
.podcast-section { padding: 100px 0; background-color: white; }
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.podcast-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.podcast-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,75,122,.1); }
.podcast-ep {
  display: inline-block;
  background: rgba(0,75,122,.1);
  color: #004B7A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.podcast-card h4 { font-size: 16px; font-weight: 700; color: #004B7A; margin-bottom: 8px; line-height: 1.35; }
.podcast-card p { font-size: 13px; color: #4b5563; line-height: 1.6; margin: 0; }
.podcast-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #004B7A;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.podcast-play::before {
  content: '▶';
  width: 30px; height: 30px;
  background: #004B7A;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  padding-left: 2px;
  flex-shrink: 0;
}

/* ---- CTA ---- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #004B7A 0%, #003558 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.cta-content h2 { font-size: 38px; font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -1px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.65; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: white; color: #004B7A !important; }
.cta-section .btn-primary:hover { background: #e8f1f8; color: #004B7A !important; }
.cta-section .btn-secondary { border-color: rgba(255,255,255,.4); color: white !important; }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: white !important; }

/* ---- FOOTER ---- */
.site-footer { background-color: #EAF2FB; padding: 60px 0 0; }
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 44px;
  border-bottom: 1px solid rgba(198,215,226,.6);
}
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: #4b5563; line-height: 1.7; max-width: 260px; margin: 0; }
.footer-heading { font-size: 13px; font-weight: 700; color: #1a2e44; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: #004B7A; transition: color 0.2s; }
.footer-links a:hover { color: #0ea5a0; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.footer-contact-icon {
  font-size: 14px;
  color: #4b5563;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-list a {
  color: #374151;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #004B7A; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 13px;
  color: #4b5563;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: #004B7A; }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #e8f1f8 100%);
  border-bottom: 1px solid rgba(198,215,226,.4);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.page-hero-inner h1 {
  font-size: 48px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.page-hero-inner p { font-size: 18px; color: #4a5568; line-height: 1.65; }

/* ---- BILLING HERO STATS ROW ---- */
.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(198,215,226,.4);
}
.hero-stat-item { text-align: center; }
.hero-stat-item .stat-number { font-size: 40px; font-weight: 800; color: #1e293b; }
.hero-stat-item .stat-label { font-size: 12px; color: #4b5563; margin-top: 4px; }

/* ---- COACHING HERO EXTENDED ---- */
.coaching-hero-extended {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #F8FAFC 0%, #e8f1f8 100%);
  border-bottom: 1px solid rgba(198,215,226,.4);
}

/* ---- HERO BENEFIT CARDS (inside hero) ---- */
.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.hero-benefit-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 2px 12px rgba(0,75,122,.05);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,75,122,.1);
}
.hero-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14,165,160,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.hero-benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 10px;
}
.hero-benefit-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ---- BENEFITS (Billing) ---- */
.benefits-section { padding: 100px 0; background: white; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.benefit-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(198,215,226,.4);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.benefit-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 22px; font-weight: 800; color: #004B7A; margin-bottom: 12px; }
.benefit-card p { font-size: 15px; color: #4b5563; line-height: 1.7; }

/* ---- INCLUDED GRID (Billing) ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.included-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,75,122,.08);
}
.included-icon { font-size: 28px; margin-bottom: 14px; }
.included-card h3 { font-size: 18px; font-weight: 700; color: #004B7A; margin-bottom: 8px; }
.included-card p { font-size: 14px; color: #4b5563; line-height: 1.65; margin: 0; }

/* ---- EHR SECTION ---- */
.ehr-section { padding: 80px 0; background: #F8FAFC; text-align: center; }
.ehr-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ehr-badge {
  background: white;
  border: 2px solid rgba(198,215,226,.6);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #004B7A;
  letter-spacing: 0.5px;
}

/* ---- EHR CARD WRAP (Billing page - light) ---- */
.ehr-card-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
  padding: 36px 48px 28px;
  text-align: center;
}
.ehr-item-row {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-bottom: 20px;
}
.ehr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ehr-item span {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.ehr-icon-square {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: white;
  letter-spacing: 0.5px;
}
.ehr-cs { background: #7895b2; }
.ehr-tb { background: #0ea5a0; }
.ehr-s  { background: #93c5d9; }
.ehr-subtext {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* ---- STEPS GRID LIGHT (Billing page How It Works) ---- */
.steps-grid-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.step-card-light {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 2px 12px rgba(0,75,122,.05);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,75,122,.1);
}
.step-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(198,215,226,.8);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  line-height: 1;
}
.step-icon-teal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  width: 56px;
  height: 56px;
}
.step-card-light h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 10px;
}
.step-card-light p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ---- HOW IT WORKS ---- */
.how-it-works-section {
  padding: 100px 0;
  background: #004B7A;
  color: white;
  position: relative;
  overflow: hidden;
}
.how-it-works-section .section-tag { color: rgba(255,255,255,.7); }
.how-it-works-section .section-header h2 { color: white; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-card {
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}
.step-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.step-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; }

/* ---- COST / URGENCY SECTION (Coaching) ---- */
.cost-urgency-section {
  padding: 100px 0;
  background: #0a1929;
  text-align: center;
}
.cost-urgency-header {
  max-width: 780px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.cost-top-icon {
  display: block;
  margin: 0 auto 28px;
  width: 56px;
  height: 56px;
  color: #e53e3e;
}
.cost-urgency-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cost-urgency-header h2 span {
  color: #e53e3e;
}
.cost-urgency-header p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.cost-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 32px;
  padding: 0 24px;
}
.cost-category-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
}
.cost-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cost-category-header svg {
  width: 32px;
  height: 32px;
  color: #e53e3e;
  flex-shrink: 0;
}
.cost-category-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
}
.cost-item-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cost-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cost-item > svg {
  width: 16px;
  height: 16px;
  color: #e53e3e;
  flex-shrink: 0;
  margin-top: 3px;
}
.cost-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.cost-item p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}
.cost-cta-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  text-align: center;
}
.cta-pill-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #e53e3e;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.cost-cta-card h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cost-cta-card p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 28px;
}
.btn-dark-cta {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: #0a1929 !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn-dark-cta:hover {
  background: #e8f1f8;
}

/* ---- PRICING HIGHLIGHT (single pricing) ---- */
.pricing-highlight {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-highlight-card {
  background: #F8FAFC;
  border: 2px solid #004B7A;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
}
.pricing-highlight-card .pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 12px;
}
.pricing-highlight-card .pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: #4b5563;
}
.pricing-highlight-card p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 80px 0;
  background: #EAF2FB;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid #E2EAF0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,75,122,.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.faq-item:hover {
  border-color: #c8d8e4;
  box-shadow: 0 4px 16px rgba(0,75,122,.06);
}
.faq-item.open {
  border-color: #b8ccd8;
  box-shadow: 0 4px 20px rgba(0,75,122,.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1a2e44;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq-chevron {
  flex-shrink: 0;
  color: #0ea5a0;
  transition: transform 0.25s ease;
}
.faq-chevron-open {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-answer-open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ---- COACHING HERO ---- */
.coaching-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #e8f1f8 100%);
  border-bottom: 1px solid rgba(198,215,226,.4);
}
.coaching-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.coaching-hero-inner h1 {
  font-size: 48px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.coaching-hero-inner p { font-size: 18px; color: #4a5568; line-height: 1.65; }
.coaching-intro-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.intro-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #004B7A;
}
.intro-point-icon { font-size: 20px; }

/* ---- FEATURED TESTIMONIAL ---- */
.featured-testimonial-section {
  padding: 80px 0;
  background: white;
}
.featured-testimonial {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.featured-testimonial-text {
  font-size: 20px;
  font-style: italic;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ---- PATHWAYS GRID ---- */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pathway-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 30px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,75,122,.07);
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,75,122,.12);
}
.pathway-card h3 { font-size: 20px; font-weight: 800; color: #004B7A; margin-bottom: 16px; }

/* ---- RESULTS SECTION ---- */
.results-card-wrap {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.results-card {
  background: white;
  border: 1px solid #e2eaf0;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,75,122,.07);
  padding: 40px 48px;
}
.results-card-heading {
  font-size: 22px;
  font-weight: 800;
  color: #1a2e44;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}
.results-card-grid {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.result-stat { text-align: center; }
.result-number {
  font-size: 42px;
  font-weight: 800;
  color: #004B7A;
  line-height: 1;
  letter-spacing: -1px;
}
.result-label {
  font-size: 13px;
  color: #1a2e44;
  margin-top: 8px;
  font-weight: 600;
}

/* ---- CONTACT FORM ---- */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.contact-info h2 { font-size: 34px; font-weight: 800; color: #004B7A; margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-info p { font-size: 16px; color: #4b5563; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(198,215,226,.4);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(0,75,122,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 12px; font-weight: 700; color: #004B7A; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail-text span { font-size: 14px; color: #374151; }
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 8px 32px rgba(0,75,122,.07);
}
.contact-form h3 { font-size: 22px; font-weight: 700; color: #004B7A; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(198,215,226,.7);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a2e44;
  background: #F8FAFC;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #004B7A;
  outline: 2px solid #004B7A;
  outline-offset: 2px;
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- PRICING TABLE ---- */
.pricing-section { padding: 80px 0; background: #F8FAFC; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.pricing-card.featured {
  border-color: #004B7A;
  box-shadow: 0 8px 32px rgba(0,75,122,.15);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: #004B7A;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 8px; }
.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #004B7A;
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price span { font-size: 16px; font-weight: 500; color: #4b5563; }
.pricing-desc { font-size: 13px; color: #9ca3af; margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 13px; color: #374151; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: #004B7A; font-weight: 700; flex-shrink: 0; }

/* ---- CONTENT BLOCKS ---- */
.content-section { padding: 80px 0; }
.content-section.alt { background: white; }
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block-text h2 { font-size: 36px; font-weight: 800; color: #004B7A; margin-bottom: 16px; letter-spacing: -0.5px; }
.content-block-text p { font-size: 16px; color: #4b5563; line-height: 1.7; margin-bottom: 16px; }
.content-block-visual {
  background: linear-gradient(135deg, #e8f1f8, #daeaf5);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-block-stat {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0,75,122,.07);
}
.content-block-stat-icon {
  width: 48px; height: 48px;
  background: rgba(0,75,122,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.content-block-stat-num { font-size: 28px; font-weight: 800; color: #004B7A; line-height: 1; }
.content-block-stat-label { font-size: 12px; color: #4b5563; margin-top: 2px; font-weight: 500; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: #004B7A; }
.breadcrumb span { color: #c6d7e2; }

/* ---- PAIN POINTS GRID ---- */
.pain-points-section { padding: 100px 0; background: white; }
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pain-point-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.pain-point-card h3 { font-size: 20px; font-weight: 800; color: #004B7A; margin-bottom: 10px; }
.pain-point-card p { font-size: 15px; color: #4b5563; line-height: 1.7; margin: 0; }

/* ---- STEP LIST (How It Works bullets) ---- */
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.step-list li {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.step-list li::before {
  content: '✓';
  color: rgba(255,255,255,.9);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- PRICING NOTE ---- */
.pricing-note {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 24px;
  text-align: center;
}
.pricing-note p { font-size: 15px; color: #4b5563; line-height: 1.65; margin-bottom: 8px; }
.pricing-note p strong { color: #004B7A; }
.pricing-best-for { font-size: 13px; color: #4b5563; margin-bottom: 20px !important; line-height: 1.5; text-align: left; }

/* ---- RESULT DESC ---- */
.result-desc { font-size: 12px; color: #475569; margin-top: 4px; max-width: 160px; }


/* ---- ENGAGEMENT CARDS (Coaching) ---- */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.engagement-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.engagement-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.engagement-card.featured { border-color: #004B7A; box-shadow: 0 8px 32px rgba(0,75,122,.15); }
.engagement-card.premium { border-color: #1a2e44; }
.engagement-card h3 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 8px; }
.engagement-card .pricing-price { margin: 12px 0 4px; }
.engagement-card .pricing-desc { margin-bottom: 20px; }
.engagement-section { margin-bottom: 20px; }
.engagement-section h4 {
  font-size: 11px;
  font-weight: 700;
  color: #004B7A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.engagement-section p { font-size: 14px; color: #4b5563; line-height: 1.6; margin: 0; }
.engagement-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.engagement-section ul li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.engagement-section ul li::before { content: '✓'; color: #004B7A; font-weight: 700; flex-shrink: 0; }
.engagement-card .btn-primary { margin-top: auto; }

/* ---- AARON SECTION (About) ---- */
.aaron-section { padding: 100px 0; background: #F8FAFC; }

/* ---- MISSION SECTION ---- */
.mission-section { padding: 100px 0; background: #F8FAFC; }
.mission-card {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 48px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,75,122,.07);
  text-align: center;
}
.mission-card-heading {
  font-size: 32px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 20px;
}
.mission-card-statement {
  font-size: 18px;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 32px;
}
.mission-card-quote {
  font-size: 17px;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 12px;
  border-left: 4px solid #004B7A;
  padding-left: 20px;
  text-align: left;
}
.mission-card-author {
  font-size: 14px;
  font-weight: 600;
  color: #004B7A;
  text-align: left;
  padding-left: 24px;
  margin: 0;
}
.values-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 12px;
}
.values-subheading {
  text-align: center;
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 40px;
  margin-top: 0;
}
.values-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.value-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,75,122,.08); }
.value-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.value-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #004B7A;
  border-radius: 10px;
}
.value-card h4 { font-size: 18px; font-weight: 700; color: #004B7A; margin: 0; }
.value-card p { font-size: 14px; color: #4b5563; line-height: 1.65; margin: 0; }

/* ---- WHO WE SERVE ---- */
.who-we-serve-section { padding: 100px 0; background: white; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.serve-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.serve-card h3 { font-size: 20px; font-weight: 800; color: #004B7A; margin-bottom: 10px; }
.serve-card > p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.florida-callout {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: rgba(0,75,122,.05);
  border-radius: 16px;
  border: 1px solid rgba(0,75,122,.1);
}
.florida-callout h4 { font-size: 18px; font-weight: 700; color: #004B7A; margin-bottom: 10px; }
.florida-callout p { font-size: 15px; color: #4b5563; line-height: 1.7; margin: 0; }

/* ---- TRACK RECORD GRID ---- */
.track-record-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.track-record-item {
  text-align: center;
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.track-record-item .result-number { font-size: 36px; margin-bottom: 8px; }
.track-record-item .result-desc { font-size: 13px; color: rgba(255,255,255,.65); max-width: none; }

/* ---- DUAL CTA OPTIONS ---- */
.dual-cta-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.dual-cta-card {
  text-align: center;
}
.dual-cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

/* ---- PODCAST SECTION EXTENDED ---- */
.podcast-intro {
  max-width: 800px;
  margin: -20px auto 40px;
  padding: 0 24px;
  text-align: center;
}
.podcast-intro p { font-size: 16px; color: #4b5563; line-height: 1.7; }
.podcast-featured-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #004B7A;
  margin-bottom: 32px;
}
.episode-topics { font-size: 12px; color: #9ca3af; margin-top: 12px; line-height: 1.5; }
.podcast-subscribe {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 32px;
  background: rgba(0,75,122,.05);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,75,122,.1);
}
.podcast-subscribe h4 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 8px; }
.podcast-subscribe p { font-size: 14px; color: #4b5563; margin-bottom: 16px; }
.platform-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.platform-badge {
  background: white;
  border: 1px solid rgba(198,215,226,.6);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #004B7A;
}

/* ---- TOOLS SECTION ---- */
.tools-section { padding: 100px 0; background: #F8FAFC; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.tool-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.tool-card h3 { font-size: 20px; font-weight: 800; color: #004B7A; margin-bottom: 12px; }
.tool-card > p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 12px; }
.tool-best-for { font-size: 13px; color: #9ca3af; line-height: 1.5; margin-bottom: 20px !important; }
.tool-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ---- GUIDES SECTION ---- */
.guides-section { padding: 100px 0; background: white; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.guide-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.guide-card h3 { font-size: 18px; font-weight: 800; color: #004B7A; margin-bottom: 10px; }
.guide-card p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 12px; }
.guide-format { font-size: 12px; color: #9ca3af; font-style: italic; }
.guide-card .btn-secondary { margin-top: auto; align-self: flex-start; }

/* ---- CASE STUDIES ---- */
.case-studies-section { padding: 100px 0; background: #F8FAFC; }
.case-studies-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.case-study-card {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
}
.case-study-card h3 { font-size: 22px; font-weight: 800; color: #004B7A; margin-bottom: 20px; }
.case-study-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.case-stat {
  background: rgba(0,75,122,.06);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-stat strong { font-size: 24px; font-weight: 800; color: #004B7A; }
.case-stat span { font-size: 12px; color: #4b5563; font-weight: 500; }
.case-study-card p { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 12px; }
.case-study-card p strong { color: #004B7A; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  padding: 80px 24px;
  background: #F0F4F8;
  text-align: center;
}
.newsletter-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 4px 24px rgba(0,75,122,.06);
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsletter-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(14,165,160,.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.newsletter-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a2e44;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.newsletter-card-sub {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 15px 22px;
  border: 1px solid rgba(198,215,226,.8);
  border-radius: 100px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a2e44;
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-input:focus {
  border-color: #004B7A;
  outline: 2px solid #004B7A;
  outline-offset: 2px;
}
.newsletter-btn {
  padding: 15px 28px;
  background: #1a2e44;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.newsletter-btn:hover { background: #004B7A; transform: translateY(-1px); }
.newsletter-disclaimer {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 14px;
}

/* ---- CONTACT METHODS ---- */
.contact-methods-section { padding: 80px 0; background: white; }
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-method-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.contact-method-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.contact-method-card h3 { font-size: 20px; font-weight: 800; color: #004B7A; margin-bottom: 10px; }
.contact-method-card > p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.contact-method-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ---- SERVICE SELECTION ---- */
.service-selection-section { padding: 80px 0; background: #F8FAFC; }
.service-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-option-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-option-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.service-option-card h3 { font-size: 22px; font-weight: 800; color: #004B7A; margin-bottom: 10px; }
.service-option-card > p { font-size: 15px; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.service-option-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ---- FORM SECTION (Contact) ---- */
.form-section { padding: 80px 0; }
.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-container .contact-form {
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 8px 32px rgba(0,75,122,.07);
}

/* ---- DIRECT CONTACT ---- */
.direct-contact-section { padding: 80px 0; background: white; }

/* ---- SERVICE CARD V2 (Home page — matches Figma screenshot) ---- */
.service-card-v2 {
  background: white;
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid rgba(198,215,226,.35);
  box-shadow: 0 4px 24px rgba(0,75,122,.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,75,122,.12);
}
.service-icon-v2 {
  width: 52px;
  height: 52px;
  background: rgba(0,75,122,.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #004B7A;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card-v2 h3 {
  font-size: 22px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 12px;
}
.service-card-v2 > p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-features-v2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.service-features-v2 li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.service-features-v2 li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: #0ea5a0;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.service-btn-full {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ---- BILLING HERO V2 ---- */
/* ---- BILLING TOP SECTION (hero + benefits + testimonials merged) ---- */
.billing-top-section {
  padding: 140px 0 100px;
  background: radial-gradient(ellipse at 50% 0%, #d4e8f7 0%, #EAF2FB 40%, #f0f5fb 70%, #f8fafc 100%);
}
.billing-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.billing-hero-inner .hero-pill { display: inline-flex; margin-bottom: 28px; }
.billing-hero-inner .billing-hero-subtitle { max-width: 100%; }
.billing-hero-inner .hero-cta-row { justify-content: center; }
.billing-hero-inner .hero-stats-bar { justify-content: center; }

.billing-hero-v2 {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, #d4e8f7 0%, #EAF2FB 40%, #f0f5fb 70%, #ffffff 100%);
  border-bottom: 1px solid rgba(198,215,226,.4);
}
.billing-hero-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.billing-hero-left { flex: 1; }

/* ---- BILLING BENEFIT CARDS (inside billing-top-section) ---- */
.billing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 72px auto 0;
  padding: 0 24px;
}
.billing-benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 28px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.billing-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.billing-benefit-icon {
  width: 62px;
  height: 62px;
  background: rgba(14,165,160,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.billing-benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a2e44;
  margin-bottom: 12px;
}
.billing-benefit-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* ---- BILLING TESTIMONIAL CARDS (inside billing-top-section) ---- */
.billing-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.billing-testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(198,215,226,.35);
  box-shadow: 0 4px 20px rgba(0,75,122,.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.billing-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
}
.billing-quote-icon {
  width: 44px;
  height: 44px;
  background: #0ea5a0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.billing-testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,75,122,.08);
  color: #004B7A;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-pill-icon {
  color: #e74c3c;
  font-size: 14px;
}
.billing-hero-left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #004B7A;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-teal {
  color: #1a8fd1;
}
.billing-hero-subtitle {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats-bar {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(198,215,226,.5);
}
.hero-stat-v2 { text-align: center; }
.hero-stat-v2 .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #004B7A;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-stat-v2 .stat-label {
  font-size: 12px;
  color: #4b5563;
  margin-top: 6px;
  font-weight: 500;
}

/* ---- CTA GLASS CARD ---- */
.cta-glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,75,122,0.2);
  box-shadow: 0 12px 40px rgba(0,75,122,.12), 0 2px 8px rgba(0,0,0,.06);
  width: 300px;
  position: fixed;
  top: 100px;
  right: max(24px, calc((100vw - 1200px) / 2));
  z-index: 50;
}
.cta-glass-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
}
.floating-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.floating-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: #0075BE;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- BENEFIT ICON CIRCLE ---- */
.benefit-icon-circle {
  width: 56px;
  height: 56px;
  background: rgba(0,75,122,.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

/* ---- PRICING SINGLE CARD ---- */
.pricing-single-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-single-card {
  background: white;
  border: 2px solid #004B7A;
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,75,122,.1);
}
.pricing-single-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #004B7A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-single-amount {
  font-size: 56px;
  font-weight: 800;
  color: #004B7A;
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-single-unit {
  font-size: 18px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 16px;
}
.pricing-single-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ---- DRAIN TWO-COLUMN ---- */
.drain-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.drain-col-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
.drain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drain-item {
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
}
.drain-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.drain-item p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}

/* ---- SCARCITY CTA ---- */
.scarcity-cta {
  margin-top: 56px;
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
}
.scarcity-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.scarcity-cta h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.scarcity-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FAQ FOOTER ---- */
.faq-footer {
  text-align: center;
  margin-top: 48px;
  padding: 0 24px;
}
.faq-footer p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 16px;
}
.faq-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #004B7A !important;
  text-decoration: none !important;
  border: 2px solid #004B7A;
  border-radius: 100px;
  padding: 12px 32px;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-link:hover {
  background: #004B7A;
  color: #fff !important;
}

/* ---- FINAL CTA CHECKLIST ---- */
.final-cta-checklist {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.final-cta-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.check-icon-white {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.2);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- AARON TWO-COLUMN (About) ---- */
.aaron-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.aaron-tag {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  color: #0ea5a0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(14,165,160,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.aaron-heading {
  font-size: 38px;
  font-weight: 800;
  color: #004B7A;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.aaron-bio-col p { font-size: 16px; color: #4b5563; line-height: 1.7; margin-bottom: 16px; }
.aaron-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.aaron-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aaron-unified-card {
  background: white;
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.aaron-avatar-wrapper {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 4px solid #d1d5db;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #004B7A, #2196F3);
}
.aaron-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  transform: scale(1.3);
  transform-origin: top center;
  border-radius: 50%;
  display: none;
}
.aaron-avatar-img[src] {
  display: block;
}
.aaron-avatar-img[src] ~ .aaron-avatar-fallback {
  display: none !important;
}
.aaron-avatar-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-weight: 800;
  font-size: 36px;
}
.aaron-card-name {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  text-align: center;
}
.aaron-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #0ea5a0;
  margin-bottom: 24px;
  text-align: center;
}
.aaron-card-credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0;
}
.aaron-card-credentials li {
  font-size: 15px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aaron-card-credentials li svg { flex-shrink: 0; }

/* ---- MARSHALLS (two-founder story section) ---- */
.marshalls-section {
  padding: 100px 0 56px;
  background: #F8FAFC;
}
.marshalls-two-col {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}
.marshalls-bio-col { display: flex; flex-direction: column; }
.marshalls-greeting {
  font-size: 20px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 18px;
}
.marshalls-body {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}
.marshalls-body strong { color: #004B7A; }
.marshalls-blockquote {
  border-left: 3px solid #0ea5a0;
  padding-left: 22px;
  margin: 24px 0;
  color: #1a2e44;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}
.marshalls-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* mission-quote styles consolidated into .mission-card above */

/* ---- TOPIC CHIPS (Resources) ---- */
.topics-section { padding: 80px 0; background: white; }
.topic-chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1px solid rgba(198,215,226,.5);
  border-radius: 100px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.topic-chip:hover {
  background: rgba(0,75,122,.06);
  border-color: #004B7A;
  transform: translateY(-2px);
}
.topic-chip-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a2e44;
}
.topic-chip-count {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: #004B7A;
  border-radius: 100px;
  padding: 2px 10px;
  min-width: 28px;
  text-align: center;
}
.tools-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- ARTICLE PAGE ---- */
.article-hero {
  background: linear-gradient(160deg, #F0F7FF 0%, #EAF4FB 50%, #f0fafa 100%);
  padding: 40px 64px 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle at 80% 20%, rgba(14,165,160,.08) 0%, transparent 65%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.article-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.article-hero-tag {
  background: rgba(22,101,52,.1);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.article-hero-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(198,215,226,.6);
}
.article-hero-date {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}
.article-hero-title {
  font-size: 42px;
  font-weight: 900;
  color: #1a2e44;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
}
.article-hero-title-accent { color: #004B7A; }
.article-hero-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.article-hero-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004B7A, #2196F3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
}
.article-hero-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e44;
  text-align: left;
}
.article-hero-author-role {
  font-size: 12px;
  color: #94a3b8;
  text-align: left;
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-intro {
  font-size: 19px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 500;
}
.article-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-step { margin-bottom: 48px; }
.article-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.article-step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,75,122,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: #004B7A;
  flex-shrink: 0;
}
.article-step-title {
  font-size: 28px;
  font-weight: 800;
  color: #004B7A;
  margin: 0;
  letter-spacing: -0.5px;
}
.article-callout {
  border-left: 4px solid #0ea5a0;
  background: rgba(14,165,160,.05);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.article-callout-label {
  font-size: 12px;
  font-weight: 800;
  color: #0ea5a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.article-callout p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.article-flag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.article-flag-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 2px 8px rgba(0,75,122,.04);
}
.article-flag-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.article-flag-title--red { color: #dc2626; }
.article-flag-title--amber { color: #d97706; }
.article-flag-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}
.article-checklist-card {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(198,215,226,.5);
  box-shadow: 0 2px 8px rgba(0,75,122,.04);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.article-checklist-num {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #004B7A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-checklist-q {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 8px;
}
.article-checklist-a {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}
.article-divider {
  height: 1px;
  background: rgba(198,215,226,.5);
  margin: 48px 0;
}
.article-cta-card {
  background: linear-gradient(135deg, #004B7A, #0a6e9e);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  color: white;
}
.article-cta-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 0 10px;
}
.article-cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 460px;
}
.article-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #004B7A !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s;
}
.article-cta-primary:hover { background: #e8f1f8; }
.article-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.article-cta-secondary:hover { background: rgba(255,255,255,.1); }

/* ---- RESOURCES PAGE — EDITORIAL HERO ---- */
.res-hero {
  background: linear-gradient(160deg, #F0F7FF 0%, #EAF4FB 50%, #f0fafa 100%);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.res-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle at 80% 20%, rgba(14,165,160,.08) 0%, transparent 65%);
  pointer-events: none;
}
.res-hero-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* Cover column */
.res-hero-cover-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.res-hero-cover-shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 36px;
  border-radius: 50%;
  background: rgba(0,75,122,.18);
  filter: blur(20px);
}
.res-hero-cover-img {
  width: 280px; height: 280px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,75,122,.2), 0 4px 16px rgba(0,0,0,.1);
  display: block;
  position: relative;
  z-index: 1;
}
.res-hero-rating-card {
  position: absolute;
  top: -16px; right: -8px;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  min-width: 110px;
}
.res-hero-stars { display: inline-flex; gap: 2px; }
.res-hero-rating-score { font-size: 13px; font-weight: 700; color: #1a2e44; }
.res-hero-rating-source { font-size: 11px; color: #94a3b8; }
/* Text column */
.res-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.res-hero-tag {
  background: rgba(14,165,160,.12);
  border: 1px solid rgba(14,165,160,.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  color: #0ea5a0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.res-hero-divider {
  display: inline-block;
  width: 1px; height: 16px;
  background: rgba(198,215,226,.6);
}
.res-hero-ep-count { font-size: 12px; color: #94a3b8; font-weight: 500; }
.res-hero-heading {
  font-size: 44px;
  font-weight: 900;
  color: #1a2e44;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
}
.res-hero-heading-accent { color: #004B7A; }
.res-hero-sub {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 0 32px;
}
.res-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.res-hero-btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid rgba(198,215,226,.8);
  color: #1a2e44;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.res-hero-btn-spotify:hover { border-color: #004B7A; transform: translateY(-2px); }
.res-hero-btn-apple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid rgba(198,215,226,.8);
  color: #1a2e44;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.res-hero-btn-apple:hover { border-color: #004B7A; transform: translateY(-2px); }
.podcast-section .res-hero { padding-top: 0; background: transparent; margin-bottom: 60px; }
.podcast-section .res-hero::after { display: none; }

/* ---- RESOURCES PAGE — PILL TOGGLE ---- */
.resources-pill-toggle-bar {
  background: #F8FAFC;
  border-bottom: 1px solid rgba(198,215,226,.4);
  padding: 24px;
  display: flex;
  justify-content: center;
}
.resources-pill-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid rgba(198,215,226,.7);
  border-radius: 100px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,75,122,.06);
}
.resources-pill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 28px;
  border: none;
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4b5563;
  transition: background .2s, color .2s, box-shadow .2s;
}
.resources-pill-btn.active {
  background: #004B7A;
  color: white;
  box-shadow: 0 4px 12px rgba(0,75,122,.25);
}
.resources-pill-count {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  transition: background .2s, color .2s;
}
.resources-pill-btn:not(.active) .resources-pill-count {
  background: #f1f5f9;
  color: #94a3b8;
}

/* ---- RESOURCES PAGE — BROWSE BY TOPIC ---- */
.resources-topics-section {
  background: #F8FAFC;
  padding: 72px 24px;
  border-bottom: 1px solid rgba(198,215,226,.3);
}
.resources-topic-cards {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.resources-topic-card {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: white;
  border: 1px solid rgba(198,215,226,.5);
  border-radius: 20px;
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,75,122,.05);
}
.resources-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,75,122,.11);
  border-color: rgba(14,165,160,.4);
}
.resources-topic-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.resources-topic-card-label {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e44;
  line-height: 1.25;
}
.resources-topic-card-count {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

/* ---- RESOURCES PAGE — FEATURED EPISODE CARD ---- */
.resources-featured-ep {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 24px;
}
.resources-featured-ep-inner {
  background: linear-gradient(135deg, #004B7A 0%, #005e96 100%);
  border-radius: 20px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,75,122,.2);
}
.resources-ep-badge {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
}
.resources-ep-badge--featured { background: #0ea5a0; }
.resources-ep-badge-label { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.8); letter-spacing: 0.1em; }
.resources-ep-badge-num { font-size: 28px; font-weight: 800; color: white; line-height: 1; }
.resources-featured-ep-body h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; line-height: 1.25; }
.resources-featured-ep-body p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }
.resources-featured-meta {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #0ea5a0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---- RESOURCES PAGE — TEAL BUTTON ---- */
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0ea5a0;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
}
.btn-teal:hover { background: #0d9490; transform: translateY(-2px); }
.resources-featured-play { flex-shrink: 0; }

/* ---- RESOURCES PAGE — PODCAST CARD ADDITIONS ---- */
.podcast-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.podcast-duration { font-size: 12px; color: #94a3b8; font-weight: 500; }
.podcast-date { font-size: 12px; color: #94a3b8; }
.podcast-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.resources-topic-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  width: fit-content;
}

/* ---- RESOURCES PAGE — FEATURED BLOG POST ---- */
.resources-featured-post {
  max-width: 1152px;
  margin: 0 auto 36px;
  padding: 36px 44px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(198,215,226,.4);
  box-shadow: 0 4px 20px rgba(0,75,122,.05);
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 32px;
  align-items: center;
}
.resources-featured-post-body h3 { font-size: 22px; font-weight: 800; color: #004B7A; letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.25; }
.resources-featured-post-body p { font-size: 15px; color: #4b5563; line-height: 1.65; margin-bottom: 20px; }
.resources-featured-post-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.resources-post-date { font-size: 13px; color: #94a3b8; }
.resources-featured-post-icon {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(14,165,160,.12), rgba(0,75,122,.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
}

/* ---- BLOG ARCHIVE / INDEX PAGE ---- */
.blog-main {
  padding-top: 140px;
  min-height: 60vh;
}
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.blog-content { width: 100%; }
@media (max-width: 768px) {
  .blog-main { padding-top: 100px; }
}

/* ---- RESOURCES PAGE — BLOG CARD ---- */
.blog-card-footer {
  border-top: 1px solid rgba(198,215,226,.4);
  padding-top: 14px;
}
.blog-read-link { color: #004B7A; font-weight: 600; font-size: 13px; cursor: pointer; }

/* ---- RESOURCES PAGE — LOAD MORE ---- */
.resources-load-more {
  text-align: center;
  margin-top: 48px;
  padding: 0 24px;
}

/* ---- CONTACT INFO CARDS ---- */
.contact-info-section { padding: 80px 0; background: white; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-info-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,75,122,.1); }
.contact-info-icon { font-size: 32px; margin-bottom: 16px; }
.contact-info-card h3 { font-size: 18px; font-weight: 700; color: #004B7A; margin-bottom: 8px; }
.contact-info-value { font-size: 16px; font-weight: 600; color: #1a2e44; margin-bottom: 4px; }
.contact-info-value a { color: #004B7A; }
.contact-info-detail { font-size: 13px; color: #9ca3af; margin: 0; }

/* ---- CONNECT SECTION (Contact) ---- */
.connect-section { padding: 80px 0; background: #F8FAFC; }
.connect-steps-indicator {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
.connect-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.connect-step-dot .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198,215,226,.4);
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.connect-step-dot.active .step-num {
  background: #004B7A;
  color: white;
}
.connect-step-dot .step-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}
.connect-step-dot.active .step-label { color: #004B7A; }
.connect-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
a.connect-option-card { text-decoration: none; display: block; }
.connect-option-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(198,215,226,.4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.connect-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,75,122,.1);
  border-color: #004B7A;
}
.connect-option-card h3 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 10px; }
.connect-option-card p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 12px; }
.connect-option-meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #004B7A;
  background: rgba(0,75,122,.08);
  padding: 4px 14px;
  border-radius: 100px;
}
.connect-option-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
button.connect-option-card {
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.connect-step-line {
  width: 48px;
  height: 2px;
  background: rgba(198,215,226,.5);
  flex-shrink: 0;
}
.connect-step-dot.completed .step-num {
  background: #0ea5a0;
  color: white;
  font-size: 14px;
}
.connect-step-dot.completed .step-label { color: #0ea5a0; }
.connect-step-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.connect-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #004B7A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  transition: color .2s;
}
.connect-back-btn:hover { color: #0ea5a0; }
.connect-calendar-placeholder {
  max-width: 600px;
  margin: 0 auto;
}
.connect-calendar-inner {
  background: white;
  border: 2px dashed rgba(198,215,226,.6);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}
.connect-calendar-icon { font-size: 48px; margin-bottom: 16px; }
.connect-calendar-inner h3 { font-size: 20px; font-weight: 700; color: #004B7A; margin-bottom: 12px; }
.connect-calendar-inner p { font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.connect-email-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(198,215,226,.4);
}
.connect-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.connect-form-field {
  margin-bottom: 20px;
}
.connect-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 6px;
}
.connect-form-field input,
.connect-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(198,215,226,.6);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #1a2e44;
  background: #F8FAFC;
  transition: border-color .2s;
  box-sizing: border-box;
}
.connect-form-field input:focus,
.connect-form-field textarea:focus {
  outline: 2px solid #004B7A;
  outline-offset: 2px;
  border-color: #004B7A;
  background: white;
}
.connect-form-field textarea { resize: vertical; min-height: 100px; }
.connect-form-submit { width: 100%; justify-content: center; }
.connect-form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(198,215,226,.6);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #1a2e44;
  background: #F8FAFC;
  transition: border-color .2s;
  box-sizing: border-box;
  appearance: auto;
  cursor: pointer;
}
.connect-form-field select:focus {
  outline: 2px solid #004B7A;
  outline-offset: 2px;
  border-color: #004B7A;
  background: white;
}
.billing-inquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(198,215,226,.4);
}
.billing-inquiry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.billing-inquiry-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,75,122,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.billing-inquiry-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e44;
  margin: 0 0 2px;
}
.billing-inquiry-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}
.billing-submit {
  background: #004B7A;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
}
.billing-submit:hover { background: #003a5e; }
.billing-trust-line {
  text-align: center;
  font-size: 13px;
  color: #4b5563;
  margin-top: 16px;
  margin-bottom: 0;
}
.growth-inquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(198,215,226,.4);
}
.growth-inquiry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.growth-inquiry-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,75,122,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.growth-inquiry-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e44;
  margin: 0 0 2px;
}
.growth-inquiry-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}
.growth-submit {
  background: #004B7A;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
}
.growth-submit:hover { background: #003a5e; }
.growth-trust-line {
  text-align: center;
  font-size: 13px;
  color: #4b5563;
  margin-top: 16px;
  margin-bottom: 0;
}
.connect-success {
  text-align: center;
  padding: 48px 24px;
}
.connect-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0ea5a0;
  color: white;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.connect-success h2 { font-size: 28px; color: #004B7A; margin-bottom: 12px; }
.connect-success p { font-size: 16px; color: #4b5563; line-height: 1.65; max-width: 440px; margin: 0 auto 24px; }

/* ---- EXPECT SECTION (Contact) ---- */
.expect-section { padding: 80px 0; background: white; }
.expect-steps {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.expect-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.expect-step-number {
  width: 48px;
  height: 48px;
  background: #004B7A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.expect-step-content h3 { font-size: 18px; font-weight: 700; color: #004B7A; margin-bottom: 6px; }
.expect-step-content p { font-size: 14px; color: #4b5563; line-height: 1.65; margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-centered-inner h1 { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .stats-inline { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-block { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .page-hero-inner h1 { font-size: 36px; }
  .coaching-hero-inner h1 { font-size: 36px; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .hero-benefits-grid { grid-template-columns: 1fr; max-width: 500px; margin: 36px auto 0; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid-light { grid-template-columns: 1fr 1fr; }
  .pathways-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .results-card-grid { gap: 32px; flex-wrap: wrap; }
  .hero-stats-row { gap: 24px; flex-wrap: wrap; }
  .pain-points-grid { grid-template-columns: 1fr; max-width: 600px; }
  .engagement-grid { grid-template-columns: 1fr; max-width: 500px; }
  .mission-card { margin-left: 24px; margin-right: 24px; padding: 36px 28px; }
  .serve-grid { grid-template-columns: 1fr; max-width: 600px; }
  .track-record-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; max-width: 600px; }
  .guides-grid { grid-template-columns: 1fr; max-width: 600px; }
  .contact-methods-grid { grid-template-columns: 1fr; max-width: 500px; }
  .service-options-grid { grid-template-columns: 1fr; max-width: 500px; }
  .aaron-card { grid-template-columns: 1fr; text-align: center; }
  .aaron-avatar-circle { margin: 0 auto; }
  .aaron-two-col { grid-template-columns: 1fr; }
  .marshalls-two-col { grid-template-columns: 1fr; gap: 48px; }
  .cost-card-grid { grid-template-columns: 1fr; }
  .res-hero-inner { grid-template-columns: 260px 1fr; gap: 48px; }
  .res-hero-cover-img { width: 220px; height: 220px; }
  .res-hero-heading { font-size: 36px; }
  .res-hero { padding: 100px 24px 64px; }
  .billing-hero-v2-inner { flex-direction: column; }
  .cta-glass-card { display: none; }
  .billing-hero-left h1 { font-size: 40px; }
  .hero-stats-bar { gap: 24px; flex-wrap: wrap; }
  .billing-benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .billing-testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 36px auto 0; }
  .drain-two-col { grid-template-columns: 1fr; }
  .tools-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; max-width: 400px; }
  .connect-options-grid { grid-template-columns: 1fr; max-width: 500px; }
  .connect-form-row { grid-template-columns: 1fr; }
  .connect-email-form { padding: 28px 20px; }
  .billing-inquiry-form { padding: 28px 20px; }
  .growth-inquiry-form { padding: 28px 20px; }
  .connect-calendar-inner { padding: 40px 20px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* NOTE: .mobile-overlay intentionally NOT set to display:block here.
     It is controlled exclusively by JS (style.display='block' to show,
     style.display='' to hide). Setting it in CSS caused it to always
     show on mobile even with the drawer closed. */

  .hero-centered-inner h1 { font-size: 32px; }
  .hero-centered { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .stats-inline { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stats-inline-item { min-width: 100px; }
  .stats-inline-number { font-size: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .resources-topic-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .resources-topic-card { min-width: unset; max-width: unset; }
  .podcast-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .coaching-intro-points { flex-direction: column; align-items: center; gap: 16px; }
  .included-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid-light { grid-template-columns: 1fr 1fr; }
  .hero-stats-row { flex-direction: column; gap: 16px; align-items: center; }
  .about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px; max-width: 360px; margin-left: auto; margin-right: auto; flex-direction: unset; }
  .hero-benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 32px auto 0; }
  .results-card-grid { flex-direction: column; gap: 24px; align-items: center; }
  .results-card { padding: 28px 20px; }
  .cta-content h2 { font-size: 28px; }
  .section-header h2 { font-size: 28px; }
  .cost-cta-card { padding: 32px 24px; }
  .mission-card { margin-left: 16px; margin-right: 16px; padding: 28px 20px; }
  .mission-card-heading { font-size: 26px; }
  .values-heading { font-size: 30px; }
  .values-cards { grid-template-columns: 1fr; }
  .track-record-grid { grid-template-columns: 1fr; }
  .tools-grid-4 { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .dual-cta-options { flex-direction: column; align-items: center; }
  .case-study-stats { flex-direction: column; }
  .billing-hero-left h1 { font-size: 32px; }
  .hero-stats-bar { flex-direction: column; gap: 16px; align-items: center; }
  .billing-top-section { padding: 100px 0 72px; }
  .billing-benefit-card { padding: 32px 20px; }
  .billing-testimonial-card { padding: 28px 24px; }
  .final-cta-checklist { flex-direction: column; align-items: center; }
  .scarcity-cta { padding: 32px 20px; }
  .scarcity-cta h3 { font-size: 22px; }
  .res-hero-inner { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: center; }
  .res-hero-cover-img { width: 180px; height: 180px; }
  .res-hero-heading { font-size: 28px; }
  .res-hero { padding: 80px 20px 48px; }
  .res-hero-eyebrow { justify-content: center; }
  .res-hero-sub { margin-left: auto; margin-right: auto; }
  .res-hero-btns { justify-content: center; }
  .res-hero-btn-spotify, .res-hero-btn-apple { font-size: 13px; padding: 12px 20px; }
  .connect-steps-indicator { gap: 16px; }
  .connect-step-line { width: 28px; }
  .connect-step-dot .step-label { white-space: nowrap; }
  .connect-options-grid { grid-template-columns: 1fr; }
  .connect-form-row { grid-template-columns: 1fr; }
}

/* ---- ASSESSMENT ---- */
.assessment-section {
  padding: 60px 24px 100px;
  background: white;
}
.assessment-container {
  max-width: 680px;
  margin: 0 auto;
}
.assessment-progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.assessment-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #004B7A, #2196F3);
  border-radius: 8px;
  transition: width 0.4s ease;
}
.assessment-step-label {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.assessment-question-card {
  background: #F8FAFC;
  border: 1px solid rgba(198,215,226,.5);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
}
.assessment-question-title {
  font-size: 24px;
  font-weight: 700;
  color: #004B7A;
  margin-bottom: 28px;
  line-height: 1.3;
}
.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.assessment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a2e44;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
  width: 100%;
}
.assessment-option:hover {
  border-color: #2196F3;
  background: rgba(33,150,243,.04);
  transform: translateY(-1px);
}
.assessment-option.selected {
  border-color: #004B7A;
  background: rgba(0,75,122,.06);
}
.assessment-option.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.assessment-option.disabled:hover {
  border-color: #e2e8f0;
  background: white;
  transform: none;
}
.assessment-radio,
.assessment-checkbox {
  font-size: 20px;
  color: #004B7A;
  flex-shrink: 0;
  line-height: 1;
}
.assessment-textarea {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #1a2e44;
  resize: vertical;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.assessment-textarea:focus {
  outline: 2px solid #004B7A;
  outline-offset: 2px;
  border-color: #004B7A;
}
.assessment-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.assessment-btn-row .connect-form-submit {
  width: auto;
}
.assessment-next-btn {
  margin-top: 0;
  margin-left: auto;
}
.assessment-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.assessment-back-btn {
  margin-top: 0;
}
.assessment-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 600px) {
  .assessment-question-card { padding: 28px 18px; }
  .assessment-question-title { font-size: 20px; }
}

/* ---- ARTICLE / SINGLE POST ---- */
.article-hero { padding-bottom: 48px; }
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
.article-meta-date,
.article-meta-read {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}
.article-hero-excerpt {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.article-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.article-featured-image {
  max-width: 960px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.article-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,75,122,.12);
}
.article-content-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
.article-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-content h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-content p {
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-content li {
  margin-bottom: 8px;
}
.article-content blockquote {
  border-left: 4px solid #0ea5a0;
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(14,165,160,.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #1a2e44;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.article-tags-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(198,215,226,.5);
}
.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-tag {
  display: inline-block;
  background: rgba(0,75,122,.06);
  color: #004B7A;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.article-tag:hover {
  background: rgba(0,75,122,.12);
}
.article-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 28px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid rgba(198,215,226,.4);
}
.article-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.article-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(198,215,226,.4);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.article-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,75,122,.08);
}
.article-nav-label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}
.article-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #004B7A;
  line-height: 1.4;
}
.article-nav-next { text-align: right; }
@media (max-width: 640px) {
  .article-post-nav { grid-template-columns: 1fr; }
}

/* ── v1.1.0: Assessment back-button style ────────────────────────────────────
   Assessment back buttons now use class="connect-back-btn-style" instead of
   "connect-back-btn" to prevent the contact-wizard JS handler from firing on them.
   These rules reproduce the original visual appearance exactly.
   ───────────────────────────────────────────────────────────────────────────── */
.connect-back-btn-style {
  background: none;
  border: none;
  color: var(--text-secondary, #4a5568);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  text-decoration: none;
}
.connect-back-btn-style:hover { color: var(--deep-blue, #004B7A); }

/* ── v1.2.0: Billing assessment question hint text ─────────────────────── */
.assessment-question-hint {
  font-size: 15px;
  color: var(--text-secondary, #4a5568);
  margin: -8px 0 20px;
  line-height: 1.6;
}
.assessment-question-hint small {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
}

/* ── v1.3.0: Topic card filter — active state & clear button ─────────── */
.resources-topic-card {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 2px solid transparent;
}
.resources-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,75,122,.13);
}
.resources-topic-card.active {
  border-color: var(--teal, #0ea5a0);
  background: rgba(14,165,160,.07);
  box-shadow: 0 0 0 3px rgba(14,165,160,.18), 0 8px 24px rgba(0,75,122,.1);
}
.resources-topic-card.active .resources-topic-card-label {
  color: var(--teal, #0ea5a0);
}
.resources-topic-card.active .resources-topic-card-count {
  color: var(--teal, #0ea5a0);
  font-weight: 600;
}
.resources-topic-clear-btn {
  background: none;
  border: 1px solid var(--teal, #0ea5a0);
  color: var(--teal, #0ea5a0);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.resources-topic-clear-btn:hover {
  background: var(--teal, #0ea5a0);
  color: #fff;
}
/* Smooth show/hide of filtered cards */
.podcast-card {
  transition: opacity 0.2s ease;
}
