/* TaxPilot — landing page styles. Brand: deep teal #0D9488 + gold #F59E0B. */

:root {
  --primary: #0D9488;
  --primary-light: #14B8A6;
  --primary-dark: #0F766E;
  --accent: #F59E0B;
  --accent-light: #FBBF24;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #64748B;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(13, 148, 136, 0.18);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F172A;
    --surface: #1E293B;
    --surface-2: #334155;
    --border: #334155;
    --text: #F8FAFC;
    --text-2: #CBD5E1;
    --text-3: #94A3B8;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* ──────────────────── NAV ──────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-2);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { font-size: 14px; padding: 10px 18px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { padding: 12px 16px; }
}

/* ──────────────────── BUTTONS ──────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background 0.14s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  transform: translateY(-1px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--surface-2);
  color: var(--text);
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ──────────────────── HERO ──────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin: 14px 0 18px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light) 60%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 540px;
}

.badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.badge-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border-color: transparent;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badges { display: flex; gap: 8px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #0F172A;
  color: #fff;
  font-weight: 600;
  border: 1px solid #1F2937;
  transition: transform 0.14s ease;
}
.store-badge:hover { transform: translateY(-1px); color: #fff; }
.store-badge svg { color: #fff; }
.store-small { display: block; font-size: 9px; font-weight: 400; letter-spacing: 0.5px; opacity: 0.85; }
.store-big { display: block; font-size: 14px; font-weight: 600; line-height: 1.1; }

.hero-foot {
  margin-top: 16px;
  color: var(--text-3);
  font-size: 13px;
  max-width: 540px;
}
.hero-foot a { font-weight: 600; }

/* ──────────────────── LIVE CALCULATOR ──────────────────── */
.calc {
  margin: 24px 0 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  max-width: 560px;
}
.calc-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-3);
}
.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.calc-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent);
}
.calc-currency {
  font-weight: 700;
  color: var(--text-2);
  margin-right: 4px;
  font-size: 16px;
}
#calc-gross {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  outline: none;
  width: 100%;
  letter-spacing: -0.2px;
}
#calc-country {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface-2)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%2364748B' d='M6 8L2 4h8z'/></svg>")
    no-repeat right 14px center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 36px 14px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.calc-field-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  grid-column: span 2;
}
.calc-field-checkbox input {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}
.calc-net-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.85;
}
.calc-net-amount {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 6px 0 6px;
  line-height: 1;
}
.calc-net-foot { font-size: 13px; opacity: 0.85; font-weight: 500; }
.calc-net-foot span { font-weight: 700; }

.calc-breakdown {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-row-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}
.calc-row-mini strong { font-weight: 700; }
.calc-row-total {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
}

.calc-cta {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary) !important;
  border: none;
  margin-top: 8px;
}
.calc-cta:hover { background: #fff; }

@media (max-width: 580px) {
  .calc-row { grid-template-columns: 1fr; }
  .calc-field-checkbox { grid-column: span 1; }
  .calc-result { grid-template-columns: 1fr; gap: 16px; }
  .calc-breakdown { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-left: 0; padding-top: 16px; }
  .calc-cta { grid-column: span 1; }
}

/* ──────────────────── AD SLOTS ──────────────────── */
.ad-slot {
  max-width: var(--max);
  margin: 24px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-slot ins { max-width: 100%; }
.ad-slot-leaderboard:not(.ad-slot--disabled) { min-height: 90px; }
.ad-slot-rect:not(.ad-slot--disabled) { min-height: 250px; }
.ad-slot--disabled,
.ad-slot[hidden] {
  display: none !important;
  margin: 0;
  padding: 0;
  min-height: 0;
}

/* ──────────────────── DOWNLOAD CTA STRIP ──────────────────── */
.download {
  max-width: var(--max);
  margin: 48px auto 32px;
  padding: 0 24px;
}
.download-inner {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.download-inner h2 { font-size: clamp(24px, 3vw, 32px); margin: 6px 0 12px; }
.download-inner p { color: var(--text-2); margin: 0; }
.download-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.download-actions .btn { width: 100%; }
@media (max-width: 760px) {
  .download-inner { grid-template-columns: 1fr; padding: 28px; }
}

/* ──────────────────── Language link ──────────────────── */
.lang-link {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-link:hover { background: var(--surface-2); }

/* PHONE MOCK */
.hero-visual { display: flex; justify-content: center; }

.phone-frame {
  width: 320px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #0F172A, #1E293B);
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: rotate(-3deg);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 45px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13,148,136,0.6), rgba(245,158,11,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 99px;
  z-index: 2;
}

.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  height: 100%;
  padding: 36px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.mock-header { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.mock-greeting { font-size: 13px; color: var(--text-3); font-weight: 500; }
.mock-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 99px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.mock-hero-card {
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}
.mock-label { font-size: 9px; letter-spacing: 0.7px; opacity: 0.8; font-weight: 700; }
.mock-amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 4px 0 10px;
}
.mock-amount-suffix { font-size: 14px; font-weight: 600; opacity: 0.7; }
.mock-row { display: flex; gap: 4px; align-items: center; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.18); }
.mock-row > div { flex: 1; }
.mock-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.18); }
.mock-mini-label { font-size: 9px; opacity: 0.7; font-weight: 500; }
.mock-mini-value { font-size: 12px; font-weight: 700; margin-top: 2px; }

.mock-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mock-action {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
}
.mock-action-icon { font-size: 16px; margin-bottom: 3px; }

.mock-nav {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 8px 0 6px;
  margin-left: -16px;
  margin-right: -16px;
}
.mock-tab {
  text-align: center;
  font-size: 8px;
  color: var(--text-3);
  font-weight: 500;
}
.mock-tab > div { font-size: 14px; margin-bottom: 2px; }
.mock-tab-active {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}
.mock-tab-active::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 12%;
  right: 12%;
  bottom: 13px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  border-radius: 12px;
  z-index: -1;
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; transform: rotate(0deg); }
}

/* ──────────────────── TRUST BAR ──────────────────── */
.trust {
  max-width: var(--max);
  margin: 24px auto 64px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-item span { font-size: 12px; color: var(--text-3); font-weight: 500; }

@media (max-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); gap: 16px; } .trust-item:last-child { grid-column: span 2; } }

/* ──────────────────── SECTIONS ──────────────────── */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; padding: 0 24px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 6px 0 10px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}
.section-sub { color: var(--text-2); margin: 0; }

/* ──────────────────── FEATURES ──────────────────── */
.features { max-width: var(--max); margin: 64px auto; padding: 0 24px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 25%, var(--border));
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.feature p { color: var(--text-2); margin: 0; font-size: 14.5px; line-height: 1.55; }

@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ──────────────────── SCREENSHOTS ──────────────────── */
.screenshots { max-width: var(--max); margin: 80px auto; padding: 0 24px; }
.shots-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}
.shot { text-align: center; }
.shot-label { display: block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.shot-frame {
  aspect-ratio: 9 / 17;
  background: linear-gradient(180deg, #0F172A, #1E293B);
  border-radius: 28px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.shot-mock {
  background: var(--bg);
  height: 100%;
  border-radius: 22px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shot-mock-home .shot-pill {
  display: inline-block;
  align-self: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.4px;
  box-shadow: 0 6px 14px rgba(13,148,136,0.3);
}
.shot-bars {
  margin-top: auto;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100px;
}
.shot-bars > div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 4px 4px 0 0;
}

.shot-mock-calc .shot-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.shot-mock-calc .shot-input span { color: var(--text-3); }
.shot-mock-calc .shot-input strong { font-weight: 700; }
.shot-cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.shot-mock-donut { align-items: center; justify-content: center; }
.donut { position: relative; width: 130px; height: 130px; }
.donut-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-center strong { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.donut-center span { font-size: 10px; color: var(--text-3); font-weight: 500; }
.shot-legend { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.shot-legend > div { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--text-2); font-weight: 500; }
.dot { width: 10px; height: 10px; border-radius: 99px; }
.dot-primary { background: var(--primary); }
.dot-accent { background: var(--primary-light); }
.dot-warn { background: var(--accent); }

.shot-chip-row { display: flex; gap: 4px; overflow: hidden; }
.shot-chip {
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 600;
  white-space: nowrap;
}
.shot-chip-active {
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}
.shot-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 11px;
}
.shot-card strong { font-weight: 700; }
.shot-card span { color: var(--primary); font-weight: 600; }

@media (max-width: 920px) { .shots-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shots-row { grid-template-columns: 1fr; } }

/* ──────────────────── PRICING ──────────────────── */
.pricing { max-width: 880px; margin: 32px auto 80px; padding: 0 24px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.plan-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  border: 2px solid transparent;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; }
.plan-price { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 20px; }
.plan-price span { font-size: 14px; color: var(--text-3); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.plan li { font-size: 14.5px; color: var(--text); }
.plan li.muted { color: var(--text-3); }
.plan .btn { width: 100%; }

@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } .plan-featured { transform: none; } }

/* ──────────────────── FAQ ──────────────────── */
.faq { max-width: 760px; margin: 80px auto; padding: 0 24px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq details[open] {
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 10px 0 0; color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* ──────────────────── FOOTER ──────────────────── */
.footer {
  background: color-mix(in srgb, var(--surface) 90%, var(--primary) 4%);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: var(--text-2);
  font-size: 14.5px;
  margin-bottom: 8px;
  font-weight: 500;
}
.footer a:hover { color: var(--primary); }
.footer-tag { color: var(--text-3); font-size: 14px; max-width: 280px; margin: 12px 0 0; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-3);
}
.footer-disclaimer { max-width: 480px; text-align: right; }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; max-width: none; }
}
