/* Section styles — header, hero, problem, method, benefits, inside, band,
   who, results, team, pricing, services, faq, final-cta, footer.
   Tokens come from tokens.css; resets + helpers from base.css. */

/* ============================================================
   SITE HEADER — sticky, blurred cream
   ============================================================ */
.site-header {
  position: sticky; top: 0;
  background: rgba(239, 229, 210, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 14px;
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.site-nav a:hover { color: var(--orange); }
.header-cta .btn { padding: 10px 20px; font-size: 13px; }

.header-brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  white-space: nowrap;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.header-brand-tgm  { font-size: 28px; }
.header-brand-full { font-size: 22px; letter-spacing: -0.015em; display: none; }
@media (min-width: 1180px) {
  .header-brand-tgm  { display: none; }
  .header-brand-full { display: inline; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--green-deep);
  border-radius: 3px;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--green-deep); color: var(--cream-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero-seo { padding: 88px 0 96px; background: var(--cream); }
.hero-seo .hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-areas:
    "top    visual"
    "bottom visual";
  gap: 0 56px;
  align-items: center;
}
.hero-seo .hero-text-top    { grid-area: top; }
.hero-seo .hero-text-bottom { grid-area: bottom; }
.hero-seo .hero-visual      { grid-area: visual; }

.hero-seo h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1.0;
  color: var(--green-deep);
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}
.hero-seo .hero-subhead {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  color: var(--green);
  letter-spacing: -0.012em;
  margin: 0 0 28px;
}
.hero-seo .hero-tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  color: var(--green-deep);
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.hero-seo .hero-tagline em { font-style: italic; color: var(--orange); }
.hero-seo .hero-lede {
  font-size: 17px; line-height: 1.55;
  color: var(--gray-warm); margin: 0 0 28px; max-width: 520px;
}
.hero-seo .hero-platforms {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hero-seo .hero-platforms-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-warm); font-weight: 700;
}
.hero-seo .hero-platforms-list {
  font-size: 12px; color: var(--green-deep);
  font-weight: 700; letter-spacing: 0.05em;
}
.hero-seo .hero-ctas { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-seo .hero-trust {
  display: flex; gap: 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-warm); font-weight: 600;
  flex-wrap: wrap; list-style: none; padding: 0; margin: 0;
}
.hero-seo .hero-trust span::before { content: '· '; color: var(--orange); margin-right: 6px; }
.hero-seo .hero-trust span:first-child::before { display: none; }
.hero-seo .hero-visual { display: flex; justify-content: center; align-items: center; }

/* ============================================================
   BOOK COVER
   ============================================================ */
.book-stage { perspective: 1800px; display: flex; justify-content: center; align-items: center; padding: 8px; }
.book {
  position: relative;
  width: 320px;
  aspect-ratio: 3 / 4;
  transform: rotateY(-12deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease);
}
.book:hover { transform: rotateY(-6deg) rotateX(1deg); }
.book::before {
  content: ''; position: absolute;
  left: -10px; top: 6px; bottom: 6px; width: 14px;
  background: linear-gradient(to right, #03150C 0%, var(--green-darker) 60%, var(--green-deep) 100%);
  border-radius: 1px 0 0 1px;
  transform: translateZ(-1px);
  box-shadow: -2px 0 4px rgba(0,0,0,0.18);
}
.book::after {
  content: ''; position: absolute;
  right: -6px; top: 4px; bottom: 4px; width: 6px;
  background: repeating-linear-gradient(to bottom, var(--cream-light) 0 1px, var(--cream-warm) 1px 2px);
  border-radius: 0 2px 2px 0;
  transform: translateZ(-1px);
}
.book-cover {
  position: absolute; inset: 0;
  background: var(--green-deep);
  border-radius: 2px 4px 4px 2px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(6, 37, 24, 0.32),
    0 24px 56px rgba(6, 37, 24, 0.22);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.book-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.06) 70%, rgba(255,255,255,0.0) 100%);
  pointer-events: none;
}
.book-meta {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 32px;
}
.book-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--cream-light);
  font-size: 52px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  flex: 1;
}
.book-wordmark .line { display: block; white-space: nowrap; }
.book-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(246, 237, 218, 0.75);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 237, 218, 0.18);
  max-width: 240px;
}
.book-edition {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(246, 237, 218, 0.5);
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.book-edition .pages { color: var(--orange-bright); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--cream-light); padding: 96px 0; }
.problem-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  color: var(--green-deep);
  margin: 16px 0 24px;
  letter-spacing: -0.018em;
}
.problem-intro { font-size: 17px; line-height: 1.55; color: var(--gray-warm); margin-bottom: 28px; }
.problem-list { list-style: none; padding: 0; margin: 0; }
.problem-list li {
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.55;
  color: var(--gray-warm);
  position: relative;
}
.problem-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.problem-list li strong { color: var(--green-deep); font-weight: 700; }

.problem-text .problem-h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  line-height: 1.2; color: var(--green-deep);
  letter-spacing: -0.012em;
  margin: 24px 0 14px;
}
.problem-h3 em { font-style: italic; color: var(--orange); }
.problem-h3-lede { font-size: 15px; line-height: 1.65; color: var(--gray-warm); max-width: 620px; margin: 0; }

.problem-column { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.stat-box {
  background: var(--green-deep);
  color: var(--cream-light);
  border-radius: var(--radius-card);
  padding: 48px 36px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900; font-size: 110px;
  line-height: 1; color: var(--cream-light);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat-label { font-size: 13px; color: rgba(246, 237, 218, 0.7); line-height: 1.55; }
.stat-source { display: block; margin-top: 8px; font-size: 11px; color: rgba(246, 237, 218, 0.4); }

/* ============================================================
   METHOD
   ============================================================ */
.method-section { background: var(--green-deep); color: var(--cream-light); padding: 96px 0; }
.method-header { text-align: center; margin-bottom: 56px; }
.method-header .eyebrow { color: var(--orange-bright); display: block; margin-bottom: 16px; }
.method-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 48px;
  line-height: 1.0; color: var(--cream-light);
  margin: 0 0 12px; letter-spacing: -0.018em;
}
.method-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  color: var(--orange-bright);
  margin: 0 0 16px;
}
.method-header p {
  font-size: 16px; color: rgba(246, 237, 218, 0.7);
  line-height: 1.55; max-width: 620px; margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.step {
  padding: 32px 24px;
  border-right: 1px solid var(--line-on-dark);
  display: flex; flex-direction: column; gap: 16px;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 36px; color: var(--orange-bright);
  line-height: 1; letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 900; font-size: 18px;
  color: var(--cream-light); line-height: 1.15;
  letter-spacing: -0.01em;
}
.step-desc { font-size: 13px; color: rgba(246, 237, 218, 0.65); line-height: 1.5; }

/* ============================================================
   BAND
   ============================================================ */
.band-section { background: var(--green-darker); overflow: hidden; }
.band-image { width: 100%; height: 360px; position: relative; }
.band-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.88) contrast(1.02);
}
@media (max-width: 900px) { .band-image { height: 220px; } }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--cream); padding: 96px 0; }
.benefits-header { text-align: center; margin-bottom: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.benefits-header .eyebrow { display: block; margin-bottom: 14px; }
.benefits-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.05; color: var(--green-deep);
  letter-spacing: -0.018em;
  margin: 0 0 16px;
}
.benefits-header h2 em { font-style: italic; color: var(--orange); }
.benefits-header p {
  font-size: 16px; line-height: 1.6;
  color: var(--gray-warm);
  max-width: 640px; margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.benefit-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 30px 32px;
}
.benefit-num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 22px; color: var(--orange);
  line-height: 1; margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  color: var(--green-deep); line-height: 1.2;
  letter-spacing: -0.01em; margin: 0 0 10px;
}
.benefit-card p { font-size: 14.5px; line-height: 1.6; color: var(--gray-warm); margin: 0; }
.benefits-closer {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--green-deep);
  margin: 0;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  padding-top: 12px;
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside-section { background: var(--cream-light); padding: 96px 0; }
.inside-header { margin-bottom: 48px; max-width: 720px; }
.inside-header .eyebrow { display: block; margin-bottom: 14px; }
.inside-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.0; color: var(--green-deep);
  letter-spacing: -0.018em; margin: 0 0 12px;
}
.inside-header p { font-size: 15.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }
.inside-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.inside-card { display: flex; flex-direction: column; gap: 12px; }
.inside-thumb {
  aspect-ratio: 3 / 4;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gray-soft);
  padding: 24px;
  text-align: center;
}
.inside-meta { display: flex; align-items: baseline; gap: 10px; }
.inside-meta .num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 16px; color: var(--orange);
  line-height: 1;
}
.inside-meta h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 17px;
  color: var(--green-deep); line-height: 1.2;
  letter-spacing: -0.01em; margin: 0;
}
.inside-card p { font-size: 12.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-section { background: var(--cream); padding: 96px 0; }
.who-header { margin-bottom: 48px; }
.who-header .eyebrow { display: block; margin-bottom: 14px; }
.who-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.05; color: var(--green-deep);
  letter-spacing: -0.018em; margin: 0 0 12px; max-width: 720px;
}
.who-header p {
  font-size: 15.5px; line-height: 1.55;
  color: var(--gray-warm); max-width: 620px; margin: 0;
}
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.who-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.who-photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-warm); }
.who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92); }
.who-body { padding: 24px 26px 26px; }
.who-card .num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 20px; color: var(--orange);
  line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 12px; display: block;
}
.who-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  color: var(--green-deep); line-height: 1.15;
  letter-spacing: -0.01em; margin: 0 0 8px;
}
.who-card p { font-size: 13.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }

/* ============================================================
   RESULTS
   ============================================================ */
.results-section { background: var(--cream-light); padding: 96px 0; }
.results-header { text-align: center; margin-bottom: 56px; }
.results-header .eyebrow { display: block; margin-bottom: 14px; }
.results-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.0; color: var(--green-deep);
  letter-spacing: -0.018em; margin: 0 0 12px;
}
.results-header p {
  font-size: 15.5px; color: var(--gray-warm); line-height: 1.55;
  max-width: 580px; margin: 0 auto;
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column;
}
.testimonial-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  line-height: 1.25; color: var(--green-deep);
  letter-spacing: -0.01em; margin: 0 0 22px;
  flex: 1;
}
.testimonial-quote em { font-style: italic; color: var(--orange); }
.testimonial-attr {
  font-size: 12px; color: var(--gray-warm); line-height: 1.5;
  padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.testimonial-attr .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-warm) center/cover no-repeat;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.testimonial-attr .who { display: flex; flex-direction: column; gap: 2px; }
.testimonial-attr strong { color: var(--green-deep); font-weight: 700; }
.testimonial-attr .role { color: var(--gray-soft); font-size: 11.5px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--cream-warm); padding: 96px 0; }
.team-header { margin-bottom: 56px; max-width: 720px; }
.team-header .eyebrow { display: block; margin-bottom: 14px; }
.team-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.0; color: var(--green-deep);
  letter-spacing: -0.018em; margin: 0 0 12px;
}
.team-header p { font-size: 15.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.team-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.team-card .role-num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 22px; color: var(--orange);
  line-height: 1; letter-spacing: -0.02em;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 18px;
  color: var(--green-deep); line-height: 1.15;
  letter-spacing: -0.01em; margin: 0;
}
.team-card .role-title {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin: 0;
}
.team-card .role-desc { font-size: 12.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 96px 0; background: var(--cream); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .eyebrow { display: block; margin-bottom: 16px; }
.pricing-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 48px;
  line-height: 1.0; color: var(--green-deep);
  margin: 0 0 16px; letter-spacing: -0.018em;
}
.pricing-header p {
  font-size: 16px; color: var(--gray-warm);
  line-height: 1.55; max-width: 580px; margin: 0 auto;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--green-deep);
  color: var(--cream-light);
  border-color: var(--green-deep);
}
.price-card.featured .price-name,
.price-card.featured .price-amount { color: var(--cream-light); }
.price-card.featured .price-list li {
  color: rgba(246, 237, 218, 0.85);
  border-color: rgba(246, 237, 218, 0.12);
}
.price-card.featured .price-list li::before { color: var(--orange-bright); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--cream-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
.price-name {
  font-family: var(--font-display);
  font-weight: 900; font-size: 24px;
  color: var(--green-deep); margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 900; font-size: 64px;
  color: var(--green-deep); line-height: 1;
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.price-amount sup {
  font-size: 26px; vertical-align: super;
  line-height: 1; margin-right: 2px; font-weight: 700;
}
.price-list { list-style: none; padding: 0; margin-bottom: 32px; flex: 1; }
.price-list li {
  font-size: 13.5px; color: var(--gray-warm);
  padding: 12px 0 12px 24px; position: relative;
  border-bottom: 1px dashed var(--line);
  line-height: 1.5;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

/* ============================================================
   SERVICES — 4-card grid (3 services + 1 CTA)
   ============================================================ */
.services-section { background: var(--green-deep); color: var(--cream-light); padding: 96px 0; }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header .eyebrow { color: var(--orange-bright); display: block; margin-bottom: 14px; }
.services-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.0; color: var(--cream-light);
  letter-spacing: -0.018em; margin: 0 0 12px;
}
.services-header p {
  font-size: 15.5px; color: rgba(246,237,218,0.7); line-height: 1.55;
  max-width: 600px; margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.service-card {
  background: transparent;
  border: 1px solid rgba(246, 237, 218, 0.12);
  border-radius: var(--radius-card);
  padding: 32px 30px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: start;
  transition: border-color 200ms var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-card:hover { border-color: rgba(246, 237, 218, 0.28); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  color: var(--cream-light); line-height: 1.2;
  letter-spacing: -0.01em; margin: 0; grid-column: 1;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 22px; color: var(--orange-bright);
  line-height: 1; letter-spacing: -0.01em;
  grid-column: 2; grid-row: 1;
  white-space: nowrap;
}
.service-card p {
  font-size: 13.5px;
  color: rgba(246, 237, 218, 0.7);
  line-height: 1.55; margin: 0;
  grid-column: 1 / -1;
}
.service-card-cta {
  background: rgba(216, 106, 40, 0.08);
  border-color: rgba(216, 106, 40, 0.3);
}
.service-card-cta:hover {
  background: rgba(216, 106, 40, 0.14);
  border-color: var(--orange-bright);
}
.service-card-cta h3 { color: var(--orange-bright); }
.services-note {
  text-align: center; font-size: 12.5px;
  color: rgba(246, 237, 218, 0.55);
  line-height: 1.55; letter-spacing: 0.02em;
  max-width: 720px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 237, 218, 0.1);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream-light); padding: 96px 0; }
.faq-header { margin-bottom: 48px; max-width: 720px; }
.faq-header h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 44px;
  line-height: 1.0; color: var(--green-deep);
  letter-spacing: -0.018em; margin: 0 0 12px;
}
.faq-header p { font-size: 15.5px; line-height: 1.55; color: var(--gray-warm); margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  line-height: 1.25; color: var(--green-deep);
  letter-spacing: -0.012em;
  transition: color 200ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px;
  color: var(--green-deep); line-height: 1;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--cream-light);
  border-color: var(--orange);
}
.faq-body {
  padding: 0 60px 28px 0;
  font-size: 15px; line-height: 1.65;
  color: var(--gray-warm);
  max-width: 800px;
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin: 0; }
.faq-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}
.faq-body a:hover { color: var(--orange); text-decoration-color: var(--orange); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--cream-warm); padding: 96px 0 88px; text-align: center; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 52px;
  line-height: 1.02; color: var(--green-deep);
  letter-spacing: -0.022em;
  margin: 0 auto 18px; max-width: 800px;
}
.final-cta h2 em { font-style: italic; color: var(--orange); }
.final-cta p {
  font-size: 17px; line-height: 1.55;
  color: var(--gray-warm); max-width: 600px;
  margin: 0 auto 32px;
}
.final-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-darker);
  color: rgba(246, 237, 218, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(246, 237, 218, 0.1);
}
.footer-brand .wordmark { color: var(--cream-light); font-size: 48px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.55; max-width: 320px; color: rgba(246, 237, 218, 0.6); }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-light);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { font-size: 13px; padding: 6px 0; }
.site-footer ul li a {
  color: rgba(246, 237, 218, 0.6);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.site-footer ul li a:hover { color: var(--orange-bright); }
.footer-resources ul { columns: 2; column-gap: 24px; }
.footer-resources ul li { break-inside: avoid; }

.footer-meta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(246, 237, 218, 0.1);
}
.footer-popular p,
.footer-grab-official p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(246, 237, 218, 0.5);
  margin: 0;
}
.footer-grab-official a {
  color: var(--orange-bright);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.footer-grab-official a:hover { color: var(--cream-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(246, 237, 218, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .header-cta .btn { padding: 9px 14px; font-size: 12.5px; }
}

@media (max-width: 900px) {
  .hero-seo .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "visual" "bottom";
    gap: 32px 0;
  }
  .hero-seo h1 { font-size: 40px; }
  .hero-seo .hero-tagline { font-size: 22px; }
  .book { width: 240px; }
  .book-wordmark { font-size: 38px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-text h2, .pricing-header h2, .method-header h2,
  .benefits-header h2, .inside-header h2, .who-header h2,
  .results-header h2, .team-header h2, .services-header h2, .faq-header h2 { font-size: 30px; }
  .problem-column { position: static; }
  .stat-box { padding: 36px 28px; }
  .stat-number { font-size: 80px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-on-dark); }
  .step:last-child { border-bottom: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .inside-section { padding: 64px 0; }
  .who-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 32px; }
  .faq-item summary { font-size: 17px; }
  .hero-seo,
  .problem, .method-section, .benefits-section, .inside-section,
  .who-section, .results-section, .team-section, .services-section,
  .pricing-section, .faq-section, .final-cta { padding: 64px 0; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-resources { grid-column: span 2; }
  .footer-resources ul { columns: 2; }
  .footer-meta { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 16px;
  }
  .site-nav.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-nav.open a:last-child { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-resources ul { columns: 1; }
}
