/* ============================================================
   DCD CONSULTING GROUP — Dollar Debasement Strategy
   Stylesheet · HTML/CSS/Vanilla JS
   ============================================================ */

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

/* ---------- TOKENS ---------- */
:root {
  --green-dark:    #1a3a2a;
  --green-mid:     #2d5a3d;
  --green-brand:   #3d7a52;
  --green-light:   #4a9463;
  --green-pale:    #e8f2ec;
  --green-tint:    #f0f7f2;

  --gold:          #b8842a;
  --gold-light:    #c9973c;
  --gold-pale:     #f5ead8;

  --text-primary:  #1a2420;
  --text-muted:    #6b7c74;
  --text-light:    #9aada5;

  --white:         #ffffff;
  --off-white:     #fafaf8;
  --border:        #e2ebe5;
  --border-strong: #c8d8cc;

  --shadow-sm: 0 1px 3px rgba(26,58,42,.06), 0 1px 2px rgba(26,58,42,.04);
  --shadow-md: 0 4px 16px rgba(26,58,42,.08), 0 2px 6px rgba(26,58,42,.05);
  --shadow-lg: 0 12px 40px rgba(26,58,42,.12), 0 4px 12px rgba(26,58,42,.07);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w: 900px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.label-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-brand);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  background: var(--white);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 14px;
}

.display-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  opacity: .85;
}

.display-heading em {
  font-style: italic;
  color: var(--gold);
}

.display-heading .accent-green {
  color: var(--green-brand);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-underline-offset: 4px;
}

.body-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-primary);
}

.check-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%233d7a52' stroke-width='1.5'/%3E%3Cpath d='M6.5 10.5l2.5 2.5 4.5-5' fill='none' stroke='%233d7a52' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.check-list li strong {
  font-weight: 600;
}

.arrow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-muted);
}

.arrow-list li::before {
  content: '→';
  color: var(--green-brand);
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  background: var(--green-tint);
  border-color: var(--green-brand);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  font-weight: 400;
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-block: 12px 16px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-brand);
  letter-spacing: -.02em;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-logo-text span:last-child {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: .85rem;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all .15s ease;
}
.nav-link:hover {
  color: var(--text-primary);
  border-color: var(--border);
  background: var(--off-white);
}

.nav-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green-dark);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  transition: background .15s ease;
}
.nav-cta:hover { background: var(--green-mid); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .2s ease;
}

/* ---------- AUDIENCE TOGGLE ---------- */
.audience-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  justify-content: center;
}

.audience-toggle {
  display: inline-flex;
  background: var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.audience-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all .2s ease;
  font-weight: 500;
}

.audience-btn.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

/* ---------- HERO ---------- */
.hero {
  padding: 80px 24px 100px;
  background: var(--white);
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-primary);
  opacity: .85;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-heading .accent-green {
  color: var(--green-brand);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--green-light);
  text-decoration-thickness: 2px;
}

.hero-heading .accent-gold {
  color: var(--gold);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 8px;
}

.hero-disclaimer {
  margin-top: 20px;
  font-size: .8rem;
  color: var(--text-light);
}

/* ---------- STRUCTURAL PROBLEM ---------- */
.section-problem {
  background: var(--off-white);
  padding: 96px 24px;
}

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

/* ---------- VIDEO SECTION ---------- */
.section-video {
  padding: 96px 24px;
  background: var(--white);
  text-align: center;
}

.section-video .display-heading,
.section-video .body-lead {
  margin-inline: auto;
}

.section-video .body-lead {
  text-align: center;
  margin-block: 16px 40px;
}

.video-wrapper {
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-tag-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  text-align: left;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: var(--white);
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 16px;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--green-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.8);
  transition: all .2s ease;
}

.video-embed:hover .video-play-btn {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--green-brand);
  margin-left: 3px;
}

.video-caption {
  font-size: .9rem;
  color: var(--text-muted);
}

.video-hint {
  font-size: .78rem;
  color: var(--text-light);
  font-style: italic;
}

.video-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

/* ---------- PRICING ---------- */
.section-pricing {
  background: var(--off-white);
  padding: 96px 24px;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-card.popular {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 2px rgba(61,122,82,.15), var(--shadow-md);
}

.pricing-card-header {
  padding: 28px 32px 0;
}

.pricing-card-body {
  padding: 24px 32px 32px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-block: 10px 4px;
}

.pricing-price sup {
  font-size: 60%;
  vertical-align: super;
}

.pricing-period {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.pricing-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 20px;
}

.pricing-action {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.pricing-card.popular .pricing-action {
  background: linear-gradient(to bottom, var(--green-tint), var(--white));
}

.pricing-action-note {
  font-size: .78rem;
  color: var(--text-light);
}

.pricing-action .btn {
  width: 100%;
  justify-content: center;
}

.pricing-bundle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.bundle-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: .9rem;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-block: 8px 16px;
}

/* ---------- TRUST BADGES ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.trust-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trust-body {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- PLAYBOOKS ---------- */
.section-playbooks {
  padding: 96px 24px;
  background: var(--white);
}

.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.playbook-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}

.playbook-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.playbook-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.playbook-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
  flex: 1;
}

.playbook-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.playbook-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.playbook-bundle {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--gold-pale) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.playbook-bundle-left .bundle-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.playbook-bundle-left h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.playbook-bundle-left p {
  font-size: .9rem;
  color: var(--text-muted);
}

.playbook-bundle-right {
  text-align: center;
}

/* ---------- BOOK A CALL ---------- */
.section-book {
  background: var(--off-white);
  padding: 96px 24px;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.book-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
}

.book-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.book-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.book-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-brand);
}

/* ---------- INDIVIDUAL TRACK ---------- */
.section-individual {
  background: var(--white);
  padding: 96px 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .2s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-card.featured {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 2px rgba(61,122,82,.12), var(--shadow-sm);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-brand);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

.step-subtitle {
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
}

.step-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-brand);
}

.step-cta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ---------- TESTIMONIALS ---------- */
.section-testimonials {
  background: var(--off-white);
  padding: 96px 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  opacity: .85;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.testimonial-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-primary);
}

.testimonial-meta {
  font-size: .8rem;
  color: var(--text-light);
}

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--white);
  padding: 96px 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item.open {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s ease;
}

.faq-question:hover {
  color: var(--text-primary);
}

.faq-item.open .faq-question {
  color: var(--green-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  color: var(--text-muted);
  font-size: .75rem;
}

.faq-item.open .faq-icon {
  background: var(--green-brand);
  border-color: var(--green-brand);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- CTA SECTION ---------- */
.section-cta {
  background: var(--off-white);
  padding: 96px 24px;
  text-align: center;
}

.section-cta .display-heading {
  margin-inline: auto;
}

.section-cta .body-lead {
  margin-inline: auto;
  text-align: center;
  margin-top: 20px;
}

.section-cta .btn-group {
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer-brand address {
  font-style: normal;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-brand address a:hover {
  color: var(--green-brand);
  text-decoration: underline;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .15s ease;
}

.footer-col ul li a:hover {
  color: var(--green-brand);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-brand);
}

.footer-logo-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 48px;
}

.footer-copyright {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-disclosure {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.75;
}

.footer-disclosure strong {
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open .nav-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 8px;
  }

  .book-grid,
  .steps-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .playbooks-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .playbook-bundle { flex-direction: column; }

  .hero { padding: 56px 24px 72px; }
}

@media (max-width: 540px) {
  .playbooks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .display-heading { font-size: 2rem; }
}
