:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --ink: #0e1518;
  --muted: #717a85;
  --accent: #1b4332;
  --accent-hover: #143028;
  --accent-soft: #e2ebe5;
  --coral: #e07a5f;
  --coral-soft: #f5dccf;
  --line: #ebebe8;
  --line-strong: #d8d8d4;
  --shadow-sm: 0 1px 2px rgba(15,21,24,.04);
  --shadow: 0 1px 2px rgba(15,21,24,.04), 0 6px 24px rgba(15,21,24,.06);
  --shadow-lg: 0 4px 12px rgba(15,21,24,.06), 0 24px 48px rgba(15,21,24,.08);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1180px;
  --space: 20px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space); }

/* Header */
.site-header {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
}
.brand-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; line-height: 1; }
.brand-logo:hover { color: var(--ink); text-decoration: none; }
.brand-logo svg { width: 44px; height: 44px; display: block; flex-shrink: 0; }
.brand-logo-wordmark { font-size: 2.2rem; letter-spacing: -0.03em; line-height: 1; }
.brand-logo-wordmark .psy { font-family: var(--font-display); font-weight: 800; }
.brand-logo-wordmark .slash { font-family: var(--font-display); font-weight: 300; color: var(--ink); opacity: 0.45; padding: 0 0.04em; }
.brand-logo-wordmark .hour { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700; }
@media (max-width: 760px) {
  .brand-logo svg { width: 38px; height: 38px; }
  .brand-logo-wordmark { font-size: 1.85rem; }
}
.nav { display: flex; gap: 32px; align-items: center; }
.nav a:not(.btn) {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color .15s;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.nav a:not(.btn):hover::after { transform: scaleX(0.5); }
.nav a:not(.btn).active::after { transform: scaleX(1); background: var(--coral); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px;
  padding: 0;
  background: transparent;
  border: none; cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s, width .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer; transition: all .15s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: #1a2329; color: white; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #d96a4f; color: white; transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--bg); border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-danger { background: #c93c3c; color: white; }
.btn-danger:hover { background: #a92e2e; color: white; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* Hero */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -300px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
  opacity: .6; pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; margin-bottom: 24px; }
.hero .lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 56ch; margin: 0 0 36px; line-height: 1.6; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
section { padding: clamp(48px, 7vw, 80px) 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title p { color: var(--muted); margin: 12px 0 0; font-size: 1.05rem; }
.eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 12px; }

/* Cards / Listings */
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--line-strong); }
.card.is-premium {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 35%, var(--surface)) 0%, var(--surface) 90px);
}
.card.is-premium:hover { box-shadow: 0 0 0 1px var(--accent), var(--shadow); }
.card.is-muted { transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.card .photo {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--coral-soft));
  object-fit: cover;
}
.card .name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.card .specialties { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: .78rem; font-weight: 600;
  font-family: var(--font-display);
}
.tag.tier-pro { background: var(--coral-soft); color: #b35339; }

.field input:disabled, .field textarea:disabled, .field select:disabled {
  background: var(--bg);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.7;
}
.card .meta { color: var(--muted); font-size: .92rem; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 540px; }
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field-pro .pro-tag { position: absolute; top: 0; right: 0; background: var(--coral); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; line-height: 1.4; }
.field label { font-weight: 600; font-size: .9rem; font-family: var(--font-display); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14,21,24,.08);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .help { color: var(--muted); font-size: .85rem; }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--accent); }
.error { color: #c93c3c; font-size: .9rem; }
.success { color: var(--accent); font-size: .9rem; }

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
  padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.filters .field { flex: 1 1 200px; gap: 6px; }
.filters .field label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Detail page */
.detail-hero {
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.detail-grid { display: grid; gap: 40px; grid-template-columns: 280px 1fr; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-hero .photo {
  width: 240px; height: 240px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft), var(--coral-soft)); object-fit: cover;
}
.detail-content h1 { margin-top: 0; }
.detail-meta { color: var(--muted); margin-bottom: 16px; line-height: 1.9; }
.detail-meta strong { color: var(--ink); font-weight: 600; }

/* Quiz */
.quiz-step { background: var(--surface); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.quiz-options label {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; transition: border-color .15s, background .15s;
  font-weight: 500;
}
.quiz-options label:hover { border-color: var(--ink); background: var(--bg); }
.quiz-options input[type="radio"],
.quiz-options input[type="checkbox"] { accent-color: var(--accent); }

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pills .pill {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  padding: 8px 16px; border-radius: 999px; cursor: pointer; font: inherit;
  font-size: .9rem; transition: border-color .15s, background .15s, color .15s;
}
.filter-pills .pill:hover { border-color: var(--ink); }
.filter-pills .pill.active { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.audience-tag {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  border-radius: 999px;
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.audience-tag.client { background: #fce8e1; color: #9a4730; }
.audience-tag.pro { background: #f0e8d8; color: #7a5e2c; }
.audience-tag.science { background: var(--accent-soft); color: var(--accent); }

.compass-sway-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
  margin-right: 4px;
  animation: compass-sway 5s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes compass-sway {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(15deg); }
  50%  { transform: rotate(-10deg); }
  70%  { transform: rotate(6deg); }
  85%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}
.quiz-progress { color: var(--muted); font-size: .85rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-family: var(--font-display); }
.quiz-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.quiz-actions .btn { flex: 1 1 auto; min-width: max-content; }
.quiz-skip-row { display: flex; justify-content: center; margin-top: 14px; }
@media (max-width: 480px) {
  .quiz-actions { flex-direction: column-reverse; gap: 8px; }
  .quiz-actions .btn { width: 100%; min-width: 0; }
}

/* Footer */
.site-footer {
  margin-top: clamp(80px, 12vw, 140px); padding: 48px 0;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem;
}
.site-footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
}
.site-footer-brand { color: var(--ink); font-weight: 600; }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; align-items: center; }
.site-footer-links a { color: var(--muted); }
.site-footer-links a:hover { color: var(--ink); text-decoration: none; }
.site-footer-email { color: var(--muted); }
.site-footer-copy { font-size: .8rem; color: var(--muted); opacity: .8; }
.nl-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.nl-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 560px; margin: 0 auto; }
.nl-pitch { display: flex; flex-direction: column; gap: 4px; align-items: center; color: var(--ink); }
.nl-pitch strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.nl-pitch span { color: var(--muted); font-size: .88rem; }
.nl-form { display: flex; gap: 8px; width: 100%; max-width: 420px; flex-wrap: wrap; justify-content: center; }
.nl-form input[type="email"] { flex: 1 1 220px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 8px; font-size: .95rem; background: var(--surface); }
.nl-msg { font-size: .85rem; min-height: 1em; }
.nl-msg.error { color: #a8351e; }
.nl-msg.success { color: var(--accent); }

/* Utility */
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.hide { display: none !important; }

/* Mobile */
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a:not(.btn) {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav a:not(.btn):last-of-type { border-bottom: none; }
  .nav a:not(.btn)::after { display: none; }
  .nav a.btn { margin: 12px 24px; justify-content: center; }
  .site-header .container { position: relative; }
}

/* === Blog preview on homepage === */
.blog-preview-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #f4ede4 100%);
  border-top: 1px solid var(--line);
}
.blog-preview-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.blog-preview-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 6px 0 0; letter-spacing: -0.01em;
}
.blog-preview-lead { margin: 8px 0 0; max-width: 56ch; font-size: .98rem; }
.blog-preview-all {
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s, gap .2s;
}
.blog-preview-all:hover { color: var(--coral); border-color: var(--coral); }

.blog-preview-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px;
}
.blog-preview-grid.single { grid-template-columns: 1fr; max-width: 720px; }

.blog-preview-hero {
  display: block; color: inherit; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.blog-preview-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,21,24,.10);
}
.blog-preview-hero .hero-img-wrap { overflow: hidden; }
.blog-preview-hero img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform .6s ease;
}
.blog-preview-hero:hover img { transform: scale(1.03); }
.blog-preview-hero .hero-body { padding: 28px; }
.blog-preview-hero .hero-meta {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.blog-preview-hero h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.25; margin: 12px 0 14px; letter-spacing: -0.005em;
  color: var(--ink);
}
.blog-preview-hero .hero-excerpt {
  color: var(--muted); margin: 0 0 18px; line-height: 1.6; font-size: .96rem;
}
.blog-preview-hero .hero-readmore {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .85rem; color: var(--coral); letter-spacing: 0.04em;
}

.blog-preview-list {
  display: flex; flex-direction: column; gap: 4px;
}
.blog-preview-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  text-decoration: none; color: inherit;
  padding: 14px; border-radius: var(--radius);
  transition: background .2s ease;
  align-items: center;
}
.blog-preview-item:hover { background: rgba(255,255,255,.7); }
.blog-preview-item + .blog-preview-item { border-top: 1px solid var(--line); border-radius: 0; padding-top: 18px; margin-top: 4px; }
.blog-preview-item + .blog-preview-item:hover { border-top-color: transparent; border-radius: var(--radius); }
.blog-preview-item .item-img-wrap {
  overflow: hidden; border-radius: 10px;
}
.blog-preview-item img {
  width: 110px; aspect-ratio: 1/1; object-fit: cover;
  transition: transform .5s ease;
}
.blog-preview-item:hover img { transform: scale(1.05); }
.blog-preview-item .item-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; line-height: 1.35; color: var(--ink);
}
.blog-preview-item .item-meta {
  font-size: .76rem; color: var(--muted); margin-top: 6px;
  display: flex; align-items: center; gap: 6px;
}

@media (max-width: 860px) {
  .blog-preview-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-preview-section { padding: 56px 0 64px; }
  .blog-preview-hero .hero-body { padding: 22px; }
  .blog-preview-item { grid-template-columns: 88px 1fr; gap: 14px; padding: 12px; }
  .blog-preview-item img { width: 88px; }
}
@media (max-width: 480px) {
  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .blog-preview-all { padding: 6px 0; }
}

.plan-toggle { display: inline-flex; padding: 4px; background: #f1f0ec; border-radius: 999px; margin-bottom: 18px; font-size: .85rem; }
.plan-toggle button { border: 0; background: transparent; padding: 6px 16px; border-radius: 999px; cursor: pointer; font-weight: 500; color: var(--muted); transition: all .15s; }
.plan-toggle button.active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.plan-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; align-items: stretch; }
.plan-card { padding: 22px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; position: relative; }
.plan-card-pro { background: linear-gradient(160deg, #1b4332 0%, #143028 100%); color: #fff; border-color: #1b4332; box-shadow: 0 12px 32px -12px rgba(27,67,50,.4); }
.plan-badge { position: absolute; top: 14px; right: 14px; background: var(--coral); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border-radius: 999px; }
.plan-name { font-family: var(--font-display, 'Manrope', sans-serif); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.plan-card:not(.plan-card-pro) .plan-name { color: var(--muted); }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price { font-family: var(--font-display, 'Manrope', sans-serif); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; line-height: 1; }
.plan-currency { font-size: 1.1rem; font-weight: 600; opacity: .8; }
.plan-cycle { font-size: .85rem; opacity: .7; margin-bottom: 16px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.plan-features li { padding: 6px 0 6px 24px; position: relative; font-size: .9rem; line-height: 1.5; }
.plan-features li::before { content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 8px; border-left: 2px solid var(--coral); border-bottom: 2px solid var(--coral); transform: rotate(-45deg); }
.plan-card:not(.plan-card-pro) .plan-features li::before { border-color: var(--muted); }
.plan-cta { display: block; width: 100%; padding: 14px; background: var(--coral); color: #fff; border: 0; border-radius: 999px; font-weight: 700; font-family: var(--font-display, 'Manrope', sans-serif); font-size: .95rem; cursor: pointer; transition: transform .15s; }
.plan-cta:hover { transform: translateY(-1px); }
.plan-card:not(.plan-card-pro) .plan-cta { background: transparent; color: var(--accent); border: 1px solid var(--line-strong); cursor: default; }
.plan-card:not(.plan-card-pro) .plan-cta:hover { transform: none; }
@media (max-width: 640px) {
  .plan-grid { grid-template-columns: 1fr; }
}
