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

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-border: #bfdbfe;
  --bg: #f9fafb;
  --bg-2: #ffffff;
  --bg-3: #f3f4f6;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.blue { color: var(--blue); }
.blue-text { color: var(--blue); }

/* kept for old references in HTML */
.green { color: var(--blue); }
.green-text { color: var(--blue); }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 500;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.3px;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Nav center (dropdown triggers) ── */
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

/* Dropdown trigger button */
.nav-dd {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
  text-decoration: none;
  white-space: nowrap;
  height: 36px;
}

.nav-trigger:hover,
.nav-dd:hover .nav-trigger {
  color: var(--text);
  background: var(--bg-3);
}

.nav-trigger-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #9ca3af;
}

.nav-dd:hover .nav-trigger-chevron { transform: rotate(180deg); }

/* ── Mega drop ── */
.mega-drop {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  display: none;
  z-index: 499;
  animation: megaIn 0.15s ease;
}

@keyframes megaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dd:hover .mega-drop { display: block; }

.md-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  gap: 32px;
}

.md-cols {
  display: flex;
  flex: 1;
  gap: 0;
}

.md-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.md-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 6px 10px 8px;
}

.md-link {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.1s;
  color: var(--text);
}

.md-link:hover { background: var(--bg-3); }

.md-icon {
  width: 30px;
  height: 30px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

.md-link strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.md-link span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* ── Mega feature card (right side) ── */
.md-feature {
  width: 220px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.md-feature-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9ca3af;
}

.md-feat-card {
  background: linear-gradient(135deg, var(--blue-light), #ffffff);
  border: 1px solid var(--blue-border);
  border-radius: 11px;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.md-feat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}

.md-feat-img {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 7px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md-feat-card strong {
  display: block;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.md-feat-card p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 8px;
}

.md-feat-read {
  font-size: 0.76rem;
  color: var(--blue);
  font-weight: 600;
}

/* ── Nav plain link (Pricing) ── */
.nav-plain {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
  height: 36px;
}
.nav-plain:hover { color: var(--text); background: var(--bg-3); }

/* ── Nav actions ── */
.nav-actions { display: flex; align-items: center; gap: 8px; }

.btn-black {
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 7px;
  transition: background 0.15s;
  display: inline-block;
}
.btn-black:hover { background: #374151; }

/* Nav links (legacy - keep for back-compat) */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.btn-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text); }

.btn-green {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 7px;
  transition: background 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-green:hover { background: var(--blue-dark); }
.btn-green.btn-lg { font-size: 1rem; padding: 14px 30px; border-radius: 8px; }

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px 60px 100px;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(37,99,235,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(37,99,235,0.04) 0%, transparent 60%);
  min-height: 88vh;
  position: relative;
}

.hero-inner { max-width: 600px; flex-shrink: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-note { font-size: 0.78rem; color: #9ca3af; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num { font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.proof-lbl { font-size: 0.75rem; color: var(--muted); }
.proof-div { width: 1px; height: 36px; background: var(--border); }

/* Hero floating cards */
.hero-float {
  flex-shrink: 0;
  position: relative;
  width: 340px;
}

.mock-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}

.mock-card-2 {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 260px;
  z-index: 1;
  opacity: 0.65;
  transform: rotate(3deg);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-avatar {
  width: 38px; height: 38px;
  background: var(--blue-dark);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.mock-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.mock-sub  { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.mock-tag-green {
  margin-left: auto;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.mock-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mock-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.mock-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.mock-btn:hover { background: var(--blue-dark); }

.mock-generating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 500;
}

.mock-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(37,99,235,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Sections shared ── */
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 540px;
}

/* ── How it works ── */
.how {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

.step-line { display: none; }

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.68; max-width: 580px; }

/* ── Niches ── */
.niches {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.niche-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: default;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.niche-card span { font-size: 1.2rem; }
.niche-card:hover { border-color: var(--blue-border); color: var(--blue); background: var(--blue-light); }

/* ── Quiz ── */
.quiz {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
  text-align: center;
}

.quiz .section-sub { margin: 0 auto 48px; }

.quiz-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.qs-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-align: left;
}

.qs-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  text-align: left;
}

.qs-opt {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.qs-opt:hover { border-color: var(--blue-border); color: var(--blue); background: var(--blue-light); }
.qs-opt.selected { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }

.quiz-result { text-align: center; }

.result-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.result-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}

.quiz-progress {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 32px;
  overflow: hidden;
}

.qp-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ── Features ── */
.features {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-left .section-title { margin-bottom: 32px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fl-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-list p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* Feature card mock */
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 2px 8px rgba(0,0,0,0.05);
}

.fc-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.fc-value { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.fc-divider { height: 1px; background: var(--border); margin: 16px 0; }
.fc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fc-row span { font-size: 0.78rem; color: var(--muted); }
.fc-row strong { font-size: 0.83rem; color: var(--text); }

.fc-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
}
.fc-btn:hover { background: var(--blue-dark); }

/* ── Reviews ── */
.reviews {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}

.reviews .section-title { margin-bottom: 56px; text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.review-card:hover { border-color: var(--blue-border); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }

.review-stars {
  display: flex;
  gap: 3px;
}

.review-star {
  width: 14px; height: 14px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-quote {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.review-role {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 2px;
}

.reviews-social-proof {
  text-align: center;
  margin-top: 48px;
  font-size: 0.8rem;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

.reviews-social-proof span { color: var(--muted); font-weight: 600; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 460px; }
  .reviews { padding: 70px 20px; }
}

/* ── Pricing ── */
.pricing {
  padding: 110px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}

.bt-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.bt-switch {
  width: 44px;
  height: 24px;
  background: var(--border);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.bt-switch.active { background: var(--blue); }

.bt-knob {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 3px;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.bt-switch.active .bt-knob { transform: translateX(20px); }

.bt-save-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.bt-save-badge.visible { opacity: 1; transform: translateY(0); }

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.pricing-card-featured {
  background: var(--bg-2);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(37,99,235,0.12);
}

.pricing-card-featured:hover {
  box-shadow: 0 0 0 1px var(--blue), 0 12px 40px rgba(37,99,235,0.18);
}

.pc-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pc-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.pc-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 4px;
}

.pc-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
  transition: opacity 0.15s;
}

.pc-period {
  font-size: 0.82rem;
  color: var(--muted);
  padding-bottom: 5px;
}

.pc-annual-note {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 6px;
  min-height: 16px;
}

.pc-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 36px;
}

/* Buttons */
.pc-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  margin-bottom: 22px;
}

.pc-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.pc-btn-ghost:hover { border-color: var(--text); color: var(--text); }

.pc-btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue-border);
  color: var(--blue);
}
.pc-btn-outline:hover { background: var(--blue-light); }

.pc-btn-blue {
  background: var(--blue);
  color: #fff;
}
.pc-btn-blue:hover { background: var(--blue-dark); }

/* Feature list */
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pc-feat {
  font-size: 0.79rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pc-feat::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pc-feat-no { opacity: 0.4; }
.pc-feat-no::before {
  background-color: #f3f4f6;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l4 4M6 2L2 6' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pc-feat-strong { color: var(--text); font-weight: 600; }

/* Enterprise bar */
.enterprise-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 28px;
}

.eb-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.eb-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 600px;
}

/* Guarantee bar */
.guarantee-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 56px;
  font-size: 0.87rem;
  color: #166534;
  line-height: 1.6;
}

.gb-icon {
  width: 40px; height: 40px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
}

.guarantee-bar strong { color: #14532d; }

/* Pricing FAQ */
.pricing-faq {
  max-width: 720px;
  margin: 0 auto;
}

.pfaq-item {
  border-bottom: 1px solid var(--border);
}

.pfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}

.pfaq-q:hover { color: var(--blue); }

.pfaq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--muted);
}

.pfaq-q.open .pfaq-chevron { transform: rotate(180deg); }

.pfaq-a {
  display: none;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 18px;
}

.pfaq-a.open { display: block; }

/* Responsive pricing */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing { padding: 80px 40px; }
}

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 70px 20px; }
}

@media (max-width: 520px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .enterprise-bar { flex-direction: column; align-items: flex-start; }
}

/* ── Final CTA ── */
.final-cta {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--blue-light) 100%);
}

.final-cta .section-title { margin-bottom: 14px; }
.final-cta .section-sub { margin: 0 auto 36px; text-align: center; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
}

.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 60px 24px 80px; min-height: auto; gap: 48px; }
  .hero-float { width: 100%; max-width: 340px; align-self: center; }
  .mock-card-2 { display: none; }
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .how, .niches, .quiz, .features, .final-cta { padding: 70px 20px; }
  .niches-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .quiz-card { padding: 28px 20px; }
  .footer { padding: 28px 20px; flex-direction: column; gap: 10px; text-align: center; }
}
