/* =========================================================================
   Easing Mind — Therapy site stylesheet
   Mobile-first. Professional pairing: Inter (UI) + Lora (display).
   Fonts loaded via <link> in HTML for performance.
   ========================================================================= */

:root {
  /* Brand palette — calm, trustworthy, warm */
  --primary-color: #1a2639;       /* Deep Twilight Navy */
  --primary-rich:  #2d4a6e;       /* Rich Sapphire */
  --secondary-color: #eef2f7;     /* Horizon Mist */
  --accent-color:  #c8614e;       /* Fired Rose Terracotta */
  --accent-light:  #e8a55c;       /* Warm Amber Glow */
  --accent-teal:   #3d9fa8;       /* Calm Teal */
  --text-dark:     #1a2639;
  --text-body:     #3b4c62;
  --text-muted:    #6b7a8c;
  --text-light:    #faf9f6;
  --surface-color: #ffffff;
  --surface-tinted:#f5f8fe;

  --pastel-mist:  #f5f8fc;
  --pastel-blush: #fff9f8;
  --pastel-sand:  #fffbf5;
  --pastel-mint:  #f6fbfb;

  --border-radius-lg: 20px;
  --border-radius-md: 12px;

  --grad-page:   linear-gradient(160deg, #f0f4f9 0%, #f8f1f9 35%, #fff5f0 65%, #f2f9f8 100%);
  --grad-accent: linear-gradient(135deg, #c8614e 0%, #e8a55c 100%);

  --header-h: 68px;
  --shadow-sm: 0 2px 8px rgba(26,38,57,0.06);
  --shadow-md: 0 8px 24px rgba(26,38,57,0.08);
  --shadow-lg: 0 18px 48px rgba(26,38,57,0.12);

  --font-ui:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Lora', 'Georgia', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--grad-page);
  background-attachment: scroll;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-h);
}

/* Faint watermark, inexpensive (no fixed attachment, no blur). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('assets/watermark.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section { position: relative; z-index: 1; }

/* Skip link for keyboard / a11y */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

a { color: var(--accent-color); text-decoration: none; }
a:hover { color: var(--primary-rich); }

p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  color: var(--text-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* =========================================================================
   Layout helpers
   ========================================================================= */

.section-padding { padding: 3.5rem 1.25rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1.25rem; }

h2.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2.section-title::after {
  content: '';
  position: absolute;
  width: 60%; height: 3px;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  border-radius: 2px;
}

/* =========================================================================
   Header — mobile first with hamburger
   ========================================================================= */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(26, 38, 57, 0.08);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.brand { display: flex; align-items: center; text-decoration: none; gap: 0.25rem; }
.brand-logo {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}
.brand-logo:hover { transform: scale(1.04); }
.trademark {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  align-self: flex-start;
  margin-top: 4px;
}

/* Hamburger trigger */
.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--primary-color);
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 2px; }
.nav-toggle .bar {
  position: relative;
  width: 22px; height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: '';
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .bar           { background: transparent; }
.nav-toggle[aria-expanded="true"] .bar::before   { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar::after    { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-links {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 1rem 1.25rem 2rem;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(26,38,57,0.08);
  box-shadow: var(--shadow-md);
  z-index: 999;
  overflow-y: auto;
}
.nav-links.is-open { transform: translateY(0); }
.nav-links a {
  display: block;
  padding: 0.95rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-rich);
  border-bottom: 1px solid rgba(26,38,57,0.06);
  text-decoration: none;
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover, .nav-links a:focus { color: var(--accent-color); }

.nav-links .nav-cta {
  margin-top: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  border-bottom: none;
}
.nav-links .nav-cta:hover { background: var(--accent-color); color: #fff; }

body.nav-open { overflow: hidden; }

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-color);
  padding: 3rem 1rem;
}
.slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,38,57,0.65) 0%, rgba(26,38,57,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  width: 100%;
  color: #fff;
  padding: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: #fff;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: var(--font-ui);
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  box-shadow: 0 4px 14px rgba(26, 38, 57, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  gap: 0.5rem;
}
.cta-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 97, 78, 0.35);
  color: #fff;
}
.cta-btn.light {
  background-color: var(--accent-color);
  color: #fff;
}
.cta-btn.light:hover { background-color: var(--primary-color); }
.cta-btn:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: pulse 2s infinite;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}
.whatsapp-float img { width: 100%; height: auto; border-radius: 50%; }
.whatsapp-float:hover { transform: scale(1.05); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* =========================================================================
   Split layout (About)
   ========================================================================= */

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.split-image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: auto; display: block; }
.split-content { width: 100%; }

/* Book section */
.book-section {
  background: #e6edf5;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}
.book-cover { width: 200px; max-width: 100%; border-radius: var(--border-radius-md); cursor: pointer; }

/* =========================================================================
   Reviews — single column on mobile, masonry-ish on larger screens
   ========================================================================= */

.reviews-grid {
  column-count: 1;
  column-gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  break-inside: avoid;
  background: var(--surface-color);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,38,57,0.05);
}
.review-title {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-body);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 0.85rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-tinted);
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--primary-color); }
.review-stars { color: #ffb800; letter-spacing: 1px; font-size: 0.85rem; }

/* =========================================================================
   Conditions grid (plans)
   ========================================================================= */

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.condition-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.condition-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-tinted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.condition-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.condition-title {
  color: var(--accent-color);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.condition-desc { color: var(--text-body); font-size: 0.95rem; margin-bottom: 1.25rem; flex-grow: 1; }
.condition-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.condition-arrow:hover { background: var(--primary-color); color: #fff; }
.arrow-icon { width: 20px; height: 20px; }

/* =========================================================================
   FAQ accordion (also Symptoms)
   ========================================================================= */

.symptoms-accordion { max-width: 800px; margin: 0 auto; }
details.symptom {
  background: #fff;
  border-radius: var(--border-radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details.symptom summary {
  padding: 1rem 2.5rem 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  position: relative;
}
details.symptom summary::-webkit-details-marker { display: none; }
details.symptom summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-color);
}
details.symptom[open] summary::after { content: '−'; }
.symptom-content { padding: 0 1.25rem 1.25rem; color: var(--text-body); }
.symptom-content ul { margin-top: 0.6rem; padding-left: 1.25rem; }
.symptom-content li { margin-bottom: 0.4rem; }

/* =========================================================================
   Approach page — journey timeline + framework cards v2
   ========================================================================= */

.approach-hero {
  padding: 4rem 1.25rem 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, #f5f8fc 0%, #fff5f0 100%);
}
.approach-hero .eyebrow {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.approach-hero h1 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.approach-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* Journey: vertical numbered timeline */
.journey {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.25rem;
}
.journey::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-teal));
  opacity: 0.35;
  border-radius: 2px;
}
.journey-step {
  position: relative;
  padding: 0.4rem 0 1.5rem 1.5rem;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step .node {
  position: absolute;
  left: -2.25rem;
  top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent-color);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(200,97,78,0.15);
  z-index: 2;
}
.journey-step.is-key .node { background: var(--accent-color); color: #fff; }
.journey-step h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.journey-step p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.journey-step .step-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.journey-step .step-cta:hover { color: var(--primary-rich); }

@media (min-width: 768px) {
  .approach-hero { padding: 5rem 2rem 3rem; }
  .approach-hero h1 { font-size: 2.6rem; }
  .approach-hero p { font-size: 1.1rem; }

  .journey { padding-left: 3rem; }
  .journey::before { left: 23px; }
  .journey-step { padding-bottom: 2rem; padding-left: 2rem; }
  .journey-step .node { width: 48px; height: 48px; font-size: 1.15rem; left: -3rem; }
  .journey-step h3 { font-size: 1.3rem; }
}

/* Framework cards v2 — classy web2 */
.frameworks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.framework-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,38,57,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-teal) 100%);
  opacity: 0.7;
}
.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,97,78,0.25);
}
.framework-eyebrow {
  display: inline-block;
  background: var(--surface-tinted);
  color: var(--accent-color);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.framework-card h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
}
.framework-goal {
  background: linear-gradient(135deg, rgba(200,97,78,0.08) 0%, rgba(61,159,168,0.08) 100%);
  border-left: 3px solid var(--accent-color);
  padding: 0.75rem 0.9rem;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}
.framework-goal strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent-color);
  margin-bottom: 0.2rem;
}

/* Step flow inside framework card */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow-step;
}
.flow li {
  counter-increment: flow-step;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem 0.65rem 0.85rem;
  background: var(--surface-tinted);
  border-radius: var(--border-radius-md);
  transition: background 0.2s ease;
}
.flow li::before {
  content: counter(flow-step);
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}
.flow li > span {
  font-size: 0.92rem;
  color: var(--primary-rich);
  font-weight: 500;
  line-height: 1.5;
  padding-top: 2px;
}
.flow li:hover { background: rgba(200,97,78,0.06); }

/* Connector lines between steps (vertical, mobile-first) */
.flow li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.7rem;
  bottom: -0.5rem;
  width: 2px;
  height: 0.5rem;
  background: var(--accent-color);
  opacity: 0.35;
}

@media (min-width: 768px) {
  .frameworks-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .framework-card { padding: 2rem 1.85rem; }
  .framework-card h3 { font-size: 1.45rem; }
}
@media (min-width: 1200px) {
  .frameworks-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   Help section
   ========================================================================= */

.help-section {
  position: relative;
  padding: 3rem 1.25rem;
  background-image: linear-gradient(rgba(45, 74, 110, 0.85), rgba(45, 74, 110, 0.85)), url('assets/mental_health_hero.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  border-radius: var(--border-radius-lg);
}
.help-section .section-title {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.help-section .section-title::after { display: none; }
.help-subtitle { font-size: 1rem; margin-bottom: 2rem; color: #eaeaea; }
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.help-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.5rem;
  color: var(--text-body);
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.help-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--accent-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}
.help-card h3 {
  color: #2b5e3f;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.help-card p { font-size: 0.95rem; margin-bottom: 1.25rem; flex-grow: 1; }
.help-btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.help-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  color: #d15a45;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  background: transparent;
  min-height: 44px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.help-btn-outline.green { color: #2b5e3f; }
.help-btn-outline:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3); }

/* =========================================================================
   Pricing
   ========================================================================= */

.pricing-tabs-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.pricing-tabs {
  display: inline-flex;
  background: rgba(45, 74, 110, 0.06);
  padding: 0.4rem;
  border-radius: 50px;
  gap: 0.4rem;
  border: 1px solid rgba(45, 74, 110, 0.08);
}
.pricing-tab {
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pricing-tab.active {
  background: #fff;
  color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pricing-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.pricing-icon {
  background: #eaf1ed;
  color: var(--primary-color);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.pricing-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.pricing-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.85rem; }
.pricing-price { color: var(--primary-color); margin-bottom: 1rem; font-weight: 700; font-family: var(--font-display); }
.pricing-price .currency { font-size: 1rem; }
.pricing-price .amount   { font-size: 2rem; letter-spacing: -1px; }
.pricing-price .suffix   { font-size: 0.9rem; color: var(--text-muted); }
.pricing-divider { border: 0; height: 1px; background: rgba(0,0,0,0.06); margin-bottom: 1rem; }
.pricing-features { list-style: none; flex-grow: 1; }
.pricing-features li {
  display: flex;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}
.pricing-features .check { color: var(--accent-teal); font-weight: 700; }
.pricing-btn {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
}

/* =========================================================================
   Vibe-check banner (gateway to pricing)
   ========================================================================= */

.vibecheck-banner {
  background: linear-gradient(135deg, #fff5f0 0%, #f2f9f8 100%);
  border: 1px solid rgba(200, 97, 78, 0.18);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: 0 18px 40px rgba(26, 38, 57, 0.05);
}
.vibecheck-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.vibecheck-banner__copy h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.vibecheck-banner__copy p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0.85rem;
  line-height: 1.65;
}
.vibecheck-banner__copy .cta-btn { margin-top: 0.5rem; }
.vibecheck-banner__label {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.85rem;
}
.vibecheck-banner__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(255,255,255,0.65);
  padding: 1rem;
  border-radius: var(--border-radius-md);
}
.mini-step {
  text-align: center;
  padding: 0.5rem 0.25rem;
}
.mini-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.mini-step p {
  font-size: 0.75rem;
  color: var(--primary-rich);
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

@media (min-width: 768px) {
  .vibecheck-banner { padding: 2.5rem; }
  .vibecheck-banner__inner { grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }
  .vibecheck-banner__copy h2 { font-size: 1.85rem; }
}
@media (min-width: 1024px) {
  .vibecheck-banner { padding: 3rem 3.25rem; }
  .vibecheck-banner__copy h2 { font-size: 2.1rem; }
}

/* Plans label + footer hint */
.plans-label {
  display: inline-block;
  background: var(--surface-tinted);
  color: var(--accent-color);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pricing-foot {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.pricing-foot a { color: var(--accent-color); text-decoration: underline; }
.pricing-disclaimer {
  margin: 2rem auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* =========================================================================
   Two-tier plan cards — Personal & Together
   ========================================================================= */

.plans-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 2.5rem auto 0;
}
.plan-tier {
  background: #fff;
  border: 1px solid rgba(26,38,57,0.07);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}
.plan-tier--together::before {
  background: linear-gradient(90deg, var(--accent-teal), var(--primary-rich));
}
.plan-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,97,78,0.2);
}
.tier-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
}
.plan-tier--together .tier-eyebrow { color: var(--accent-teal); }
.tier-name {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}
.tier-price .currency { font-size: 1.4rem; font-weight: 600; }
.tier-price .amount   { font-size: 3rem; font-weight: 700; letter-spacing: -1.5px; line-height: 1; }
.tier-price .suffix   { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.tier-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px solid rgba(26,38,57,0.06);
  padding-top: 1.25rem;
}
.tier-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-body);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-color) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17l-3.88-3.88a1 1 0 0 0-1.41 1.41l4.59 4.59a1 1 0 0 0 1.41 0L20.59 7.41a1 1 0 0 0-1.41-1.41z'/></svg>") center/14px no-repeat;
  margin-top: 2px;
}
.plan-tier--together .tier-features li::before { background-color: var(--accent-teal); }

.tier-personas {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--surface-tinted);
  border-radius: var(--border-radius-md);
}
.tier-personas-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.tier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  color: var(--primary-rich);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(26,38,57,0.1);
}
.tier-chip-icon { font-size: 0.95rem; line-height: 1; }

.plan-tier .cta-btn { width: 100%; margin-top: auto; }
.plan-tier--together .cta-btn { background: var(--accent-teal); }
.plan-tier--together .cta-btn:hover { background: var(--primary-rich); }

/* What's included strip — applies to both plans */
.plans-shared {
  max-width: 920px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #f5f8fc 0%, #fff5f0 60%, #f2f9f8 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(26,38,57,0.06);
}
.plans-shared h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}
.plans-shared-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.plans-shared-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.plans-shared-item .icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  border: 1px solid rgba(26,38,57,0.05);
}
.plans-shared-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}
.plans-shared-item p strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .plans-tier-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .plan-tier { padding: 2.5rem 2rem; }
  .tier-name { font-size: 1.85rem; }
  .tier-price .amount { font-size: 3.5rem; }
  .plans-shared { padding: 2rem 2.5rem; }
  .plans-shared h3 { font-size: 1.35rem; }
  .plans-shared-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem; }
}
@media (min-width: 1024px) {
  .plan-tier { padding: 2.75rem 2.25rem; }
  .plans-shared-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .plans-shared-item { flex-direction: column; text-align: center; align-items: center; }
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  background: linear-gradient(135deg, #0f1f38 0%, #1a2639 50%, #2d4a6e 100%);
  color: var(--text-light);
  padding: 2.5rem 1.25rem;
  text-align: center;
  margin-top: 2rem;
}
.footer a { color: var(--accent-color); text-decoration: none; }
.footer a:hover { color: var(--accent-light); }
.footer-legal-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
  min-height: 36px;
}
.footer-legal-btn:hover { color: var(--accent-light); text-decoration: underline; }

/* =========================================================================
   Cookie banner
   ========================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.06);
  padding: 1rem;
  z-index: 5000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner--hiding  { transform: translateY(100%); }
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.cookie-banner-icon { display: none; font-size: 1.6rem; }
.cookie-banner-text { flex-grow: 1; color: var(--text-body); font-size: 0.85rem; line-height: 1.45; }
.cookie-banner-text strong { color: var(--primary-color); }
.cookie-policy-link { background: none; border: none; color: var(--accent-color); text-decoration: underline; cursor: pointer; padding: 0; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 38px;
}
.cookie-btn--primary { background: var(--accent-color); color: #fff; border: none; }
.cookie-btn--primary:hover { background: var(--primary-color); color: #fff; }
.cookie-btn--outline { background: transparent; color: var(--primary-color); border: 1px solid rgba(0,0,0,0.12); }
.cookie-banner-dismiss {
  position: absolute;
  top: -0.4rem; right: 0;
  font-size: 1.3rem;
  color: #aaa;
}

/* =========================================================================
   Modals (legal + image)
   ========================================================================= */

.legal-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(19, 39, 36, 0.7);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.legal-modal--open { opacity: 1; pointer-events: auto; }
.legal-modal-box {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.legal-modal--open .legal-modal-box { transform: translateY(0); }
.legal-modal-close {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  font-size: 1.8rem;
  color: #aaa;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.legal-modal-close:hover { color: var(--primary-color); }
.legal-modal-body h1 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.legal-modal-body .legal-date { font-size: 0.8rem; color: #888; font-style: italic; margin-bottom: 1.25rem; }
.legal-modal-body h2 {
  color: var(--accent-color);
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.legal-modal-body h3 {
  color: var(--primary-color);
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.legal-modal-body p { color: var(--text-body); line-height: 1.7; margin-bottom: 0.7rem; font-size: 0.95rem; }
.legal-modal-body ul { padding-left: 1.4rem; margin-bottom: 0.85rem; }
.legal-modal-body ul li { color: var(--text-body); margin-bottom: 0.3rem; line-height: 1.55; font-size: 0.93rem; }
.legal-modal-body a { color: var(--accent-color); text-decoration: underline; }

/* Condition modal — extends legal-modal */
.cond-modal h1 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.cond-modal .cond-lead {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.cond-modal h2 {
  font-family: var(--font-display);
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  text-transform: none;
  letter-spacing: 0;
}
.cond-modal .cond-paragraph { color: var(--text-body); margin-bottom: 0.8rem; font-size: 0.95rem; }
.cond-modal .cond-signs {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1rem;
}
.cond-modal .cond-signs li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(26,38,57,0.05);
}
.cond-modal .cond-signs li:last-child { border-bottom: none; }
.cond-modal .cond-signs li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.6;
}
.cond-modal .cond-reassure {
  background: var(--surface-tinted);
  border-left: 3px solid var(--accent-teal);
  padding: 0.85rem 1rem;
  margin: 1.25rem 0 1.5rem;
  color: var(--primary-rich);
  font-size: 0.93rem;
  font-style: italic;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}
.cond-modal .cond-cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26,38,57,0.06);
  text-align: center;
}
.cond-modal .cond-cta-note {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
@media (min-width: 600px) {
  .cond-modal h1 { font-size: 1.85rem; }
  .cond-modal h2 { font-size: 1.15rem; margin-top: 1.75rem; }
}

/* Image modal (book cover) */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.9);
  overflow: auto;
}
.modal.show { display: flex; align-items: center; justify-content: center; }
.modal-content { max-width: 92%; max-height: 80vh; }
#caption { color: #ccc; text-align: center; padding: 0.5rem; }
.close-modal {
  position: absolute;
  top: 14px; right: 20px;
  color: #f1f1f1;
  font-size: 2rem;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================================
   Decorative section utility (kept for plans page)
   ========================================================================= */

.decorative-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}
.decorative-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: -1;
}
#getting-started.decorative-section { background-image: url('assets/getting_started_bg.png'); }
#inner-pattern.decorative-section   { background-image: url('assets/inner_pattern_bg.png'); }

.bg-mist  { background-color: var(--pastel-mist)  !important; }
.bg-rose  { background-color: var(--pastel-blush) !important; }
.bg-sand  { background-color: var(--pastel-sand)  !important; }
.bg-mint  { background-color: var(--pastel-mint)  !important; }

/* =========================================================================
   Tablet
   ========================================================================= */

@media (min-width: 600px) {
  .section-padding { padding: 4rem 1.5rem; }
  h2.section-title { font-size: 2rem; }
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1.1rem; }

  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .frameworks-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { column-count: 2; }
  .help-grid       { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }

  .book-section { flex-direction: row; text-align: left; padding: 2.5rem; }
  .book-cover   { width: 220px; flex-shrink: 0; }

  .help-section .section-title { font-size: 2rem; }
  .legal-modal-box { padding: 2.5rem; }
  .legal-modal-body h1 { font-size: 1.85rem; }
}

/* =========================================================================
   Desktop
   ========================================================================= */

@media (min-width: 960px) {
  :root { --header-h: 80px; }

  .header { padding: 0 2rem; }
  .brand-logo { height: 56px; }
  .nav-toggle { display: none; }

  .nav-links {
    position: static;
    inset: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
    transform: none;
    box-shadow: none;
    border: none;
    overflow: visible;
  }
  .nav-links a {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: none;
    color: var(--primary-rich);
  }
  .nav-links .nav-cta {
    margin-top: 0;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
  }

  .section-padding { padding: 5rem 2rem; }
  h2.section-title { font-size: 2.4rem; }

  .hero { min-height: 80vh; padding: 4rem 2rem; }
  .hero-title { font-size: 3.2rem; }
  .hero-subtitle { font-size: 1.2rem; }

  .split-layout { flex-direction: row; align-items: center; gap: 3rem; }
  .split-image  { max-width: 420px; flex-shrink: 0; }

  .reviews-grid    { column-count: 3; }
  .conditions-grid { grid-template-columns: repeat(4, 1fr); }
  .frameworks-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid       { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .pricing-grid    { grid-template-columns: repeat(5, 1fr); }

  .help-section { padding: 5rem 3rem; }
  .help-section .section-title { font-size: 2.4rem; }

  .book-section { padding: 3rem 3rem; gap: 3rem; }
  .book-cover   { width: 260px; }

  .cookie-banner { padding: 1.25rem 2rem; }
  .cookie-banner-inner { flex-direction: row; align-items: center; }
  .cookie-banner-icon { display: block; }
}

@media (min-width: 1200px) {
  .section-padding { padding: 6rem 2rem; }
  h2.section-title { font-size: 2.6rem; }
  .hero-title { font-size: 3.6rem; }
  .frameworks-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   Print
   ========================================================================= */
@media print {
  .header, .footer, .whatsapp-float, .cookie-banner, .nav-toggle, .legal-modal { display: none !important; }
  body { padding-top: 0; background: #fff; }
}
