/* ============================================
   ACCULEAD.CO — Styles
   Colors: Navy #1B2A4A, Orange #E8863A, White, Light Gray #F7F7F7
   Fonts: DM Serif Display (headlines), Inter (body)
   ============================================ */

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

:root {
  --navy: #1B2A4A;
  --orange: #E8863A;
  --orange-text: #9C5614; /* WCAG AA safe version for use on white/light backgrounds (4.82:1) */
  --white: #FFFFFF;
  --light: #F7F7F7;
  --gray: #6B7280;
  --border: #E5E7EB;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Skip to content link (keyboard accessibility) --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-left: 10px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.btn-primary {
  color: var(--white);
}
.nav-links a.btn-primary:hover {
  color: var(--white);
}
.nav-free-book {
  color: var(--orange-text) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-free-book::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.nav-free-book:hover {
  color: var(--navy) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 14px 28px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: #253a5e;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hero secondary button (pairs with primary in .hero-btn-row) */
.hero-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  color: var(--navy);
  background: transparent;
  border: none;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: text-decoration-thickness 0.2s, color 0.2s;
}
.btn-hero-secondary:hover {
  color: var(--orange-text);
  text-decoration-thickness: 3px;
}

/* Compact book promo strip (used on about/services/pricing pages) */
.book-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.book-strip-inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
}
.book-strip-cover {
  width: 80px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(27, 42, 74, 0.15);
  transform: rotate(-3deg);
}
.book-strip-text h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 400;
}
.book-strip-text p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}
.book-strip-text .book-strip-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 6px;
  display: block;
}
.book-strip-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.book-strip-cta:hover {
  color: var(--navy);
}

/* --- LABELS --- */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

/* --- HERO --- */
.hero {
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-checks li {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 44px;
  cursor: default;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.hero-checks li:first-child {
  border-top: 1px solid var(--border);
}
.hero-checks li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-50%) scale(0.5);
}
.hero-checks li::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-checks li:hover {
  background: var(--light);
}
.hero-checks li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.hero-checks li:hover::after {
  opacity: 1;
}

/* Animate checks in on load */
.hero-checks.animated li::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.hero-checks.animated li::after {
  opacity: 1;
}
.hero-checks.animated li:nth-child(1)::before,
.hero-checks.animated li:nth-child(1)::after { transition-delay: 0.6s; }
.hero-checks.animated li:nth-child(2)::before,
.hero-checks.animated li:nth-child(2)::after { transition-delay: 0.8s; }
.hero-checks.animated li:nth-child(3)::before,
.hero-checks.animated li:nth-child(3)::after { transition-delay: 1.0s; }
.hero-checks.animated li:nth-child(4)::before,
.hero-checks.animated li:nth-child(4)::after { transition-delay: 1.2s; }

/* --- INDUSTRIES --- */
.industries {
  padding: 40px 0 60px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}
.tag-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-size: 0.95rem;
  padding: 10px 24px;
}

/* Industry expandable cards */
.industries {
  padding: 40px 0 60px;
  background: var(--navy);
}
.industries .label {
  color: rgba(255,255,255,0.5);
}
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.industry-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.industry-card:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.industry-card.active {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.industry-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}
.industry-card.active .industry-card-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.industry-icon {
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
}
.industry-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  flex-grow: 1;
  margin: 0;
  color: var(--white);
}
.industry-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.industry-card:hover .industry-toggle {
  color: rgba(255,255,255,0.6);
}
.industry-card.active .industry-toggle {
  transform: rotate(45deg);
  color: var(--orange);
}
.industry-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}
.industry-card.active .industry-card-body {
  max-height: 300px;
  padding: 0 28px 28px;
}
.industry-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-micro-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}

.industries-also {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* --- SECTIONS --- */
section {
  padding: 60px 0;
  color: var(--navy);
}
section h2 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}
section h3 {
  color: var(--navy);
}
section p {
  color: var(--navy);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* --- THREE COL --- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 36px;
}
.col-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.col-card p {
  color: var(--gray);
  font-size: 0.95rem;
}
.col-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.2;
  margin-bottom: 12px;
  line-height: 1;
}

/* --- FOUR COL --- */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 36px;
}
/* -- Process / Timeline -- */
.process {
  background: var(--navy);
}
.process-label {
  color: var(--orange) !important;
}
.process-heading {
  color: var(--white) !important;
  margin-bottom: 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
  padding-top: 40px;
}
.timeline-line {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  grid-column: 1 / -1;
}
.timeline-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 20px;
  position: relative;
  z-index: 1;
}
.timeline-dot span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.timeline-step h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* --- SERVICES --- */
.services {
  background: var(--light);
}

/* Featured card */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 20px;
}
.service-featured-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-featured .service-label {
  color: var(--orange);
  margin-bottom: 10px;
}
.services .service-featured-content h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.services .service-featured-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-featured-content .btn-outline-white {
  font-size: 0.85rem;
  padding: 10px 22px;
  align-self: flex-start;
}
.service-featured-points {
  background: rgba(255,255,255,0.05);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.featured-headshot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
}
.featured-headshot img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.featured-headshot-name {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}
.featured-headshot-title {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.3;
}
.services .sfp {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
}
.sfp:last-child { border-bottom: none; }
.sfp-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 18px;
}

/* Service grid (3 cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-label.orange { color: var(--orange-text); }

/* --- STATS --- */
.stats-bar {
  background: var(--navy);
  padding: 44px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--orange);
  padding: 48px 0;
  text-align: center;
}
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 1.6rem;
  max-width: 600px;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 500px;
  text-align: center;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
}
.cta-banner .btn-primary:hover {
  background: var(--light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* --- METHODOLOGY --- */
.methodology {
  background: var(--light);
}
.method-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 16px;
}
.method-header p {
  color: var(--gray);
  font-size: 0.95rem;
  padding-top: 0;
}
.method-footnote {
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--gray);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  border-top: none;
  padding-top: 24px;
}

/* --- PROCESS --- */
.process-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid var(--border);
}
.proof-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.proof-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

/* --- CTA --- */
/* --- MID-PAGE CTA --- */
.cta-section {
  background: var(--light);
  padding: 80px 0;
}
.cta-box {
  text-align: center;
  max-width: 560px;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.cta-box p {
  color: var(--gray);
  margin-bottom: 24px;
}
.micro {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}
.footer-right {
  display: flex;
  gap: 24px;
}
.footer-right a {
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-right a:hover { color: var(--navy); }

/* ===========================================
   ANIMATIONS & INTERACTIONS
   =========================================== */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover effects */
.service-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 42, 74, 0.08);
}

.timeline-step {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-step:hover {
  transform: translateY(-4px);
}

.col-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.col-card:hover {
  transform: translateY(-2px);
}
.methodology .col-card {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

/* Stagger problem cards */
.problem .col-card.reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem .col-card:nth-child(1).reveal { transition-delay: 0s; }
.problem .col-card:nth-child(2).reveal { transition-delay: 0.15s; }
.problem .col-card:nth-child(3).reveal { transition-delay: 0.3s; }

/* Button hover enhancement */
.btn-primary {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: #253a5e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.2);
}

/* Tag hover */
.tag-primary {
  transition: background 0.2s ease, transform 0.2s ease;
}
.tag-primary:hover {
  background: #253a5e;
  transform: scale(1.04);
}

/* Stats counter animation */
.stat-num {
  transition: opacity 0.4s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .service-card,
  .timeline-step,
  .col-card,
  .btn-primary,
  .tag-primary {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================
   ABOUT PAGE
   =========================================== */

.about-hero {
  padding: 80px 0 40px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-hero .hero-sub {
  color: var(--gray);
  font-size: 1.05rem;
}
.about-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--orange);
}
.about-stat:first-child {
  border-top: 1px solid var(--border);
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  min-width: 80px;
}
.about-stat-label {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Bio */
.bio {
  padding: 60px 0;
  background: var(--light);
}
.bio-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.bio-photo {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(27, 42, 74, 0.1);
}
.bio-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.bio-title {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.bio-body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Credentials */
.credentials {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.cred-row {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.cred-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-text);
  min-width: 80px;
}
.cred-value {
  font-size: 0.95rem;
}

/* Results grid */
.results {
  background: var(--navy);
}
.results h2 {
  margin-bottom: 28px;
  color: var(--white);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result-card {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.result-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.result-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  margin-bottom: 4px;
  color: var(--white);
}
.result-headline {
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 0;
  color: rgba(255,255,255,0.6);
}

/* How we think */
.thinking {
  padding: 60px 0;
}
.thinking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.thinking-grid h2 {
  font-size: 2.2rem;
}
.thinking-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.thinking-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.thinking-pillar {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.thinking-pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.thinking-pillar p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===========================================
   FRACTIONAL CMO PAGE
   =========================================== */

.fcmo-hero {
  padding: 80px 0 60px;
}
.fcmo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fcmo-hero .label {
  margin-bottom: 16px;
}
.fcmo-hero h1 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subhead {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--orange-text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.fcmo-hero-left p:not(.label):not(.hero-subhead) {
  font-size: 1.05rem;
  color: var(--gray);
}
.fcmo-signs-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-text);
  margin-bottom: 16px;
}
.fcmo-signs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fcmo-signs li {
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 44px;
}
.fcmo-signs li:first-child {
  border-top: 1px solid var(--border);
}
.fcmo-signs li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

/* Short answer */
.short-answer {
  background: var(--light);
  padding: 60px 0;
}
.short-answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.short-answer .label { margin-bottom: 12px; }
.short-answer h2 {
  font-size: 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0;
}
.short-answer-right p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Bio callout */
.bio-callout {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 32px;
  max-width: 640px;
}
.bio-callout-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.bio-callout-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.bio-callout strong {
  display: block;
  margin-bottom: 4px;
}
.bio-callout p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Comparison table */
.comparison {
  padding: 60px 0;
  background: var(--navy);
}
.comparison h2 {
  margin-bottom: 28px;
  color: var(--white);
}
.comparison .label {
  color: var(--orange);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.compare-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.compare-card.highlighted {
  border-color: var(--orange);
  border-width: 2px;
  background: rgba(255,255,255,0.1);
}
.compare-header {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.compare-card.highlighted .compare-header {
  color: var(--orange);
}
.compare-item {
  padding: 12px 20px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
}
.compare-item::before {
  content: "\25B8";
  color: var(--orange);
  font-size: 0.7rem;
}
.compare-card.highlighted .compare-item {
  color: rgba(255,255,255,0.9);
  border-top-color: rgba(255,255,255,0.12);
}

/* FAQ */
.faq {
  background: var(--light);
}
.faq h2 {
  margin-bottom: 28px;
}
.faq-list {
  max-width: 100%;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.faq-toggle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange-text);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 12px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.faq-cta p {
  font-size: 0.9rem;
  color: var(--gray);
}
.faq-cta a {
  color: var(--orange-text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.faq-cta a:hover {
  text-decoration-thickness: 2px;
}

/* Bottom CTA alt */
.cta-alt {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.cta-alt h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-alt p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.cta-alt .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: #f0f0f0;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
}
.cta-alt .footer-link {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.cta-alt .footer-link a {
  color: var(--orange);
}

/* ===========================================
   PRICING PAGE
   =========================================== */

.pricing-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.pricing-hero h1 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pricing-hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
}

/* Value cards */
.pricing-value {
  padding: 60px 0;
  background: var(--light);
}
.pricing-value .label {
  margin-bottom: 12px;
}
.pricing-value-heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 40px;
  max-width: 500px;
}
.pricing-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}
.pricing-value-icon {
  margin-bottom: 16px;
  line-height: 1;
}
.pricing-value-icon svg {
  display: block;
}
.pricing-value-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Pricing tiers */
.pricing-section {
  padding: 80px 0;
  background: var(--white);
}
.pricing-tiers-heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 48px;
}
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}
.pricing-tier-featured {
  border: 2px solid var(--orange);
  padding-top: 48px;
}
.pricing-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
}
.pricing-tier-header {
  margin-bottom: 16px;
}
.pricing-tier-header h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pricing-tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-dollar {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
}
.pricing-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.pricing-num-custom {
  font-size: 2.4rem;
}
.pricing-period {
  font-size: 1rem;
  color: var(--gray);
  margin-left: 2px;
}
.pricing-tier-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-tier-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-tier-list li {
  font-size: 0.88rem;
  color: var(--navy);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.pricing-tier-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}
.pricing-tier-btn {
  width: 100%;
  text-align: center;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.pricing-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 32px;
}

/* Dual CTA */
.pricing-cta {
  padding: 60px 0 80px;
}
.pricing-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pricing-cta-card {
  background: var(--light);
  border-radius: 12px;
  padding: 40px;
}
.pricing-cta-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.pricing-cta-card > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-expect-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-expect-list li {
  font-size: 0.9rem;
  color: var(--navy);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-expect-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Quote form */
.pricing-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-form input,
.pricing-form select,
.pricing-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  width: 100%;
}
.pricing-form input::placeholder,
.pricing-form textarea::placeholder {
  color: var(--gray);
}
.pricing-form select {
  appearance: none;
  cursor: pointer;
}
.pricing-form input:focus,
.pricing-form select:focus,
.pricing-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 134, 58, 0.15);
}
.pricing-form .btn {
  margin-top: 4px;
}

/* ===========================================
   FREE BOOK (LEAD MAGNET) PAGE
   =========================================== */

.book-hero {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}
.book-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.book-hero h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1.08;
  margin-bottom: 12px;
}
.book-hero .hero-subhead {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--orange-text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.25;
}
.book-hero-intro {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.book-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.book-bullets li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.book-bullets li:first-child { border-top: 1px solid var(--border); }
.book-bullets li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}
.book-hero-who {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 520px;
}
.book-hero-who strong {
  color: var(--navy);
  font-weight: 700;
}

.book-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-cover-wrap {
  position: relative;
  max-width: 320px;
  width: 100%;
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.book-cover-wrap:hover { transform: rotate(0deg) scale(1.02); }
.book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(27, 42, 74, 0.25),
    0 5px 18px rgba(27, 42, 74, 0.18),
    -6px 0 0 -2px rgba(27, 42, 74, 0.35);
}

/* Form section */
.book-form-section {
  background: var(--navy);
  padding: 72px 0;
}
.book-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
}
.book-form-card,
.book-thankyou {
  background: var(--white);
  border-radius: 14px;
  padding: 44px 44px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.book-form-intro { margin-bottom: 28px; }
.book-form-intro h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin: 4px 0 10px;
  color: var(--navy);
}
.book-form-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.book-form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.book-form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.book-form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 134, 58, 0.18);
}
.book-form-row-check {
  flex-direction: row;
  align-items: flex-start;
}
.book-form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.5;
  cursor: pointer;
}
.book-form-check {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.book-form-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
}
.book-form-privacy {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.5;
}

/* Thank-you state */
.book-thankyou {
  text-align: center;
}
.book-thankyou h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin: 4px 0 12px;
  color: var(--navy);
}
.book-thankyou-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.book-download-btn {
  font-size: 1rem;
  padding: 16px 36px;
  margin-bottom: 20px;
}
.book-thankyou-next {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 12px;
}
.book-thankyou-link {
  color: var(--orange-text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* What's inside */
.book-inside {
  padding: 72px 0;
  background: var(--white);
}
.book-inside h2 {
  margin-bottom: 32px;
}
.book-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.book-chapter {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.book-chapter-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--orange);
  min-width: 40px;
  line-height: 1;
  padding-top: 2px;
}
.book-chapter h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}
.book-chapter p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Author block */
.book-author {
  padding: 72px 0;
  background: var(--light);
}
.book-author-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 860px;
}
.book-author-photo {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.12);
}
.book-author h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin: 4px 0 6px;
}
.book-author-title {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.book-author p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
}
.book-author-link {
  display: inline-block;
  color: var(--orange-text);
  font-weight: 600;
  margin-top: 6px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ===========================================
   HOMEPAGE: FREE BOOK PROMO BANNER
   =========================================== */

.book-promo {
  background: var(--navy);
  padding: 64px 0;
  color: var(--white);
}
.book-promo-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
}
.book-promo-cover {
  width: 180px;
  transform: rotate(-3deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.book-promo-cover:hover { transform: rotate(0deg) scale(1.03); }
.book-promo-content .label {
  color: var(--orange);
}
.book-promo-content h2 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.15;
  margin: 6px 0 10px;
}
.book-promo-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
}
.book-promo-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.book-promo-cta .btn {
  background: var(--orange);
  color: var(--navy);
}
.book-promo-cta .btn:hover {
  background: #f5a060;
  color: var(--navy);
}
.book-promo-by {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   MOBILE
   =========================================== */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .nav-toggle { display: flex; }

  .hero-grid,
  .method-header,
  .thinking-grid,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 { font-size: 2.4rem; }
  section h2 { font-size: 1.8rem; }

  .three-col,
  .four-col,
  .results-grid,
  .stats-row,
  .services-grid,
  .compare-grid,
  .process-proof,
  .industry-cards,
  .timeline,
  .compare-grid-full,
  .fcmo-hero-grid,
  .short-answer-grid,
  .about-hero-grid,
  .thinking-pillars {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-dot {
    margin: 0 0 12px;
  }

  .timeline-step {
    text-align: left;
    padding: 0 0 24px;
  }

  .service-featured,
  .pricing-value-grid,
  .pricing-cta-grid,
  .pricing-tiers,
  .book-hero-grid,
  .book-chapters,
  .book-author-grid,
  .book-promo-grid {
    grid-template-columns: 1fr;
  }

  .book-hero h1 { font-size: 2.2rem; }
  .book-hero-right { order: -1; }
  .book-cover-wrap { max-width: 220px; }
  .book-promo-cover { width: 140px; justify-self: center; }
  .book-promo-cta { align-items: flex-start; }
  .book-form-card, .book-thankyou { padding: 28px 24px; }
  .book-form-card h2, .book-thankyou h2 { font-size: 1.6rem; }
  .book-author-grid { gap: 24px; }
  .book-author-photo { max-width: 160px; }
  .hero-btn-row { flex-direction: column; align-items: flex-start; }
  .book-strip-inner { grid-template-columns: 70px 1fr; gap: 16px; row-gap: 12px; }
  .book-strip-cta { grid-column: 1 / -1; }

  .hero { padding: 48px 0 32px; }
  section { padding: 48px 0; }
}
