/* ============================================================
   The Daily Whisper — Marketing Website Styles
   Palette: warm white · cream · sand · charcoal
   No green. Quiet, intimate, introspective.
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────────────────────── */
:root {
  /* Colours — warm, cream-forward, no green */
  --sand:         #B89A7A;   /* warm sand — primary accent */
  --sand-dark:    #967A5E;
  --sand-light:   #F2EBE0;   /* very soft warm */
  --blush:        #E8D5C4;   /* soft blush for section backgrounds */
  --blush-deep:   #DECCBA;   /* slightly richer blush */
  --cream:        #F5F0E8;   /* warm cream backgrounds */
  --warm-white:   #FAF8F5;   /* near-white, faintly warm */
  --charcoal:     #28231E;   /* warm near-black for footer */
  --charcoal-mid: #4A413A;   /* mid charcoal for subtext */
  --text:         #1E1B18;   /* warm dark for headings */
  --text-body:    #3A3530;   /* slightly lighter for body copy */
  --text-muted:   #9E9188;
  --border:       #E6DED5;
  --border-warm:  #D8CEC4;
  --error:        #B03A2E;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad:    5rem 1.5rem;
  --section-pad-sm: 3.5rem 1.5rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows — warmer, softer */
  --shadow-sm: 0 1px 4px rgba(40,35,30,0.05);
  --shadow-md: 0 4px 24px rgba(40,35,30,0.07);
  --shadow-lg: 0 8px 48px rgba(40,35,30,0.09);

  /* Transitions */
  --transition: 0.25s ease;
}

/* ── Google Fonts — Cormorant for headings ───────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@400;500;600&display=swap');

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--sand);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sand-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
}

.lead {
  font-size: 1.175rem;
  line-height: 1.75;
  color: var(--charcoal-mid);
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-pad);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav__logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Logo mark — thin circle with W */
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__cta {
  background: var(--text) !important;
  color: var(--warm-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: var(--charcoal-mid) !important;
  color: var(--warm-white) !important;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9625rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--text);
  color: var(--warm-white);
  border-color: var(--text);
}

.btn--primary:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(40,35,30,0.18);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-warm);
}

.btn--outline:hover {
  background: var(--sand-light);
  border-color: var(--sand);
  color: var(--text);
  transform: translateY(-1px);
}

.btn--sand {
  background: var(--sand);
  color: var(--warm-white);
  border-color: var(--sand);
}

.btn--sand:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,154,122,0.3);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  background: var(--warm-white);
  padding: 7rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand-light);
  color: var(--sand-dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1rem;
}

.hero__subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 1.5px solid var(--sand);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__trust {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Hero illustration — soft breath/ripple form */
.hero__illustration {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  animation: breathe 7s ease-in-out infinite;
  transform-origin: center;
}

@keyframes breathe {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.025); opacity: 0.92; }
  100% { transform: scale(1); opacity: 1; }
}

/* Background warm glow */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184,154,122,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,213,196,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--cream);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.875rem;
}

.section-heading {
  margin-bottom: 0.75rem;
}

.section-subheading {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 540px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sand);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.step-number {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.step-card p {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ── Why section ─────────────────────────────────────────────────────────── */
.why-whisper {
  background: var(--blush);
  padding: var(--section-pad);
}

.why-whisper__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-whisper h2 {
  margin-bottom: 1.25rem;
}

.why-whisper .lead {
  margin-bottom: 1.5rem;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.875rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.825rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-meta .location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  position: relative;
  padding-left: 1.125rem;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: -0.1rem;
  top: -0.4rem;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--blush-deep);
  line-height: 1;
}

/* ── Founder Credibility Strip ───────────────────────────────────────────── */
.founder-strip {
  background: var(--cream);
  padding: 4.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.founder-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

/* CSS Book Cover Card */
.book-cover-card {
  width: 160px;
  height: 220px;
  flex-shrink: 0;
  background: var(--warm-white);
  border-radius: 4px;
  box-shadow: 5px 8px 24px rgba(40,35,30,0.16), -1px 0 0 rgba(40,35,30,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.75rem;
  position: relative;
  overflow: hidden;
}

.book-cover-card__art {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.book-cover-card__title-block {
  width: 100%;
  text-align: center;
  padding: 0.375rem 0;
}

.book-cover-card__rule {
  width: 100%;
  height: 1px;
  background: var(--sand);
  display: block;
  margin: 0.3rem 0;
}

.book-cover-card__title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.book-cover-card__subtitle {
  font-size: 0.42rem;
  color: var(--charcoal-mid);
  font-style: italic;
  line-height: 1.4;
  margin-top: 0.2rem;
  opacity: 0.8;
}

.book-cover-card__author {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: auto;
}

.founder-strip__text {
  flex: 1;
}

.founder-strip__text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.founder-strip__text p {
  color: var(--charcoal-mid);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 0.975rem;
}

.founder-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sand);
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--sand-light);
  transition: border-color var(--transition), color var(--transition);
}

.founder-strip__link:hover {
  color: var(--sand-dark);
  border-color: var(--sand-dark);
}

/* ── Page Intro (about page) ────────────────────────────────────────────── */
.page-intro {
  background: var(--sand-light);
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-intro p {
  font-size: 1.075rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.page-intro p:last-child { margin-bottom: 0; }

.page-intro h2 {
  font-size: 1.6rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── The Gap Section ─────────────────────────────────────────────────────── */
.gap-section {
  background: var(--blush);
  padding: var(--section-pad);
}

.gap-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gap-col {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.gap-col--highlight {
  border: 1.5px solid var(--sand);
  box-shadow: 0 0 0 4px rgba(184,154,122,0.08);
}

.gap-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
}

.gap-col p {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.gap-tagline {
  text-align: center;
  padding-top: 1rem;
}

.gap-tagline p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--charcoal-mid);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

/* ── Stepping Stone Section ──────────────────────────────────────────────── */
.stepping-stone {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.stepping-stone__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stepping-stone__inner .section-heading {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.stepping-stone__body {
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.outcome-card {
  background: var(--sand-light);
  border-radius: var(--radius-md);
  padding: 1.875rem 1.5rem;
  border: 1px solid var(--border);
}

.outcome-card__icon {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}

.outcome-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.625rem;
  color: var(--text);
  font-weight: 400;
}

.outcome-card p {
  font-size: 0.925rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

.stepping-stone__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
  text-align: center;
}

/* ── Who Section (about page) ────────────────────────────────────────────── */
.who-section {
  background: var(--cream);
  padding: var(--section-pad);
}

.who-row {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.who-row:last-child {
  border-bottom: 1px solid var(--border);
}

.who-lead {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.35;
  font-weight: 400;
}

.who-row p:not(.who-lead) {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
  max-width: 580px;
}

/* ── Is it for me page ───────────────────────────────────────────────────── */
.fit-section {
  padding: 4rem 1.5rem;
}

.fit-section--yes {
  background: var(--warm-white);
}

.fit-section--maybe {
  background: var(--cream);
}

.fit-section h2 {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
  max-width: 680px;
  font-weight: 400;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 680px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 680px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
}

.checklist-item--yes {
  background: var(--sand-light);
  border: 1px solid var(--border);
}

.checklist-item--warn {
  background: #FFF8F0;
  border: 1px solid #E8D4B8;
}

.checklist-icon {
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 20px;
}

.checklist-item--yes .checklist-icon {
  color: var(--sand);
}

.checklist-item--warn .checklist-icon {
  color: #A8783A;
}

.checklist-item p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.support-signpost {
  margin-top: 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  max-width: 680px;
}

.support-signpost p {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.support-signpost p:last-child { margin-bottom: 0; }

.honest-truth {
  background: var(--blush-deep);
  padding: 5rem 1.5rem;
  text-align: center;
}

.honest-truth h2 {
  margin-bottom: 2rem;
}

.honest-truth__body {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.fit-cta {
  background: var(--sand-light);
  padding: 5rem 1.5rem;
}

.fit-cta h2 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.fit-cta p { color: var(--text-muted); font-size: 1rem; }

.fit-cta__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.875rem !important;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid--5 { grid-template-columns: repeat(5, 1fr); }

.pricing-progression {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pricing-progression strong { color: var(--text); }

.pricing-progression__sub {
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.pricing-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sand);
  margin-bottom: 0.3rem;
}

.pricing-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  color: var(--charcoal-mid);
  line-height: 1.6;
  flex: 1;
}

.pricing-card__bullets li {
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
}

.pricing-card__bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sand);
  font-weight: 700;
}

.pricing-card__cta-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem 0;
  opacity: 0.75;
}

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.875rem 1.5rem;
  text-align: center;
  background: var(--warm-white);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card--featured {
  border-color: var(--sand);
  position: relative;
  box-shadow: 0 0 0 4px rgba(184,154,122,0.10);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.pricing-card__name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.pricing-card__price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  flex: 1;
}

.pricing-cancel {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── Signup Form ─────────────────────────────────────────────────────────── */
.signup {
  background: var(--blush);
  padding: var(--section-pad);
}

.signup__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.signup h2 {
  margin-bottom: 0.5rem;
}

.signup__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Form */
.signup-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group .optional-label {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9188' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(184,154,122,0.14);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error);
}

/* ── Phone row: country code + number side by side ─────────────────────── */
.phone-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.phone-row select {
  width: 180px;
  flex-shrink: 0;
}

.phone-row input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 420px) {
  .phone-row { flex-direction: column; gap: 0.375rem; }
  .phone-row select { width: 100%; }
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.3rem;
  display: none;
}

.field-error.visible { display: block; }

.form-submit-btn {
  margin-top: 1.5rem;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.form-privacy {
  text-align: center;
  font-size: 0.785rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  line-height: 1.55;
}

.form-error {
  background: #fdf2f2;
  border: 1px solid #f0c0bc;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--error);
  margin-top: 1rem;
  display: none;
}

.form-error.visible { display: block; }

/* Success state */
.signup-success {
  display: none;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}

.signup-success.visible { display: block; }

.signup-success .success-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.signup-success h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 400;
}

.signup-success p {
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.signup-success .whatsapp-number {
  font-weight: 600;
  color: var(--text);
}

/* ── Arabic waitlist ─────────────────────────────────────────────────────── */
.arabic-waitlist {
  background: var(--sand-light);
  padding: 3rem 1.5rem;
  text-align: center;
}

.arabic-waitlist__inner {
  max-width: 480px;
  margin: 0 auto;
}

.arabic-waitlist__heading {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.arabic-waitlist__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.arabic-waitlist__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.arabic-waitlist__form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border-warm);
  border-radius: 6px;
  font-size: 0.95rem;
  background: var(--warm-white);
  color: var(--text);
  outline: none;
}

.arabic-waitlist__form input[type="email"]:focus {
  border-color: var(--sand);
}

.arabic-waitlist__btn { white-space: nowrap; }

.arabic-waitlist__success {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(250,248,245,0.65);
  padding: 3.5rem 1.5rem 2rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250,248,245,0.08);
}

.footer__brand .logo-mark {
  margin-bottom: 1rem;
}

.footer__brand .logo-mark svg circle {
  stroke: rgba(250,248,245,0.3);
}

.footer__brand .logo-mark svg text {
  fill: rgba(250,248,245,0.7);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,248,245,0.45);
  margin-top: 0.5rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.footer__col h4 {
  color: rgba(250,248,245,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer__col a {
  display: block;
  color: rgba(250,248,245,0.5);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: rgba(250,248,245,0.9); }

.footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.3);
}

/* ── About Page ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0 auto 1rem;
}

.page-hero .lead {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Founder story prose */
.founder-story {
  background: var(--warm-white);
  padding: 5rem 1.5rem;
}

.founder-story__inner {
  max-width: 680px;
  margin: 0 auto;
}

.founder-story p {
  font-size: 1.075rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.founder-story__signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sand);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* About book section */
.about-book {
  background: var(--cream);
  padding: var(--section-pad);
}

.about-book__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-book__text h2 {
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.about-book__text .subtitle {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.925rem;
  margin-bottom: 0.375rem;
}

.about-book__text .author {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.about-book__text p {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* What it is/isn't */
.is-isnt {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.is-isnt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.is-isnt__col {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.is-isnt__col--is {
  background: var(--sand-light);
  border: 1px solid var(--border);
}

.is-isnt__col--isnt {
  background: #F2F0ED;
  border: 1px solid var(--border);
}

.is-isnt__col h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.is-isnt__col--is h3   { color: var(--sand); }
.is-isnt__col--isnt h3 { color: var(--text-muted); }

.is-isnt__col li {
  font-size: 0.975rem;
  color: var(--text-body);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.is-isnt__col li::before {
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.is-isnt__col--is li::before {
  content: '✓';
  color: var(--sand);
  font-weight: 700;
}

.is-isnt__col--isnt li::before {
  content: '✕';
  color: var(--text-muted);
}

/* Crisis box */
.crisis-box {
  max-width: 800px;
  margin: 3rem auto 0;
  background: #FDF5F2;
  border: 1px solid #E8C4BC;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.crisis-box__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.crisis-box p {
  font-size: 0.95rem;
  color: #6b3530;
  line-height: 1.65;
}

.crisis-box strong { color: #5a2820; }

/* ── Privacy Page ────────────────────────────────────────────────────────── */
.privacy-content {
  padding: 4rem 1.5rem 5rem;
  background: var(--warm-white);
}

.privacy-content__inner {
  max-width: 700px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.privacy-section p {
  color: var(--charcoal-mid);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
  margin: 0.75rem 0;
  padding-left: 0;
}

.privacy-section li {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  line-height: 1.65;
}

.privacy-section li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sand);
}

/* ── Pilot Feedback ──────────────────────────────────────────────────────── */
.pilot-feedback {
  padding: var(--section-pad-sm);
  background: var(--blush);
}

.pilot-feedback__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pilot-feedback__heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 300;
}

.pilot-feedback__body {
  font-size: 0.975rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.pilot-feedback__body:last-child { margin-bottom: 0; }

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-sand   { color: var(--sand); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Hamburger nav ───────────────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Payment pages ───────────────────────────────────────────────────────── */
.payment-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--warm-white);
}

.payment-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.payment-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.payment-card h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.payment-card p {
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pricing-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__subtext { text-align: left; }
  .hero__cta { justify-content: center; }

  .hero__illustration {
    order: -1;
    max-height: 240px;
    overflow: hidden;
  }

  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .founder-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .is-isnt__grid { grid-template-columns: 1fr; }

  .about-book__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.25rem 1.25rem; }

  .nav__hamburger { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    z-index: 99;
  }

  .nav__links.open { display: flex; }

  .nav__links li { border-bottom: 1px solid var(--border); }
  .nav__links li:last-child { border-bottom: none; padding-top: 0.75rem; }

  .nav__links a { display: block; padding: 0.75rem 0; font-size: 1rem; color: var(--text); }

  .nav__cta { display: block !important; text-align: center; padding: 0.75rem 1.25rem !important; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero__illustration { display: none; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  .step-card { padding: 1.5rem; }

  .pricing-grid--4,
  .pricing-grid--5 { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .pricing-card { padding: 1.25rem 1rem; }
  .pricing-card__price { font-size: 1.75rem; }
  .pricing-card__desc { font-size: 0.8rem; }

  .signup-form { padding: 1.75rem 1.25rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .crisis-box { flex-direction: column; gap: 0.75rem; }

  .testimonials-grid { gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }

  .outcome-cards { grid-template-columns: 1fr; }
  .gap-columns { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sample-question { padding: 4rem 1.25rem; }
  .sample-question__bubble p { font-size: 1.1rem; }
  .sample-question__heading { font-size: 1.6rem; }
  .sample-question__card { padding: 1.5rem 1.25rem 1.25rem; }
}

@media (max-width: 400px) {
  .pricing-grid--4,
  .pricing-grid--5 {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── VISUAL ENHANCEMENTS ─── */

/* A. Sample question dark section */
.sample-question {
  background: var(--charcoal);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.sample-question::before {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 28rem;
  color: rgba(255,255,255,0.025);
  top: -6rem; left: -2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sample-question__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.sample-question .section-label {
  color: rgba(184,154,122,0.7);
  letter-spacing: 0.14em;
}
.sample-question__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  margin: 1rem 0 2.5rem;
  line-height: 1.25;
}
.sample-question__card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 2rem 2rem 1.5rem;
  margin: 0 auto 2rem;
  text-align: left;
  backdrop-filter: blur(4px);
}
.sample-question__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.sample-question__dot {
  width: 28px; height: 28px;
  background: rgba(184,154,122,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sample-question__dot svg { display: block; }
.sample-question__sender {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sample-question__time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}
.sample-question__bubble {
  background: rgba(255,255,255,0.09);
  border-radius: 14px 14px 14px 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.sample-question__bubble p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.65;
  margin: 0;
}
.sample-question__reply {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(184,154,122,0.55);
  font-style: italic;
}
.sample-question__sub {
  color: rgba(255,255,255,0.38);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 2rem;
}
.btn--sample-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand);
  color: var(--warm-white);
  border: 1.5px solid var(--sand);
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.9625rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--sample-cta:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,154,122,0.35);
}

/* B. Step number circles — filled with sand */
.step-number {
  width: 42px; height: 42px;
  background: var(--sand);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* C. Step cards — richer styling */
.step-card {
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 2px 16px rgba(40,35,30,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), var(--blush-deep));
}
.step-card:hover {
  box-shadow: 0 8px 40px rgba(40,35,30,0.10);
  transform: translateY(-4px);
}

/* D. Hero — richer background and bolder feel */
.hero {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 60%, var(--blush) 100%);
  padding: 7.5rem 1.5rem 6.5rem;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,154,122,0.10) 0%, transparent 65%);
  top: -100px; right: -80px;
}

/* E. Testimonial cards — stronger personality */
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 2px 20px rgba(40,35,30,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
/* Decorative quote mark as a background watermark on the card — not the blockquote */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--sand);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(40,35,30,0.11);
  transform: translateY(-3px);
}
/* Blockquote: clean, no absolute quote mark — remove it */
.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  padding-left: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
}
.testimonial-card blockquote::before {
  content: none;
}
.testimonial-header {
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  background: var(--sand);
  color: var(--warm-white);
  width: 44px; height: 44px;
  font-size: 0.875rem;
}

/* F. Button shimmer — primary button glow on hover */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn--primary:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40,35,30,0.22);
}

/* G. Reveal animation — slide up + fade */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* H. Pilot feedback section — more impactful */
.pilot-feedback {
  background: var(--blush);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border-warm);
}
.pilot-feedback__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pilot-feedback__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.pilot-feedback__body {
  color: var(--charcoal-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* I. Outcome card icons — update styling */
.outcome-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* J. Section heading accent — italic key phrase */
.accent-italic {
  font-style: italic;
  color: var(--sand-dark);
}

/* K. New nav logo mark class */
.logo-mark svg {
  display: block;
}

/* Pricing flow note */
.pricing-flow-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
  font-style: italic;
}

/* Hero example question */
.hero__example {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sand-dark);
  font-weight: 300;
  line-height: 1.65;
  margin: 1.25rem 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--sand);
}
.hero__body--sub {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
