/* ============================================================
   ClipForge — Conversion Landing Page
   Dark, premium, masculine. Electric blue accent.
   ============================================================ */

:root {
  --bg:        #09090b;
  --bg-2:      #111117;
  --bg-3:      #18181f;
  --accent:    #2563eb;  /* electric blue */
  --accent-2:  #1d4ed8;
  --accent-dim: rgba(37, 99, 235, 0.12);
  --accent-glow: rgba(37, 99, 235, 0.25);
  --text:      #f1f0ee;
  --text-dim:  rgba(241, 240, 238, 0.45);
  --text-mid:  rgba(241, 240, 238, 0.70);
  --border:    rgba(241, 240, 238, 0.07);
  --border-2:  rgba(241, 240, 238, 0.12);
  --success:   #10b981;
  --radius:    10px;
  --radius-lg: 16px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* ---- Layout containers ---- */
.section {
  padding: clamp(72px, 10vh, 112px) clamp(24px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.section-tight {
  padding: clamp(48px, 7vh, 80px) clamp(24px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.section--dark { background: var(--bg-2); }
.section--dark-2 { background: var(--bg-3); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-2); }

/* ---- Section label ---- */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---- Typography ---- */
.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
  max-width: 20ch;
}
.section-headline--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-mid);
  max-width: 55ch;
  line-height: 1.7;
}
.section-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--text-mid); color: var(--text); }

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_151409/9141ec0a-1258-4e3d-a83d-082d4f12163b.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(100px, 14vh, 130px) clamp(24px, 5vw, 80px) clamp(60px, 8vh, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  max-width: 48ch;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dim);
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.hero-proof-text strong { color: var(--text); font-weight: 600; }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clip-preview-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.clip-preview-card:nth-child(2) { transform: rotate(-0.4deg); }
.clip-preview-card:nth-child(3) { transform: rotate(0.3deg); }
.clip-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb33);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-thumb svg { color: #60a5fa; }
.clip-info { flex: 1; }
.clip-platform {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.clip-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.clip-stats {
  display: flex;
  gap: 12px;
}
.clip-stat {
  font-size: 0.7rem;
  color: var(--text-dim);
}
.clip-stat strong { color: var(--text-mid); font-weight: 600; }
.clip-badge-viral {
  background: rgba(16,185,129,0.15);
  color: #6ee7b7;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ---- PROBLEM SECTION ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.problem-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.problem-item:first-child { border-top: 1px solid var(--border); }
.problem-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fca5a5;
}
.problem-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.problem-text p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---- SYSTEM STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border-2);
}
@media (max-width: 900px) { .step-connector { display: none; } }

/* ---- WHAT YOU GET ---- */
.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 700px) { .get-grid { grid-template-columns: 1fr; } }

.get-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.get-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 1px;
}
.get-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.01em;
}
.get-text p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--popular {
  background: var(--bg-3);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 40px rgba(37,99,235,0.05);
}
.popular-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.55;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; color: #60a5fa; }
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.pricing-cta--primary {
  background: var(--accent);
  color: #fff;
}
.pricing-cta--primary:hover { background: var(--accent-2); }
.pricing-cta--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.pricing-cta--outline:hover { border-color: var(--text-mid); }

/* ---- GUARANTEE ---- */
.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  margin: 0 auto 28px;
}
.guarantee-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.guarantee-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

/* ---- WHO IT'S FOR ---- */
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 800px;
  margin: 40px auto 0;
}
.audience-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color 0.15s, color 0.15s;
}
.audience-pill:hover { border-color: var(--accent); color: var(--text); }
.audience-pill-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 22px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- FINAL CTA ---- */
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.final-cta-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.7;
}
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-3); }
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 14px;
}
.form-disclaimer svg { vertical-align: middle; }

/* ---- CONFIRMATION PAGE ---- */
.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.confirm-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  margin: 0 auto 28px;
}
.confirm-card h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 16px;
}
.confirm-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.confirm-card .btn-ghost { margin: 0 auto; }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 80px);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.03em;
}
.footer-tag {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-copy { font-size: 0.72rem; color: var(--text-dim); margin-top: 8px; }
.footer-social { display: flex; gap: 16px; margin-bottom: 4px; }
.footer-social a {
  color: var(--text-dim);
  transition: color 0.15s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--text); }

/* ---- PRICING COMPARE TABLE ---- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table thead th {
  padding: 20px 28px 16px;
  text-align: center;
  vertical-align: bottom;
  font-weight: 400;
}

.compare-table thead th.compare-feature-col {
  text-align: left;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 24px;
  min-width: 200px;
}

.compare-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.compare-tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.compare-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.compare-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.compare-col--popular {
  background: rgba(37, 99, 235, 0.05);
  border-left: 1px solid rgba(37, 99, 235, 0.2);
  border-right: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
}

.compare-popular-banner {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.compare-table tbody td {
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-mid);
  vertical-align: middle;
}

.compare-table tbody tr:last-child td {
  border-top: none;
}

.compare-feature {
  text-align: left !important;
  color: var(--text-mid) !important;
  font-weight: 500;
}

.compare-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.compare-dash {
  color: var(--text-dim) !important;
}

.compare-best-for td {
  background: var(--bg-3);
  border-top: 2px solid var(--border-2) !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.compare-best-for .compare-feature {
  font-weight: 700 !important;
  color: var(--text) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table tfoot td {
  padding: 24px 28px 0;
  border-top: none;
}

.compare-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.15s;
}

.compare-cta--primary {
  background: var(--accent);
  color: #fff;
}
.compare-cta--primary:hover { background: var(--accent-2); }

.compare-cta--outline {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.compare-cta--outline:hover { border-color: var(--text-mid); }

/* Mobile stacked cards */
.compare-mobile-cards { display: none; }

@media (max-width: 860px) {
  .compare-wrap { display: none; }
  .compare-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

  .compare-mobile-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .compare-card--popular {
    background: var(--bg-3);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), inset 0 0 30px rgba(37,99,235,0.05);
  }

  .compare-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .compare-mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .compare-mobile-features li {
    font-size: 0.85rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .compare-mobile-for {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    margin-bottom: 12px;
    text-align: center;
  }
}

/* ---- Mobile tweaks ---- */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .form-card { padding: 24px 20px; }
  .section { padding-top: clamp(56px, 8vh, 80px); padding-bottom: clamp(56px, 8vh, 80px); }
  .audience-pills { justify-content: center; }
}

/* ---- Smooth scroll offset for anchors ---- */
section[id] { scroll-margin-top: 70px; }