/* ===== SHARED APP LAYOUT ===== */
.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--sp-lg);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: var(--sp-md);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.app-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-lg);
}

/* ===== PAGE HEADER ===== */
.page-header { margin-bottom: var(--sp-xl); }
.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}
.page-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== TIERS WHY ===== */
.tiers-why {
  margin-bottom: var(--sp-xl);
}
.tiers-why-inner {
  background: var(--dark-bg);
  border-radius: 16px;
  padding: var(--sp-lg);
}
.tiers-why-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.tiers-why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}
.tiers-why-list li {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.tiers-why-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
@media (max-width: 640px) {
  .tiers-why-list { grid-template-columns: 1fr; }
}

/* ===== TIERS ===== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
@media (max-width: 768px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--sp-md);
  position: relative;
  transition: box-shadow 0.2s;
}
.tier-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.tier-card--featured {
  border: 2px solid var(--accent);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-header { margin-bottom: var(--sp-md); }
.tier-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tier-tagline {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--sp-sm);
}
.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.tier-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}
.tier-list { list-style: none; margin-bottom: var(--sp-md); }
.tier-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 4px 0;
  line-height: 1.4;
}
.tier-list-item svg { flex-shrink: 0; margin-top: 2px; }
.tier-list-item--excluded { color: var(--muted); }

/* ===== FAQ ===== */
.tiers-faq { margin-top: var(--sp-xl); }
.faq-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== INTAKE FORM ===== */
.form-wrapper { max-width: 640px; }
.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: var(--sp-sm);
  margin-bottom: var(--sp-md);
  color: #B91C1C;
  font-size: 14px;
}
.intake-form { display: flex; flex-direction: column; gap: var(--sp-lg); }
.form-section { border-top: 1px solid var(--border); padding-top: var(--sp-md); }
.form-section-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-md); }
.form-label { font-size: 14px; font-weight: 500; }
.required { color: var(--accent); }
.form-input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--card);
  color: var(--fg);
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,145,58,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--muted); }
.form-actions { display: flex; flex-direction: column; gap: var(--sp-sm); align-items: flex-start; }
.form-footnote { font-size: 13px; color: var(--muted); }

/* ===== ONBOARDING ===== */
.onboarding-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-lg);
  align-items: start;
}
@media (max-width: 900px) { .onboarding-layout { grid-template-columns: 1fr; } }

.checklist-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.checklist { display: flex; flex-direction: column; gap: 2px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: background 0.2s;
}
.checklist-item--done { background: var(--bg-warm); }
.checklist-checkbox { flex-shrink: 0; }
.checklist-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.checklist-label { font-size: 15px; font-weight: 500; }
.checklist-item--done .checklist-label { text-decoration: line-through; color: var(--muted); }
.checklist-date { font-size: 12px; color: var(--muted); }
.checklist-date--pending { font-style: italic; }
.checklist-mark {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.checklist-mark:hover { background: var(--accent); color: white; }

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.sidebar-card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}
.sidebar-card-body { font-size: 14px; color: var(--muted); line-height: 1.5; }
.tier-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--sp-xs);
}
.tier-pill--basic { background: var(--bg-warm); color: var(--muted); }
.tier-pill--growth { background: rgba(200,145,58,0.12); color: var(--accent); }
.tier-pill--full { background: var(--dark-bg); color: var(--dark-fg); }
.sidebar-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-steps li { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover { background: #b07830; }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover { background: rgba(200,145,58,0.08); }
.btn--lg { padding: 14px 28px; font-size: 16px; }