/* ============================================================
   SITE HEADER
   ============================================================ */
.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: 15.5px; 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: 14px; }

.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: 38px; }
.header-brand-full { font-size: 22px; letter-spacing: -0.015em; display: none; }
@media (min-width: 1180px) {
  .header-brand-tgm  { display: inline; font-size: 42px; }
  .header-brand-full { display: none; }
}

.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); }

/* ============================================================
   EYEBROW MARKER
   ============================================================ */
.eyebrow-marker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange);
  position: relative; padding-left: 22px;
}
.eyebrow-marker::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 2px; background: var(--orange);
}
.eyebrow-marker.eyebrow-on-dark { color: var(--orange-bright); }
.eyebrow-marker.eyebrow-on-dark::before { background: var(--orange-bright); }

/* ============================================================
   HERO
   ============================================================ */
.hero-seo { padding: 72px 0 88px; background: var(--cream); }
.hero-seo .hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text-stack { display: flex; flex-direction: column; }
.hero-text-top { margin-bottom: 28px; }

.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;
}
.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 24px; max-width: 520px;
}
.hero-seo .hero-ctas { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }

.hero-seo .hero-trust {
  display: flex; gap: 14px;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-warm); font-weight: 600;
  flex-wrap: wrap; list-style: none; padding: 0;
  margin: 0 0 24px; align-items: center;
}
.hero-seo .hero-trust span { display: inline-flex; align-items: center; }
.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-trust .trust-instant strong {
  font-family: var(--font-body); font-weight: 700;
  color: var(--orange); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(196, 95, 31, 0.1);
  padding: 6px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 95, 31, 0.3);
}

.hero-seo .hero-platforms {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; padding-top: 22px;
  border-top: 1px solid var(--line); margin: 0;
}
.hero-seo .hero-platforms-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gray-warm);
  font-weight: 700; flex-shrink: 0;
}
.hero-seo .hero-platforms-note {
  display: block;
  width: 100%;
  font-size: 11px;
  color: var(--gray-soft);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.platform-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px 7px 12px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  color: var(--green-deep); letter-spacing: 0.02em;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), transform 200ms var(--ease);
}
.platform-pill:hover {
  background: var(--cream-warm);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.platform-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--platform-color, var(--orange));
  flex-shrink: 0;
}
.platform-name { white-space: nowrap; }

.hero-seo .hero-visual {
  display: flex; justify-content: center; align-items: center;
}

/* ============================================================
   BOOK — REAL 3D (perspective + rotateY)
   ============================================================ */
.book-stage {
  perspective: 2200px;
  perspective-origin: 50% 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  animation: book-float 5s ease-in-out infinite;
}
/* Gentle floating motion (up and down) */
@keyframes book-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .book-stage { animation: none; }
}

.book {
  position: relative;
  width: 350px;
  aspect-ratio: 5 / 7;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(4deg);
  transition: transform 500ms var(--ease);
  /* Soft green-tinted projected shadow on the ground */
  filter: drop-shadow(0 28px 36px rgba(9, 56, 34, 0.32));
}
.book:hover {
  transform: rotateY(-14deg) rotateX(2deg);
}

/* Page block — visible as a thin slab behind the cover (right side) */
.book::before {
  content: '';
  position: absolute;
  top: 4px; right: -8px; bottom: 4px;
  width: 12px;
  background: linear-gradient(
    to right,
    var(--cream-warm) 0%,
    var(--cream-light) 35%,
    var(--cream-warm) 70%,
    var(--cream-light) 100%
  );
  background-image:
    linear-gradient(to right, var(--cream-warm), var(--cream-light)),
    repeating-linear-gradient(
      to bottom,
      rgba(11, 53, 33, 0.12) 0,
      rgba(11, 53, 33, 0.12) 1px,
      transparent 1px,
      transparent 3px
    );
  background-blend-mode: multiply;
  border-radius: 0 2px 2px 0;
  transform: translateZ(-10px) rotateY(0deg);
  transform-origin: left center;
}

/* Page block top edge — removed: over a photo background the top strip
   reads as a floating sliver / perspective error. The right-side page
   block (.book::before) stays, which correctly shows the page thickness. */
.book::after { display: none; }

.book-cover {
  position: relative;
  width: 100%; height: 100%;
  background: var(--green-deep);
  border-radius: 3px 6px 6px 3px;
  padding: 40px 36px;
  display: flex; flex-direction: column;
  overflow: hidden;
  /* Inner spine shadow (left edge of the cover) — visual "binding" */
  box-shadow:
    inset 14px 0 24px -10px rgba(0, 0, 0, 0.55),
    inset 1px 0 0 rgba(0, 0, 0, 0.4);
}

/* Inset orange frame */
.book-cover::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 106, 40, 0.32);
  border-radius: 2px;
  pointer-events: none;
}

/* Subtle diagonal light wash */
.book-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}

.book-meta {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 32px;
  position: relative; z-index: 2;
}

.book-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--cream-light);
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: -0.022em;
  position: relative; z-index: 2;
}
.book-title .line { display: block; }
.book-title .dot { background: var(--orange-bright); }

.book-divider {
  width: 40px; height: 2px;
  background: var(--orange-bright);
  margin: 22px 0 18px;
  position: relative; z-index: 2;
}

.book-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px; line-height: 1.4;
  color: rgba(246, 237, 218, 0.78);
  margin: 0 0 auto;
  max-width: 220px;
  position: relative; z-index: 2;
}

.book-region {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(246, 237, 218, 0.5);
  margin-top: 24px;
  position: relative; z-index: 2;
}

/* ============================================================
   PROBLEM — FEAR-CAPTURE bullet cards
   ============================================================ */
.problem { background: var(--cream-light); padding: 96px 0; }
.problem-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  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: 18px 0 24px;
  letter-spacing: -0.018em;
}
.problem-intro {
  font-size: 17px; line-height: 1.55;
  color: var(--gray-warm); margin-bottom: 32px;
}

/* Each bullet is now a HIGH-IMPACT card */
.problem-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 22px 26px 22px 32px;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background-color 250ms var(--ease);
}
.problem-item::before {
  content: '!';
  position: absolute;
  left: -14px;
  top: 22px;
  width: 24px; height: 24px;
  background: var(--orange);
  color: var(--cream-light);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.problem-item:hover {
  transform: translateX(4px);
  border-left-color: var(--orange-bright);
  background: var(--cream-warm);
}
.problem-headline {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  line-height: 1.15;
  color: var(--orange);
  letter-spacing: -0.014em;
  margin-bottom: 8px;
}
.problem-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-warm);
  margin: 0;
}
.problem-body a.seo-inline {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
  font-weight: 500;
}
.problem-body a.seo-inline:hover { color: var(--orange); text-decoration-color: var(--orange); }

.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: 40px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 96px; 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);
}

.problem-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.problem-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.02);
}
.problem-photo-caption {
  display: block;
  padding: 12px 16px;
  background: var(--cream-warm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--green-deep);
  line-height: 1.4;
}

/* Pullquote */
.problem-pullquote {
  max-width: 760px;
  margin: 64px auto 0;
  padding: 48px 32px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  text-align: center;
}
.problem-pullquote-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  line-height: 1.15;
  color: var(--green-deep);
  letter-spacing: -0.016em;
  margin: 0 0 20px;
}
.problem-pullquote-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-warm);
  max-width: 580px;
  margin: 0 auto;
}
.problem-pullquote-body strong {
  color: var(--green-deep);
  font-weight: 700;
}

/* ============================================================
   METHOD — G·R·A·B flow at top, step cards below
   ============================================================ */
.method-section { background: var(--green-deep); color: var(--cream-light); padding: 96px 0; }
.method-header { text-align: center; margin-bottom: 56px; }
.method-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.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 14px; letter-spacing: -0.018em;
}
.method-header h2 em { font-style: italic; color: var(--orange-bright); }
.method-subhead {
  font-family: var(--font-display);
  font-style: italic; font-weight: 900;
  font-size: 22px;
  color: var(--orange-bright);
  margin: 0 0 18px;
}
.method-header p {
  font-size: 15.5px; color: rgba(246, 237, 218, 0.7);
  line-height: 1.6; max-width: 680px; margin: 0 auto;
}

/* The visual GRAB flow — one line, big letters, arrows between */
.grab-flow {
  text-align: center;
  margin: 0 0 48px;
  padding: 32px 24px;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.grab-flow-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 237, 218, 0.5);
  display: block;
  margin-bottom: 18px;
}
.grab-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.grab-flow-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 88px;
  line-height: 0.9;
  color: var(--orange-bright);
  letter-spacing: -0.04em;
}
.grab-flow-arrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--cream-light);
  line-height: 1;
  opacity: 0.7;
}

/* The 4 step cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: rgba(246, 237, 218, 0.03);
  border: 1px solid rgba(246, 237, 218, 0.1);
  border-radius: var(--radius-card);
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}
.step:hover {
  background: rgba(246, 237, 218, 0.06);
  border-color: rgba(216, 106, 40, 0.3);
}
.step-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 237, 218, 0.5);
}
.step-letter-small {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 52px;
  color: var(--orange-bright);
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: block;
  margin: -8px 0 -4px;
}
.step-content { display: flex; flex-direction: column; gap: 8px; }
.step-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 19px; color: var(--cream-light);
  line-height: 1.15; letter-spacing: -0.012em;
}
.step-desc {
  font-size: 13px;
  color: rgba(246, 237, 218, 0.65);
  line-height: 1.55;
}

/* ============================================================
   BEYOND GRAB — Step 6 / Direct Delivery
   ============================================================ */
.beyond-section {
  background: var(--cream);
  padding: 96px 0;
  position: relative;
}
.beyond-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.beyond-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.beyond-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;
}
.beyond-header h2 em { font-style: italic; color: var(--orange); }
.beyond-header p {
  font-size: 16px; line-height: 1.65;
  color: var(--gray-warm); margin: 0;
}

.beyond-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.flow-step {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.flow-step:hover { border-color: var(--orange); transform: translateY(-3px); }
.flow-step-final {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.flow-step-final:hover { border-color: var(--orange-bright); }
.flow-num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 20px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.flow-step-final .flow-num { color: var(--orange-bright); }
.flow-step h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0;
}
.flow-step-final h3 { color: var(--cream-light); }
.flow-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-warm);
  margin: 0;
}
.flow-step-final p { color: rgba(246, 237, 218, 0.85); }
.flow-step-final p strong { color: var(--orange-bright); font-weight: 700; }
.flow-arrow {
  align-self: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}

/* ============================================================
   BY THE NUMBERS
   ============================================================ */
.numbers-section {
  background: var(--green-darker);
  color: var(--cream-light);
  padding: 96px 0;
}
.numbers-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.numbers-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.numbers-header h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05;
  color: var(--cream-light);
  letter-spacing: -0.018em;
  margin: 0 0 16px;
}
.numbers-header p {
  font-size: 15.5px; line-height: 1.6;
  color: rgba(246, 237, 218, 0.7);
  margin: 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.number-card {
  border: 1px solid rgba(246, 237, 218, 0.12);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.number-card:hover {
  border-color: rgba(216, 106, 40, 0.4);
  background: rgba(216, 106, 40, 0.04);
}
.number-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 64px;
  line-height: 0.9;
  color: var(--orange-bright);
  letter-spacing: -0.04em;
}
.number-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.25;
  color: var(--cream-light);
  letter-spacing: -0.01em;
}
.number-sub {
  font-size: 12.5px;
  color: rgba(246, 237, 218, 0.6);
  line-height: 1.5;
}
.numbers-source {
  font-size: 12px;
  color: rgba(246, 237, 218, 0.4);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ============================================================
   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: 56px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.benefits-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.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 {
  position: relative;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 22px;
  align-items: start;
  overflow: hidden;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background-color 200ms var(--ease);
}
.benefit-card:hover {
  border-color: var(--orange);
  background: var(--cream-warm);
  transform: translateY(-3px);
}

.benefit-stamp {
  position: absolute;
  top: 24px; right: 26px;
  width: 44px; height: 44px;
  z-index: 1;
  pointer-events: none;
}
.benefit-stamp-spread {
  background-image:
    linear-gradient(to right, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to right, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to right, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to right, var(--orange) 0, var(--orange) 100%);
  background-repeat: no-repeat;
  background-position: 0 0, 0 12px, 0 24px, 0 36px;
  background-size: 18px 2px, 28px 2px, 38px 2px, 44px 2px;
}
.benefit-stamp-grid {
  background-image: radial-gradient(circle, var(--orange) 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  background-position: 0 0;
}
.benefit-stamp-climb {
  background-image:
    linear-gradient(to top, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to top, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to top, var(--orange) 0, var(--orange) 100%),
    linear-gradient(to top, var(--orange) 0, var(--orange) 100%);
  background-repeat: no-repeat;
  background-position: 0 100%, 12px 100%, 24px 100%, 36px 100%;
  background-size: 6px 16px, 6px 26px, 6px 34px, 6px 44px;
}

.benefit-num-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 96px;
  color: var(--orange);
  line-height: 0.82;
  letter-spacing: -0.04em;
  display: block;
  grid-row: 1 / span 2;
  position: relative; z-index: 2;
}
.benefit-content {
  display: flex; flex-direction: column;
  gap: 10px; padding-top: 8px;
  position: relative; z-index: 2;
  padding-right: 56px;
}
.benefit-rule {
  display: block;
  width: 32px; height: 2px;
  background: var(--orange);
  margin-bottom: 4px;
}
.benefit-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 21px;
  color: var(--green-deep); line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0;
}
.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 auto;
  max-width: 720px;
  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-marker { margin-bottom: 18px; }
.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(5, 1fr); gap: 16px;
}
.inside-card {
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 200ms var(--ease);
}
.inside-card:hover { transform: translateY(-3px); }
.inside-card:hover .inside-thumb { border-color: var(--orange); }
.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: 12px; color: var(--gray-soft);
  padding: 18px; text-align: center;
  transition: border-color 200ms var(--ease);
}
.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: 24px; color: var(--orange);
  line-height: 1; letter-spacing: -0.02em;
}
.inside-meta h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; 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-marker { margin-bottom: 18px; }
.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;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.who-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.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);
  transition: transform 400ms var(--ease);
}
.who-card:hover .who-photo img { transform: scale(1.04); }
.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;
}

/* ============================================================
   CASE STUDIES (Testimonials styling kept)
   ============================================================ */
.results-section { background: var(--cream-light); padding: 96px 0; }
.results-header { text-align: center; margin-bottom: 56px; }
.results-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.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;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.testimonial:hover { border-color: var(--orange); transform: translateY(-3px); }
.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 with portraits
   ============================================================ */
.team-section { background: var(--cream-warm); padding: 96px 0; }
.team-header { margin-bottom: 56px; max-width: 720px; }
.team-header .eyebrow-marker { margin-bottom: 18px; }
.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: 0; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.team-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.team-portrait {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-warm);
}
.team-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92);
  transition: transform 400ms var(--ease);
}
.team-card:hover .team-portrait img { transform: scale(1.04); }
.team-card .role-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 18px; color: var(--orange);
  line-height: 1; letter-spacing: -0.02em;
  padding: 16px 18px 0;
}
.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: 4px 0 0; padding: 0 18px;
}
.team-card .role-title {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin: 6px 0 0;
  padding: 0 18px;
}
.team-card .role-desc {
  font-size: 12.5px; line-height: 1.55;
  color: var(--gray-warm); margin: 10px 0 0;
  padding: 0 18px 20px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 96px 0; background: var(--cream); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.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;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.price-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.price-card.featured {
  background: var(--green-deep);
  color: var(--cream-light);
  border-color: var(--green-deep);
}
.price-card.featured:hover { border-color: var(--orange-bright); }
.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
   ============================================================ */
.services-section { background: var(--green-deep); color: var(--cream-light); padding: 96px 0; }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header .eyebrow-marker { margin-bottom: 18px; justify-content: center; }
.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: flex; flex-direction: column; gap: 14px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background-color 200ms var(--ease);
  text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: rgba(246, 237, 218, 0.32);
  background: rgba(246, 237, 218, 0.03);
  transform: translateY(-3px);
}
.service-card-head {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.service-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 21px; color: var(--cream-light);
  line-height: 1.2; letter-spacing: -0.01em;
  margin: 0; flex: 1 1 auto; min-width: 0;
}
.service-price {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 20px; color: var(--orange-bright);
  line-height: 1; letter-spacing: -0.01em; flex-shrink: 0;
}
.service-card p {
  font-size: 13.5px;
  color: rgba(246, 237, 218, 0.7);
  line-height: 1.6; margin: 0;
}
.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); }
.faq-body strong { color: var(--green-deep); font-weight: 700; }

/* ============================================================
   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: 22px; }
  .site-nav a { font-size: 14.5px; }
  .header-cta .btn { padding: 9px 14px; font-size: 12.5px; }
  .grab-flow-letter { font-size: 72px; }
  .step-letter-small { font-size: 44px; }
}

@media (max-width: 900px) {
  /* HERO mobile re-order */
  .hero-seo { padding: 32px 0 56px; }
  .hero-seo .hero-inner {
    display: flex; flex-direction: column; gap: 24px;
  }
  .hero-text-stack { display: contents; }
  .hero-text-top    { order: 1; margin-bottom: 0; }
  .hero-visual      { order: 2; }
  .hero-text-bottom { order: 3; }

  .hero-seo h1 { font-size: 38px; margin-bottom: 10px; }
  .hero-seo .hero-subhead { font-size: 18px; margin-bottom: 0; }
  .hero-seo .hero-tagline { font-size: 22px; margin-bottom: 18px; }
  .hero-seo .hero-lede { font-size: 16px; margin-bottom: 20px; }
  .hero-seo .hero-ctas { margin-bottom: 18px; }
  .hero-seo .hero-trust { gap: 10px; font-size: 10px; }
  .hero-seo .hero-platforms { padding-top: 18px; gap: 12px; }
  .platform-pills { gap: 8px; }
  .platform-pill { padding: 6px 11px 6px 10px; font-size: 11px; }

  .book { width: 240px; }
  .book-cover { padding: 32px 28px; }
  .book-title { font-size: 44px; }

  .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, .beyond-header h2, .numbers-header h2 { font-size: 30px; }
  .problem-column { position: static; }
  .stat-number { font-size: 72px; }
  .problem-pullquote { padding: 36px 22px; margin-top: 40px; }
  .problem-pullquote-title { font-size: 24px; }
  .problem-pullquote-body { font-size: 15.5px; }
  .problem-headline { font-size: 20px; }
  .problem-body { font-size: 14px; }

  .grab-flow-row { gap: 10px; }
  .grab-flow-letter { font-size: 56px; }
  .grab-flow-arrow { font-size: 26px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-letter-small { font-size: 48px; }

  .beyond-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-big { font-size: 52px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 28px 26px; gap: 4px 18px; }
  .benefit-num-big { font-size: 76px; }
  .benefit-stamp { top: 20px; right: 22px; }

  .inside-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 19px; }
  .service-price { font-size: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 32px; }
  .faq-item summary { font-size: 17px; }
  .faq-body { padding-right: 20px; }

  .problem, .method-section, .benefits-section, .inside-section,
  .who-section, .results-section, .team-section, .services-section,
  .pricing-section, .faq-section, .final-cta, .beyond-section,
  .numbers-section { 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-header-inner { height: 60px; }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: block; margin-left: auto; margin-right: 10px; }
  .header-cta .btn,
  .nav-toggle {
    height: 38px;
    padding: 0 16px;
    border-radius: var(--radius-btn);
    font-size: 12.5px;
    display: inline-flex; align-items: center; justify-content: center;
    white-space: nowrap;
  }

  .inside-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }

  .grab-flow-letter { font-size: 44px; }
  .grab-flow-arrow { font-size: 20px; }
  .grab-flow { padding: 24px 16px; }

  .hero-seo .hero-platforms { flex-direction: column; align-items: flex-start; }
  .hero-seo .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-resources ul { columns: 1; }
  .header-cta .btn, .nav-toggle { height: 36px; padding: 0 13px; font-size: 12px; }
}

/* ============================================================
   ARTICLE / LEGAL / GENERIC PAGE COMPONENTS
   ============================================================ */
.breadcrumb {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--gray-warm); margin-bottom: 18px;
}
.breadcrumb a { color: var(--green-deep); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-soft); }

.page-hero {
  background: var(--cream);
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--green-deep);
  margin: 0 0 18px; max-width: 820px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); font-weight: 900; }
.page-hero .lede {
  font-size: 18px; line-height: 1.6;
  color: var(--gray-warm); max-width: 680px;
  margin: 0 0 24px;
}
.page-hero .meta-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: var(--gray-soft);
  letter-spacing: 0.04em; margin-top: 12px;
}
.page-hero .meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.page-hero .meta-row span + span::before { content: '·'; margin-right: 16px; color: var(--orange); }
@media (max-width: 900px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero .lede { font-size: 16px; }
}

.article-body { background: var(--cream-light); padding: 64px 0 80px; }
.article-body .container { max-width: 760px; }
.article-body p {
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.75; color: var(--ink); margin: 0 0 20px;
}
.article-body h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--green-deep); margin: 48px 0 18px;
}
.article-body h2 em { font-style: italic; color: var(--orange); font-weight: 900; }
.article-body h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; line-height: 1.2;
  color: var(--green-deep); margin: 36px 0 14px;
  letter-spacing: -0.012em;
}
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 24px; color: var(--ink); }
.article-body ul { list-style: none; padding-left: 4px; }
.article-body ul li, .article-body ol li {
  font-size: 16px; line-height: 1.7; margin-bottom: 10px;
}
.article-body strong { color: var(--green-deep); font-weight: 700; }
.article-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--orange); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  background: var(--cream-warm);
  padding: 18px 22px; margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic; font-size: 18px;
  line-height: 1.55; color: var(--green-deep);
}
.article-body blockquote p {
  font-size: inherit; line-height: inherit;
  color: inherit; margin: 0; font-family: inherit;
}

.callout {
  border-left: 3px solid var(--orange);
  background: var(--cream-warm);
  padding: 22px 24px; margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.callout .label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px; display: block;
}
.callout p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--green-deep); }

.inline-cta {
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 4px; padding: 26px 28px;
  margin: 40px 0;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 18px;
  justify-content: space-between;
  transition: border-color 200ms var(--ease);
}
.inline-cta:hover { border-color: var(--orange); }
.inline-cta-text { flex: 1 1 320px; }
.inline-cta-text strong {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px; color: var(--green-deep); margin-bottom: 4px;
}
.inline-cta-text p { margin: 0; font-size: 14px; color: var(--gray-warm); line-height: 1.55; }

.related-articles { background: var(--cream); padding: 64px 0; }
.related-articles .container { max-width: 1180px; }
.related-articles h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: var(--green-deep); margin: 0 0 28px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--cream-light);
  padding: 24px 22px; border-radius: 4px;
  text-decoration: none;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.related-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.related-card .eyebrow { display: block; margin-bottom: 10px; font-size: 11px; }
.related-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; line-height: 1.2;
  color: var(--green-deep); margin: 0 0 10px;
}
.related-card p { font-size: 13.5px; color: var(--gray-warm); line-height: 1.55; margin: 0; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

.article-end-cta {
  background: var(--cream-warm);
  padding: 72px 0; text-align: center;
}
.article-end-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--green-deep);
  margin: 0 auto 14px; max-width: 680px;
}
.article-end-cta h2 em { font-style: italic; color: var(--orange); font-weight: 900; }
.article-end-cta p {
  font-size: 15.5px; color: var(--gray-warm);
  max-width: 580px; margin: 0 auto 24px; line-height: 1.6;
}
.article-end-cta .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-section { background: var(--cream-light); padding: 80px 0; }
.resources-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.resource-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 4px; padding: 26px 24px;
  text-decoration: none;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.resource-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.resource-card .num {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  color: var(--orange); font-size: 16px;
  margin-bottom: 8px; display: block;
}
.resource-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 19px; line-height: 1.2;
  color: var(--green-deep); margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.resource-card p {
  font-size: 13.5px; color: var(--gray-warm);
  line-height: 1.55; margin: 0 0 18px; flex: 1;
}
.resource-card .read-more {
  font-size: 12.5px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.04em;
}
@media (max-width: 1000px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .resources-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-paths { background: var(--cream-light); padding: 80px 0; }
.contact-paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-path {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.contact-path:hover { border-color: var(--orange); transform: translateY(-3px); }
.contact-path .eyebrow { margin-bottom: 14px; }
.contact-path h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; line-height: 1.15;
  color: var(--green-deep); margin: 0 0 14px;
  letter-spacing: -0.014em;
}
.contact-path p {
  font-size: 15px; color: var(--gray-warm);
  line-height: 1.65; margin: 0 0 24px; flex: 1;
}
.contact-path .btn { align-self: flex-start; }
@media (max-width: 760px) { .contact-paths-grid { grid-template-columns: 1fr; } }

.contact-checklist { background: var(--cream); padding: 72px 0; }
.contact-checklist .container { max-width: 760px; }
.contact-checklist h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 30px; color: var(--green-deep);
  margin: 0 0 22px; letter-spacing: -0.016em;
}
.contact-checklist ul { list-style: none; padding: 0; margin: 0; }
.contact-checklist li {
  font-size: 16px; line-height: 1.6; color: var(--ink);
  padding: 12px 0 12px 26px; position: relative;
  border-bottom: 1px solid var(--line);
}
.contact-checklist li:last-child { border-bottom: none; }
.contact-checklist li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.contact-checklist li strong { color: var(--green-deep); font-weight: 700; }

.contact-geo { background: var(--cream-warm); padding: 72px 0; }
.contact-geo .container { max-width: 760px; }
.contact-geo h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: var(--green-deep);
  margin: 0 0 18px; letter-spacing: -0.014em;
}
.contact-geo p {
  font-size: 16px; color: var(--green-deep);
  line-height: 1.7; margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-team { background: var(--cream-light); padding: 80px 0; }
.about-team-header { margin-bottom: 48px; max-width: 720px; }
.about-team-header .eyebrow { display: block; margin-bottom: 14px; }
.about-team-header h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; color: var(--green-deep);
  margin: 0 0 16px; letter-spacing: -0.018em;
}
.about-team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.about-team-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.about-team-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.about-team-card .portrait { aspect-ratio: 1 / 1; background: var(--cream-warm); overflow: hidden; }
.about-team-card .portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92);
}
.about-team-card .body { padding: 22px 20px 24px; }
.about-team-card .role-num {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  color: var(--orange); font-size: 14px;
  display: block; margin-bottom: 6px;
}
.about-team-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px; color: var(--green-deep);
  margin: 0 0 4px; letter-spacing: -0.012em;
}
.about-team-card .role-title {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 12px;
}
.about-team-card .bio {
  font-size: 13px; line-height: 1.55;
  color: var(--gray-warm); margin: 0;
}
@media (max-width: 1000px) { .about-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .about-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .about-team-grid { grid-template-columns: 1fr; } }

.about-story { background: var(--cream); padding: 80px 0; }
.about-story .container { max-width: 760px; }
.about-story h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--green-deep);
  margin: 0 0 22px; letter-spacing: -0.016em;
}
.about-story h2 em { font-style: italic; color: var(--orange); }
.about-story h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--green-deep);
  margin: 36px 0 12px;
}
.about-story p {
  font-size: 16px; line-height: 1.75;
  color: var(--ink); margin: 0 0 18px;
}
.about-company { background: var(--cream-warm); padding: 56px 0; }
.about-company .container { max-width: 760px; }
.about-company p {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; line-height: 1.5;
  color: var(--green-deep); margin: 0 0 14px;
}

/* ============================================================
   SERVICES PAGE (extended)
   ============================================================ */
.services-detail { background: var(--cream-light); padding: 80px 0; }
.service-detail-item {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 48px; padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail-item:first-child { padding-top: 0; }
.service-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.service-detail-item .left .eyebrow { display: block; margin-bottom: 12px; }
.service-detail-item h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 30px; line-height: 1.1;
  color: var(--green-deep); margin: 0 0 14px;
  letter-spacing: -0.016em;
}
.service-detail-item .from {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 22px; color: var(--orange);
  margin: 0 0 8px;
}
.service-detail-item .right p {
  font-size: 15.5px; line-height: 1.7;
  color: var(--ink); margin: 0 0 16px;
}
.service-detail-item .right ul { list-style: none; padding: 0; margin: 0 0 20px; }
.service-detail-item .right ul li {
  font-size: 14.5px; color: var(--ink); line-height: 1.55;
  padding: 10px 0 10px 22px; position: relative;
  border-bottom: 1px solid var(--line);
}
.service-detail-item .right ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.service-detail-item .right ul li:last-child { border-bottom: none; }
.service-detail-item .right .turnaround {
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-soft);
}
@media (max-width: 900px) {
  .service-detail-item { grid-template-columns: 1fr; gap: 22px; padding: 40px 0; }
}

.services-includes { background: var(--cream); padding: 72px 0; }
.services-includes .container { max-width: 880px; }
.services-includes h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 30px; color: var(--green-deep);
  margin: 0 0 28px; letter-spacing: -0.016em;
}
.services-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 26px;
}
.services-includes-grid div {
  font-size: 14.5px; color: var(--ink);
  padding: 12px 0 12px 22px; position: relative;
  line-height: 1.55; border-top: 1px solid var(--line);
}
.services-includes-grid div::before {
  content: '★'; position: absolute; left: 0;
  color: var(--orange); font-size: 12px;
}
@media (max-width: 760px) { .services-includes-grid { grid-template-columns: 1fr; } }

.services-howitworks { background: var(--green-deep); color: var(--cream-light); padding: 72px 0; }
.services-howitworks h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--cream-light);
  margin: 0 0 36px; text-align: center;
  letter-spacing: -0.016em;
}
.services-howitworks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.howitworks-step .num {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  color: var(--orange-bright); font-size: 36px;
  display: block; margin-bottom: 12px;
}
.howitworks-step h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--cream-light); margin: 0 0 10px;
}
.howitworks-step p {
  font-size: 14px; line-height: 1.6;
  color: rgba(246, 237, 218, 0.7); margin: 0;
}
@media (max-width: 760px) { .services-howitworks-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body { background: var(--cream-light); padding: 64px 0 88px; }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; color: var(--green-deep);
  margin: 40px 0 14px; letter-spacing: -0.014em;
}
.legal-body h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; color: var(--green-deep);
  margin: 28px 0 10px;
}
.legal-body p, .legal-body li {
  font-size: 15.5px; line-height: 1.7; color: var(--ink);
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a {
  color: var(--green-deep); text-decoration: underline;
  text-decoration-color: var(--orange); text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--orange); }
.legal-body .updated {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--gray-soft); margin-bottom: 32px; display: inline-block;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound { background: var(--cream); padding: 120px 0; text-align: center; }
.notfound h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 88px; line-height: 1; color: var(--green-deep);
  margin: 0 0 16px; letter-spacing: -0.022em;
}
.notfound p {
  font-size: 17px; color: var(--gray-warm);
  max-width: 480px; margin: 0 auto 32px;
}
.notfound .links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   RESOURCES CTA SECTION
   ============================================================ */
.resources-cta { background: var(--cream-warm); padding: 72px 0; text-align: center; }
.resources-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--green-deep);
  margin: 0 auto 14px; max-width: 620px;
  letter-spacing: -0.016em;
}
.resources-cta h2 em { font-style: italic; color: var(--orange); }
.resources-cta p {
  font-size: 15.5px; color: var(--gray-warm);
  max-width: 540px; margin: 0 auto 22px; line-height: 1.6;
}

/* ============================================================
   MINI CTA INLINE STRIPS
   ============================================================ */
.mini-cta {
  background: var(--cream-warm);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mini-cta-alt {
  background: var(--cream-light);
}
.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mini-cta-text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--green-deep);
  margin: 0;
  flex: 1 1 auto;
  min-width: 280px;
}
.mini-cta-text strong {
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
}
.mini-cta .btn {
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .mini-cta { padding: 24px 0; }
  .mini-cta-text { font-size: 17px; }
  .mini-cta .btn { width: 100%; justify-content: center; }
}

.footer-operator {
  font-size: 11.5px !important;
  color: rgba(246, 237, 218, 0.45) !important;
  margin-top: 14px !important;
}

/* ============================================================
   MOBILE DRAWER (slides in from the right)
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 37, 24, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease);
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
  width: min(82vw, 320px);
  background: var(--cream-light);
  box-shadow: -18px 0 40px rgba(6, 37, 24, 0.22);
  display: flex; flex-direction: column;
  padding: 20px 24px 28px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-overflow-scrolling: touch; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.drawer-brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px; color: var(--green); letter-spacing: -0.02em;
}
.drawer-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--green-deep);
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-btn); transition: background-color 180ms var(--ease);
}
.drawer-close:hover { background: var(--cream-warm); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  padding: 15px 2px; border-bottom: 1px solid var(--line);
  font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--green-deep); text-decoration: none;
  opacity: 0; transform: translateX(16px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), color 160ms var(--ease);
}
.drawer-nav a:hover { color: var(--orange); }
.drawer.open .drawer-nav a { opacity: 1; transform: translateX(0); }
.drawer.open .drawer-nav a:nth-child(1) { transition-delay: 120ms; }
.drawer.open .drawer-nav a:nth-child(2) { transition-delay: 160ms; }
.drawer.open .drawer-nav a:nth-child(3) { transition-delay: 200ms; }
.drawer.open .drawer-nav a:nth-child(4) { transition-delay: 240ms; }
.drawer.open .drawer-nav a:nth-child(5) { transition-delay: 280ms; }
.drawer.open .drawer-nav a:nth-child(6) { transition-delay: 320ms; }
.drawer-cta {
  margin-top: 22px; text-align: center; justify-content: center;
  opacity: 0; transform: translateX(16px);
  transition: opacity 240ms var(--ease) 360ms, transform 240ms var(--ease) 360ms;
}
.drawer.open .drawer-cta { opacity: 1; transform: translateX(0); }
body.drawer-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .drawer, .drawer-overlay, .drawer-nav a, .drawer-cta { transition: none !important; }
}

/* ============================================================
   ARTICLE TEMPLATE (resources articles) — TOC + enhanced layout
   Presentation only — wraps existing .article-body content.
   ============================================================ */
.article-layout { background: var(--cream-light); padding: 56px 0 80px; }
.article-layout .container { max-width: 1100px; }
.article-grid { display: block; }
@media (min-width: 1024px) {
  .article-grid {
    display: grid; grid-template-columns: 240px 1fr;
    gap: 56px; align-items: start;
  }
}

/* Article header (tags, meta) sits above the grid */
.article-head { max-width: 760px; margin-bottom: 8px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.article-tag {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-btn); line-height: 1; white-space: nowrap;
}
.article-tag-cat { background: rgba(216,106,40,0.14); color: var(--orange); }
.article-tag-type { background: var(--cream-warm); color: var(--gray-warm); }

/* TOC sidebar */
.article-toc { display: none; }
@media (min-width: 1024px) {
  .article-toc {
    display: block; position: sticky; top: 90px;
    align-self: start;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
}
.article-toc-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.article-toc-list { list-style: none; padding: 0; margin: 0; }
.article-toc-list li { margin-bottom: 4px; }
.article-toc-list a {
  display: block; padding: 5px 0 5px 12px;
  border-left: 2px solid transparent;
  color: var(--gray-warm); text-decoration: none;
  font-size: 13.5px; line-height: 1.45;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), padding-left 180ms var(--ease);
}
.article-toc-list a:hover { color: var(--orange); padding-left: 15px; }
.article-toc-list a.active { color: var(--green-deep); border-left-color: var(--orange); font-weight: 600; }
.article-toc-share { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); }
.article-toc-share-title {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-soft); margin-bottom: 8px;
}
.article-toc-share a {
  display: block; color: var(--gray-warm); font-size: 13px;
  text-decoration: none; padding: 4px 0; transition: color 180ms var(--ease);
}
.article-toc-share a:hover { color: var(--orange); }

/* Mobile TOC (collapsible) */
.article-toc-mobile {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 6px 18px; margin-bottom: 28px;
}
@media (min-width: 1024px) { .article-toc-mobile { display: none; } }
.article-toc-mobile summary {
  list-style: none; cursor: pointer; padding: 12px 0;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; justify-content: space-between;
}
.article-toc-mobile summary::-webkit-details-marker { display: none; }
.article-toc-mobile summary::after { content: '+'; font-size: 18px; color: var(--green-deep); }
.article-toc-mobile[open] summary::after { content: '\2212'; }
.article-toc-mobile ol { margin: 0 0 14px; padding-left: 20px; }
.article-toc-mobile li { margin-bottom: 6px; font-size: 14px; }
.article-toc-mobile a { color: var(--green-deep); text-decoration: none; }
.article-toc-mobile a:hover { color: var(--orange); }

/* enriched meta row inside article header */
.article-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--gray-soft); letter-spacing: 0.02em;
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* scroll offset so anchored headings aren't hidden under sticky header */
.article-body h2[id] { scroll-margin-top: 88px; }

/* Auto-numbered H2 badges (visual only — counts h2[id] in order) */
.article-body { counter-reset: artsec; }
.article-body h2[id] {
  counter-increment: artsec;
  position: relative;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.article-body h2[id]::before {
  content: counter(artsec, decimal-leading-zero);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  background: rgba(216,106,40,0.12);
  padding: 5px 10px; border-radius: var(--radius-btn);
  margin-bottom: 14px;
  vertical-align: middle;
}
.article-body h2[id]::before { display: block; width: fit-content; }
/* first h2 keeps a top border too — looks intentional and clean */

/* H3 sub-labels a touch tighter under their section */
.article-body h3 { margin-top: 28px; }

/* "How to..." style intro lines (strong-led list items) read as labels already via existing strong color */

/* end CTA — colored panel */
.article-cta-panel {
  background: var(--green-deep); color: var(--cream-light);
  border-radius: var(--radius-card); padding: 48px 40px; margin-top: 20px;
  text-align: center;
}
.article-cta-panel h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 30px; line-height: 1.1; color: var(--cream-light);
  margin: 0 0 12px; letter-spacing: -0.016em;
}
.article-cta-panel h2 em { font-style: italic; color: var(--orange-bright); }
.article-cta-panel p {
  font-size: 15px; line-height: 1.6; color: rgba(246,237,218,0.78);
  max-width: 540px; margin: 0 auto 24px;
}
.article-cta-panel .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-cta-panel .btn-ghost { color: var(--cream-light); border-color: rgba(246,237,218,0.4); }
.article-cta-panel .btn-ghost:hover { background: var(--cream-light); color: var(--green-deep); }

/* Stickers reused on article related cards */
.related-card .res-stickers { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.res-sticker {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-btn); line-height: 1; white-space: nowrap;
}
.res-sticker-type { background: var(--cream-warm); color: var(--gray-warm); }
.res-sticker-start  { background: rgba(14,75,44,0.10);  color: var(--green-deep); }
.res-sticker-rank   { background: rgba(216,106,40,0.14); color: var(--orange); }
.res-sticker-profit { background: rgba(196,95,31,0.14);  color: var(--orange); }
.res-sticker-win    { background: rgba(14,75,44,0.10);   color: var(--green); }

/* Ensure CTA buttons keep correct contrast on colored panels */
.article-cta-panel .btn-primary,
.inline-cta .btn-primary { color: var(--cream-light) !important; }

/* ============================================================
   NEWSLETTER (article / global)
   ============================================================ */
.newsletter { background: var(--cream-warm); padding: 72px 0; text-align: center; }
.newsletter .container { max-width: 640px; }
.newsletter .eyebrow {
  display: block; margin-bottom: 14px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
}
.newsletter h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 34px; line-height: 1.05; color: var(--green-deep);
  letter-spacing: -0.016em; margin: 0 0 12px;
}
.newsletter p { font-size: 15.5px; line-height: 1.6; color: var(--gray-warm); margin: 0 0 26px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-input {
  flex: 1 1 300px; max-width: 380px;
  padding: 14px 18px; font-size: 15px; font-family: var(--font-body);
  background: var(--cream-light); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-btn);
}
.newsletter-input:focus { outline: none; border-color: var(--orange); }
.newsletter-note { font-size: 12.5px; color: var(--gray-soft); margin: 16px 0 0; }

/* ============================================================
   ARTICLE — VARIED CONTENT LAYOUTS (presentation only)
   ============================================================ */
/* Card grids */
.article-body ul.art-cards {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 14px;
}
.article-body ul.art-cards-2 { grid-template-columns: repeat(2, 1fr); }
.article-body ul.art-cards-3 { grid-template-columns: repeat(3, 1fr); }
.article-body ul.art-cards li {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 20px 22px;
  margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--gray-warm);
}
.article-body ul.art-cards li strong { display: block; margin-bottom: 4px; color: var(--green-deep); }
.article-body ul.art-cards-emoji li { font-size: 14px; }

/* Row cards (5-item spine) — emoji lead, left orange accent */
.article-body ul.art-rows { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul.art-rows li {
  background: var(--cream); border: 1px solid var(--line);
  border-left: 3px solid var(--orange); border-radius: var(--radius-card);
  padding: 16px 20px; margin: 0; font-size: 15px; line-height: 1.5; color: var(--gray-warm);
}
.article-body ul.art-rows li strong { color: var(--green-deep); }

/* Label boxes (Win the click) */
.article-body ul.art-boxes { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.article-body ul.art-boxes li {
  background: var(--cream-warm); border-radius: var(--radius-card);
  padding: 18px 22px; margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--gray-warm);
}
.article-body ul.art-boxes li strong {
  display: inline-block; color: var(--orange); text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.14em; margin-right: 8px;
}

/* Timeline (4-week sprint) */
.article-body ul.art-timeline { list-style: none; padding: 0 0 0 28px; margin: 0 0 28px; position: relative; }
.article-body ul.art-timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line-strong);
}
.article-body ul.art-timeline li {
  position: relative; margin: 0 0 16px; padding: 0 0 0 6px;
  font-size: 15px; line-height: 1.6; color: var(--gray-warm);
}
.article-body ul.art-timeline li::before {
  content: ''; position: absolute; left: -28px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--cream-light);
}
.article-body ul.art-timeline li strong { color: var(--green-deep); }

/* Shortlists grid (2x2 concepts) */
.art-shortlists { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 0 0 28px; }
.art-shortlist {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 22px 24px;
}
.art-shortlist h3 { margin: 0 0 12px !important; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.art-shortlist ul { list-style: none; padding: 0; margin: 0; }
.art-shortlist ul li { font-size: 13.5px; line-height: 1.5; margin: 0 0 8px; color: var(--gray-warm); }
.art-shortlist ul li strong { color: var(--green-deep); }

/* Snippet boxes (copy blocks) */
.article-body ul.art-snippets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul.art-snippets li {
  background: var(--cream); border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-card); padding: 16px 20px; margin: 0;
  font-size: 14px; line-height: 1.55; font-style: italic; color: var(--gray-warm);
}
.article-body ul.art-snippets li strong { color: var(--green-deep); font-style: normal; }

@media (max-width: 760px) {
  .article-body ul.art-cards-2,
  .article-body ul.art-cards-3,
  .art-shortlists { grid-template-columns: 1fr; }
}

/* Mobile: tighten gaps (hero→TOC, article→CTA) */
@media (max-width: 760px) {
  .article-layout { padding: 12px 0 48px; }
  .article-cta-panel { margin-top: 24px; padding: 36px 26px; }
  .article-toc-mobile { margin-bottom: 20px; }
}

/* CTA panel inside grid: force column 2 (desktop), aligned with article content */
@media (min-width: 1024px) {
  .article-grid > .article-cta-panel { grid-column: 2; }
}

/* Align article content top with TOC top */
.article-body > *:first-child { margin-top: 0; }
.article-body > p:first-of-type { margin-top: 0; }
@media (min-width: 1024px) {
  /* content and TOC both start at grid top; kill any inherited offset */
  .article-body { padding-top: 0; }
}
