/* ============================================
   MyEstateCompass — Design System
   Version: 1.0
   Based on V3 mockup (approved Feb 2026)
   ============================================ */

/* === VARIABLES === */
:root {
  --green: #1A6B5A;
  --green-dark: #145647;
  --green-light: #E8F3F0;
  --green-soft: #D4E8E3;
  --cream: #FAFAF7;
  --warm-gray: #F4F3EF;
  --border: #E8E7E3;
  --charcoal: #1A1A1A;
  --charcoal-mid: #3D3D3D;
  --charcoal-light: #6B6B6B;
  --charcoal-muted: #999999;
  --white: #FFFFFF;
  --amber: #C4872E;
  --amber-light: #FDF6ED;
}

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

/* === BASE === */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }


/* ===========================
   NAVIGATION
   =========================== */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark { width: 32px; height: 32px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
  padding: 3rem 4rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--charcoal-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--charcoal-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--charcoal); }

.footer-disclaimer {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--charcoal-muted);
}


/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-header h2,
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h2 em, h1 em {
  font-style: italic;
  color: var(--green);
}


/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(26, 107, 90, 0.25);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 107, 90, 0.3);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}


/* ===========================
   CARDS
   =========================== */
.card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.04);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}


/* ===========================
   HERO (Homepage)
   =========================== */
.hero {
  padding: 5rem 4rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero .tagline {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 440px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.hero-tag {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal-light);
  background: transparent;
  transition: all 0.2s;
}

.hero-tag:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Hero visual / compass card */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-image-card {
  background: var(--green);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.compass-art {
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.float-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.float-subtext {
  font-size: 0.72rem;
  color: var(--charcoal-muted);
  font-weight: 400;
}


/* ===========================
   QUOTE BAND
   =========================== */
.quote-band {
  background: var(--warm-gray);
  padding: 3.5rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal-mid);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-privacy {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.quote-privacy svg { width: 14px; height: 14px; }


/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.step-card {
  padding: 2.25rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--green-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

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


/* ===========================
   TRUST SECTION
   =========================== */
.trust-section {
  margin: 0 4rem 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: var(--green);
  border-radius: 28px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.trust-content { position: relative; z-index: 1; }

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.trust-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.trust-content > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-icon svg { width: 18px; height: 18px; color: var(--white); }

.trust-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.trust-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}


/* ===========================
   TOPIC / GUIDE CARDS
   =========================== */
.topics {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.topics .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.topics .section-header a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
  margin-bottom: 0.5rem;
}

.topics .section-header a:hover { gap: 0.6rem; }
.topics .section-header a svg { width: 16px; height: 16px; }

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

.topic-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  background: var(--white);
}

.topic-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.04);
}

.topic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s;
}

.topic-card:hover .read-link { gap: 0.5rem; }
.read-link svg { width: 14px; height: 14px; }


/* ===========================
   BOTTOM CTA
   =========================== */
.bottom-cta {
  padding: 6rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--warm-gray);
}

.bottom-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bottom-cta p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}


/* ===========================
   ASSESSMENT
   =========================== */
.assessment-section {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.assessment-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: flex-start;
}

.assessment-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.assessment-intro > p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.assessment-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.assessment-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
}

.assessment-feature svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.assessment-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.05);
}

.progress-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 2.5rem;
}

.progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--warm-gray);
  transition: background 0.3s ease;
}

.progress-dot.active { background: var(--green); }

.question h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 1.75rem;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.answer-card {
  padding: 1rem 1.25rem;
  background: var(--warm-gray);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.92rem;
  color: var(--charcoal-mid);
  font-family: 'DM Sans', sans-serif;
}

.answer-card:hover {
  border-color: var(--green-soft);
  background: var(--white);
}

.answer-card.selected {
  border-color: var(--green);
  background: var(--white);
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.btn-back {
  background: none;
  border: none;
  color: var(--charcoal-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-back:hover { color: var(--charcoal); }
.btn-back svg { width: 16px; height: 16px; }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 14px rgba(26, 107, 90, 0.2);
}

.btn-next:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-next svg { width: 16px; height: 16px; }


/* ===========================
   RESULTS
   =========================== */
.result-section {
  padding: 4rem 4rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.result-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.result-hero-card {
  background: var(--green);
  border-radius: 24px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.result-hero-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.result-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.result-hero-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.result-hero-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.result-situation {
  background: var(--warm-gray);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border);
}

.result-situation h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.result-situation p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
}

/* Next steps */
.result-steps {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.result-steps h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.next-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--warm-gray);
}

.next-step:last-child { border-bottom: none; }

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* Download CTA */
.download-cta {
  background: var(--warm-gray);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.download-text { flex: 1; }

.download-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.download-text p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* Sources */
.result-sources {
  padding: 1.5rem 2rem;
  background: var(--warm-gray);
  border-radius: 16px;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  border: 1px solid var(--border);
}

.result-sources h4 {
  font-weight: 700;
  color: var(--charcoal-mid);
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.source-item {
  margin-bottom: 0.3rem;
  line-height: 1.55;
}

.source-item a {
  color: var(--green);
  text-decoration: none;
}

.source-item a:hover { text-decoration: underline; }

.last-reviewed {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  font-size: 0.76rem;
  color: var(--charcoal-muted);
}


/* ===========================
   GUIDE / ARTICLE PAGES
   =========================== */
.article-header {
  padding: 4rem 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-header .article-meta {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
}

.article-body {
  padding: 0 4rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1.25rem;
}

.article-body a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-soft);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: var(--green);
}


/* ===========================
   DISCLAIMER BAR
   =========================== */
.disclaimer-bar {
  background: var(--amber-light);
  border: 1px solid #E8D5B8;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: var(--charcoal-mid);
  line-height: 1.6;
  margin: 2rem 0;
}

.disclaimer-bar strong {
  color: var(--amber);
}


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


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    z-index: 99;
  }

  .nav-links.open li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--warm-gray);
  }

  .nav-links.open li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .nav-links.open .nav-cta {
    text-align: center;
    display: block;
  }

  .site-nav { position: relative; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  .hero h1 { font-size: 2.8rem; }
  .hero-visual { display: none; }

  .how-it-works,
  .topics,
  .assessment-section,
  .result-section { padding: 3.5rem 1.5rem; }

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

  .section-header h2,
  h2.section-title { font-size: 2rem; }

  .trust-section {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 4rem;
    padding: 2.5rem;
  }

  .assessment-layout { grid-template-columns: 1fr; }
  .result-top { grid-template-columns: 1fr; }

  .download-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .bottom-cta { padding: 4rem 1.5rem; }
  .bottom-cta h2 { font-size: 2rem; }

  .topics .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-header { padding: 3rem 1.5rem 1.5rem; }
  .article-header h1 { font-size: 2.2rem; }
  .article-body { padding: 0 1.5rem 3rem; }

  .site-footer { padding: 2.5rem 1.5rem 2rem; }
}
