/* ============================================================
   LEARNILLION — Premium Edition Stylesheet
   Editorial typography · warm neutrals · rich component system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* --- Primary (indigo, refined) --- */
  --primary: #4338ca;
  --primary-dark: #3730a3;
  --primary-deep: #1e1b4b;
  --primary-light: #eef2ff;
  --primary-lighter: #f5f3ff;

  /* --- Secondary warm accent --- */
  --accent: #c2410c;
  --accent-soft: #fff7ed;
  --accent-mid: #fed7aa;

  /* --- Neutrals (warm, editorial) --- */
  --text: #0a0a0a;
  --text-mid: #404040;
  --text-subtle: #737373;
  --text-faint: #a3a3a3;
  --border: #e7e5e0;
  --border-strong: #d4d2cc;
  --surface: #ffffff;
  --bg: #faf9f5;
  --bg-alt: #f4f1ea;
  --bg-dark: #1a1814;

  /* --- Status --- */
  --success: #15803d;
  --success-bg: #f0fdf4;
  --warn: #b45309;
  --warn-bg: #fffbeb;
  --danger: #b91c1c;
  --danger-bg: #fef2f2;
  --info: #1d4ed8;
  --info-bg: #eff6ff;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(23, 17, 5, 0.04);
  --shadow: 0 4px 12px rgba(23, 17, 5, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 17, 5, 0.08);
  --shadow-lg: 0 16px 40px rgba(23, 17, 5, 0.10);
  --shadow-xl: 0 32px 80px rgba(23, 17, 5, 0.14);

  /* --- Radii --- */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* --- Typography --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;

  /* --- Transitions --- */
  --t-fast: 0.15s ease;
  --t-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--primary); color: #fff; }

/* TYPOGRAPHY */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
h1, h2, h3, h4 { line-height: 1.15; }

.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-subtle);
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.5; }

.lede {
  font-size: 20px; line-height: 1.6;
  color: var(--text-mid); font-weight: 400;
  letter-spacing: -0.005em;
}
.caps { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* CONTAINERS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) {
  .container, .container-narrow, .container-wide { padding: 0 20px; }
}

/* NAVIGATION */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(231, 229, 224, 0.6);
}
.site-nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 36px;
}
.site-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; color: var(--text);
  text-decoration: none;
}
.site-nav-brand:hover { color: var(--text); }
.site-nav-logo {
  width: 34px; height: 34px;
  background: var(--bg-dark); color: #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px; font-style: italic;
}
.site-nav-links {
  display: flex; gap: 32px;
  margin-left: auto; align-items: center;
}
.site-nav-links a {
  color: var(--text-mid); font-size: 14px; font-weight: 500;
  transition: color var(--t-fast);
}
.site-nav-links a:hover { color: var(--text); }
.site-nav-cta {
  background: var(--text); color: #fafaf7 !important;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  transition: all var(--t-fast);
}
.site-nav-cta:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 800px) {
  .site-nav-links { gap: 18px; }
  .site-nav-links a.hide-mobile { display: none; }
}

/* FOOTER */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 32px 40px;
  margin-top: 120px;
  font-size: 14px;
}
.site-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #fff; margin-bottom: 18px; font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: #fff; }
.site-footer .brand-block {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 22px; margin-bottom: 16px;
}
.site-footer .brand-block .logo {
  width: 34px; height: 34px;
  background: #fff; color: var(--bg-dark);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px; font-style: italic;
}
.site-footer .tagline {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.site-footer-bottom {
  max-width: 1200px; margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 820px) {
  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer-bottom { flex-direction: column; gap: 8px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  font-family: inherit; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--t-base);
  line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--text); color: #fafaf7; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.btn-primary:hover { background: var(--primary-deep); color: #fafaf7; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { color: var(--text); border-color: var(--text); background: rgba(0,0,0,0.02); }
.btn-ghost { background: transparent; color: var(--primary); padding: 10px 16px; }
.btn-ghost:hover { background: var(--primary-light); color: var(--primary); }
.btn-light { background: #fafaf7; color: var(--text); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: #fff; color: var(--text); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-xs { padding: 7px 12px; font-size: 12px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }
.btn-arrow::after { content: '→'; display: inline-block; transition: transform var(--t-base); font-weight: 400; }
.btn-arrow:hover::after { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); font-weight: 600; font-size: 14px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 2px;
  transition: all var(--t-base);
}
.link-arrow::after { content: '→'; transition: transform var(--t-base); }
.link-arrow:hover { color: var(--primary); border-color: var(--primary); }
.link-arrow:hover::after { transform: translateX(4px); }

/* CARDS */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--t-base);
}
.card-hover:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* EDITORIAL CARD */
.ed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t-base);
  display: flex; flex-direction: column;
  position: relative;
  text-decoration: none; color: inherit;
  min-height: 240px;
}
.ed-card:hover {
  border-color: var(--text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit; text-decoration: none;
}
.ed-card .ed-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--text-faint);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-feature-settings: 'tnum';
}
.ed-card .ed-icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all var(--t-base);
}
.ed-card:hover .ed-icon {
  background: var(--primary-light);
  transform: rotate(-3deg) scale(1.05);
}
.ed-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 8px; color: var(--text);
}
.ed-card p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.55; margin-bottom: 20px;
  flex-grow: 1;
}
.ed-card .ed-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px; font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}
.ed-card .ed-meta .arrow {
  font-size: 18px; color: var(--text);
  transition: transform var(--t-base);
}
.ed-card:hover .ed-meta .arrow { transform: translateX(6px); }
.ed-card.coming-soon { opacity: 0.55; pointer-events: none; }
.ed-card.coming-soon::after {
  content: "Coming soon";
  position: absolute; top: 20px; right: 20px;
  background: var(--accent-mid); color: var(--accent);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* EDITORIAL HERO */
.hero-editorial {
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero-editorial-grid {
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px; align-items: center;
}
.hero-editorial h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 20px 0 28px;
  color: var(--text);
}
.hero-editorial h1 em { font-style: italic; font-weight: 500; color: var(--primary-deep); }
.hero-editorial .lede { max-width: 520px; margin-bottom: 36px; }
.hero-editorial .hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero-editorial { padding: 56px 0 48px; }
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* SECTIONS */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fafaf7; }
.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .kicker { color: var(--accent-mid); }

.section-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 12px 0 18px;
}
.section-header p {
  font-size: 18px; line-height: 1.55;
  color: var(--text-mid);
  max-width: 620px; margin: 0 auto;
}
.section-header.left p { margin: 0; }

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* FEATURED PATH */
.featured-path {
  background: var(--bg-dark);
  color: #fafaf7;
  padding: 64px 56px;
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: center;
}
.featured-path::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(67,56,202,0.3), transparent 60%);
  pointer-events: none;
}
.featured-path-content { position: relative; z-index: 1; }
.featured-path .kicker { color: var(--accent-mid); }
.featured-path h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: #fff;
}
.featured-path p {
  font-size: 18px; opacity: 0.8;
  max-width: 500px; margin-bottom: 28px;
  line-height: 1.55;
}
.featured-path-meta {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.featured-path-meta strong { color: #fff; font-weight: 600; }
.featured-path-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
@media (max-width: 900px) {
  .featured-path { grid-template-columns: 1fr; padding: 40px 32px; }
  .featured-path-visual { display: none; }
}

/* PROOF STRIP */
.proof-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.proof-strip-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.proof-label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-subtle); white-space: nowrap;
}
.proof-items { display: flex; gap: 40px; flex-wrap: wrap; flex: 1; }
.proof-item { font-size: 14px; color: var(--text-mid); font-weight: 500; }
.proof-item strong { color: var(--text); font-weight: 700; }

/* MODULE LIST */
.module-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.module-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px 28px;
  background: var(--surface);
  transition: background var(--t-fast);
  text-decoration: none; color: inherit;
}
.module-item:hover { background: var(--bg); color: inherit; text-decoration: none; }
.module-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--text-faint);
  font-feature-settings: 'tnum';
  width: 50px;
  letter-spacing: -0.02em;
}
.module-item.active .module-num,
.module-item.owned .module-num { color: var(--primary); }
.module-body h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.2;
  margin-bottom: 4px;
  color: var(--text);
}
.module-body p {
  font-size: 14px; color: var(--text-mid); line-height: 1.5;
}
.module-body .module-meta {
  margin-top: 8px;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-subtle);
}
.module-meta .dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
  align-self: center;
}
.module-action {
  color: var(--text); font-size: 20px; font-weight: 400;
  transition: transform var(--t-base);
}
.module-item:hover .module-action { transform: translateX(4px); }
@media (max-width: 640px) {
  .module-item { padding: 20px; gap: 16px; }
  .module-num { font-size: 24px; width: 36px; }
  .module-body h3 { font-size: 17px; }
}

/* FORMS */
.form-card {
  max-width: 460px; margin: 80px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-card h1 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 8px;
}
.form-card p.lead { color: var(--text-mid); margin-bottom: 28px; font-size: 15px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 7px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit;
  background: var(--surface); color: var(--text);
  transition: all var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}
.form-hint { font-size: 12px; color: var(--text-subtle); margin-top: 6px; }
.form-footer { text-align: center; margin-top: 22px; font-size: 14px; color: var(--text-mid); }
.form-footer a { font-weight: 600; color: var(--text); border-bottom: 1px solid var(--text); }

/* ALERTS */
.alert {
  padding: 14px 18px; border-radius: var(--radius);
  margin-bottom: 20px; font-size: 14px; line-height: 1.55;
  border-left: 3px solid;
}
.alert-error { background: var(--danger-bg); border-color: var(--danger); color: #7f1d1d; }
.alert-success { background: var(--success-bg); border-color: var(--success); color: #14532d; }
.alert-info { background: var(--info-bg); border-color: var(--info); color: #1e3a8a; }
.alert-warn { background: var(--warn-bg); border-color: var(--warn); color: #713f12; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.4;
}
.badge-free { background: var(--success-bg); color: var(--success); }
.badge-premium { background: var(--primary-light); color: var(--primary-dark); }
.badge-owned { background: var(--text); color: #fafaf7; }
.badge-soon { background: var(--accent-soft); color: var(--accent); }

/* QUOTE CARD */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  line-height: 1.35; letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.quote-card blockquote::before { content: '\201C'; }
.quote-card blockquote::after { content: '\201D'; }
.quote-author { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; display: grid; place-items: center;
  font-weight: 600; font-size: 14px;
}
.quote-meta strong { display: block; color: var(--text); font-weight: 600; }
.quote-meta span { color: var(--text-subtle); font-size: 13px; }

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; transition: all var(--t-base);
}
.price-card.featured {
  border-color: var(--text); border-width: 2px;
  box-shadow: var(--shadow-md);
}
.price-card .price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: #fafaf7;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 12px;
}
.price-card .price-amount {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text); margin-bottom: 4px;
  font-feature-settings: 'tnum';
}
.price-card .price-amount .period {
  font-size: 15px; font-weight: 400;
  color: var(--text-subtle); font-family: var(--font-sans);
}
.price-card .price-sub { font-size: 14px; color: var(--text-subtle); margin-bottom: 20px; }
.price-card ul { list-style: none; margin: 0 0 24px 0; padding: 0; flex-grow: 1; }
.price-card li {
  padding: 6px 0; font-size: 14px;
  color: var(--text-mid);
  display: flex; gap: 8px; line-height: 1.5;
}
.price-card li::before { content: '\2713'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.price-card.featured li::before { color: var(--primary); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.3;
  margin-bottom: 8px; color: var(--text);
}
.faq-item p { color: var(--text-mid); font-size: 15px; line-height: 1.65; }

/* PATH VIZ CONTAINER */
.path-viz {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px; margin-left: auto;
}

/* UTILITIES */
.text-center { text-align: center; }
.text-muted { color: var(--text-subtle); }
.text-display { font-family: var(--font-display); }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hide { display: none; }
@media (max-width: 720px) { .hide-mobile { display: none !important; } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease-out both; }
@media print { .site-nav, .site-footer { display: none; } }
