/* ============================================
   PROJECT PMP — SHARED STYLESHEET
   Inspired by bold editorial design
   ============================================ */

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

/* ---- TOKENS ---- */
:root {
  --navy: #1B2F5E;
  --navy-dark: #12204a;
  --teal: #00B4A6;
  --teal-dark: #009e92;
  --gold: #D4A843;
  --soft-white: #F8F9FA;
  --white: #FFFFFF;
  --text-dark: #111827;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

/* ---- TYPOGRAPHY ---- */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display--md {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display--sm {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
}
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.accent-teal { color: var(--teal); }
.accent-gold { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--teal); color: white; }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,166,0.3); }
.btn--navy { background: var(--navy); color: white; }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn--outline-white { background: transparent; border-color: rgba(255,255,255,0.4); color: white; }
.btn--outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn--outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: white; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #c49a35; transform: translateY(-2px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 40px; }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo .accent { color: var(--teal); }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta { padding: 10px 22px; font-size: 0.82rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 1px; }
.nav__mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: white;
  padding: 48px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--teal); }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  color: white;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(0,180,166,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-bottom: 80px; }
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero__social-proof::before { content: ''; display: block; width: 28px; height: 2px; background: var(--teal); flex-shrink: 0; }
.hero__book {
  border-radius: 3px;
  box-shadow: -16px 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.hero__stat-strip {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 56px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero__stat-strip .stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero__stat-strip .stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  display: block;
  line-height: 1.4;
}

/* ---- PILLAR CARDS ---- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar-card {
  background: white;
  padding: 52px 44px;
  transition: all 0.25s;
  border-top: 4px solid transparent;
  border-right: 1px solid var(--border);
  position: relative;
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { border-top-color: var(--teal); box-shadow: 0 12px 48px rgba(0,0,0,0.1); transform: translateY(-6px); z-index: 2; }
.pillar-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 28px;
}
.pillar-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.pillar-card p { color: var(--text-mid); margin-bottom: 36px; font-size: 0.95rem; line-height: 1.75; }

/* ---- SPLIT SECTION ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__panel { padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; }
.split__panel--navy { background: var(--navy); color: white; }
.split__panel--soft-white { background: var(--soft-white); }
.split__panel--teal { background: var(--teal); color: white; }
.split__panel--white { background: white; }

/* ---- PULL QUOTE ---- */
.big-quote {
  position: relative;
  padding-top: 48px;
}
.big-quote::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: -8px;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(0,180,166,0.15);
  font-weight: 900;
  pointer-events: none;
}
.big-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.split__panel--navy .big-quote blockquote {
  color: white;
}
.split__panel--navy .big-quote cite {
  color: rgba(255,255,255,0.55);
}
.big-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Centered pull quote (navy bg) */
.pull-quote-centered {
  text-align: center;
  padding: 96px 0;
  position: relative;
}
.pull-quote-centered::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  line-height: 1;
  color: rgba(0,180,166,0.12);
  font-weight: 900;
  pointer-events: none;
}
.pull-quote-centered blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.pull-quote-centered cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Inline quote block */
.quote-block {
  border-left: 4px solid var(--teal);
  padding: 28px 36px;
  background: rgba(0,180,166,0.04);
  border-radius: 0 4px 4px 0;
  margin: 40px 0;
}
.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.quote-block cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
}

/* ---- CARDS ---- */
.card { background: white; border-radius: 2px; padding: 40px; box-shadow: var(--shadow); }
.card--teal-top { border-top: 4px solid var(--teal); }
.card--navy-top { border-top: 4px solid var(--navy); }
.card--gold-top { border-top: 4px solid var(--gold); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-header h2 { margin-top: 8px; }
.section-header p { margin-top: 16px; }

/* ---- CAREER TIMELINE ---- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.timeline-item { padding: 56px 36px 40px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 12px; left: 36px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,166,0.25), 0 0 0 8px rgba(0,180,166,0.08);
}
.timeline-item__era {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.timeline-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ---- VALUES ---- */
.value-card { padding: 48px 40px; background: white; }
.value-card__icon {
  width: 44px; height: 44px;
  background: rgba(0,180,166,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: white;
  padding: 44px;
  box-shadow: var(--shadow);
  position: relative;
  border-radius: 2px;
}
.testimonial-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: 24px;
  left: 36px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
  line-height: 1.8;
}
.testimonial-card__author { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  padding: 26px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: var(--teal); }
.faq-answer { padding: 0 0 28px 0; color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; }

/* ---- OFFER CARDS ---- */
.offer-card { background: white; box-shadow: var(--shadow); overflow: hidden; border-radius: 2px; }
.offer-card__header { padding: 36px 44px; background: var(--soft-white); border-bottom: 1px solid var(--border); }
.offer-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.offer-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.offer-card__price { font-size: 2.25rem; font-weight: 800; color: var(--navy); }
.offer-card__body { padding: 44px; }
.offer-card__body p { color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
.offer-card__list { margin: 20px 0 36px; }
.offer-card__list li {
  padding: 10px 0;
  color: var(--text-mid);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.offer-card__list li:first-child { border-top: 1px solid var(--border); }
.offer-card__list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---- COMPARE TABLE ---- */
.compare-wrap { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--border); gap: 2px; border-radius: 4px; overflow: hidden; }
.compare-col { background: white; padding: 36px 28px; text-align: center; }
.compare-col--featured { background: var(--navy); }
.compare-col .compare-era {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.compare-col--featured .compare-era { color: rgba(255,255,255,0.45); }
.compare-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.compare-col--featured h4 { color: white; }
.compare-col .compare-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--teal);
  margin: 12px 0;
  display: block;
}
.compare-col p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.compare-col--featured p { color: rgba(255,255,255,0.6); }

/* ---- BLOG GRID ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: white; box-shadow: var(--shadow); transition: all 0.25s; border-radius: 2px; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__body { padding: 36px; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.tag--break-in { background: rgba(0,180,166,0.1); color: var(--teal); }
.tag--get-certified { background: rgba(27,47,94,0.08); color: var(--navy); }
.tag--do-the-work { background: rgba(212,168,67,0.15); color: #8a6820; }
.tag--free { background: rgba(0,180,166,0.1); color: var(--teal); }
.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }
.blog-card__link { font-size: 0.82rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-card__link:hover { gap: 10px; }

/* ---- FEATURED RESOURCE ---- */
.feature-resource {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 80px;
  background: var(--soft-white);
  border-radius: 4px;
  margin-bottom: 64px;
}
.feature-resource__icon {
  width: 120px;
  height: 120px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.feature-resource__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ---- EMAIL CAPTURE ---- */
.email-form { display: flex; gap: 12px; max-width: 480px; }
.email-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: inherit;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.email-form input[type="email"]:focus { border-color: rgba(255,255,255,0.5); }
.email-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 14px; }

/* ---- CONTACT FORM ---- */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ---- BOOK FEATURE ---- */
.book-feature { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }
.book-feature__cover {
  width: 280px;
  border-radius: 3px;
  box-shadow: -12px 16px 48px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.book-feature ul { margin: 28px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.book-feature ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.book-feature ul li .arrow { color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ---- FILTER NAV ---- */
.filter-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 52px; }
.filter-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.filter-btn.active,
.filter-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,180,166,0.04); }

/* ---- COMMUNITY STATS ---- */
.community-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.community-stat {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.community-stat:last-child { border-right: none; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: white; padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer__brand-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; color: white; }
.footer__brand-name .accent { color: var(--teal); }
.footer__tagline { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer__mission { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 12px; }
.footer__col h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer__col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; transition: color 0.2s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ---- TAGS ---- */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  background: rgba(27,47,94,0.08);
  color: var(--navy);
}
.tag--teal { background: rgba(0,180,166,0.12); color: var(--teal); }
.tag--free { background: rgba(0,180,166,0.12); color: var(--teal); }
.tag--gold { background: rgba(212,168,67,0.15); color: #8a6820; }

/* ---- OFFER CARDS (Work With Me) ---- */
.offer-card {
  background: white;
  box-shadow: var(--shadow);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.offer-card--featured { border: 2px solid var(--teal); }
.offer-card__header { padding: 36px 36px 28px; background: var(--soft-white); border-bottom: 1px solid var(--border); }
.offer-card--featured .offer-card__header { background: rgba(0,180,166,0.06); }
.offer-card__tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.offer-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.offer-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.offer-card__amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--navy); }
.offer-card__period { font-size: 0.8rem; color: var(--text-mid); font-weight: 500; }
.offer-card__desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.offer-card__features { padding: 28px 36px; flex: 1; list-style: none; }
.offer-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.offer-card__features li:first-child { border-top: 1px solid var(--border); }
.offer-card__features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.offer-card__cta { display: block; margin: 0 20px 28px; text-align: center; padding-left: 16px; padding-right: 16px; }

/* ---- BLOG CARD EXTRAS ---- */
.blog-card__image {
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__excerpt { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ---- FEATURE RESOURCE EXTRAS ---- */
.feature-resource { position: relative; border: 1px solid var(--border); }
.feature-resource__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.feature-resource__inner {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 56px 64px;
}

/* ---- FAQ EXTRAS ---- */
.faq { border-top: 1px solid var(--border); margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 26px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--teal); }
.faq-item p { padding: 0 0 28px; color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; }

/* ---- FILTER NAV (sticky) ---- */
.filter-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0;
}
.filter-btn {
  padding: 20px 28px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-btn.active,
.filter-btn:hover { color: var(--teal); border-bottom-color: var(--teal); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 32px; }
  .hero__grid { gap: 48px; }
  .split__panel { padding: 72px 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .compare-wrap { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-resource { padding: 56px; gap: 48px; }
}

@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 64px 0 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 64px; }
  .hero__book { margin: 0 auto; max-width: 260px; }
  .hero__stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero__stat-strip .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 20px; }
  .hero__stat-strip .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero__stat-strip .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; border-bottom: 1px solid var(--border); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__panel { padding: 60px 32px; }
  .book-feature { grid-template-columns: 1fr; gap: 40px; }
  .book-feature__cover { width: 200px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr; }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .community-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .compare-wrap { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-resource { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; text-align: center; }
  .feature-resource__icon { margin: 0 auto; }
  .email-form { flex-direction: column; max-width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .big-quote::before { font-size: 7rem; }
  .pull-quote-centered::before { font-size: 10rem; }
  .pull-quote-centered { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
}
