:root {
  --bg: #0c0e14;
  --fg: #f0ede6;
  --accent: #d4a43a;
  --accent-dim: #a07820;
  --muted: #6b7280;
  --surface: #14171f;
  --surface-2: #1c1f2a;
  --border: #252836;
  --green: #3ecf8e;
  --red: #e05555;
}

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

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

h1, h2, h3 { font-family: 'Sora', sans-serif; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-headline {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-lede {
  font-size: 17px;
  color: #9ca3af;
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* RISK CARDS */
.hero-right { display: flex; flex-direction: column; gap: 16px; }

.risk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.risk-card.green { border-color: rgba(62,207,142,0.25); }

.risk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.risk-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.risk-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.risk-badge.high { background: rgba(224,85,85,0.15); color: var(--red); }
.risk-badge.low { background: rgba(62,207,142,0.15); color: var(--green); }

.risk-company {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.risk-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.risk-score-bar {
  height: 4px;
  background: #252836;
  border-radius: 2px;
  margin-bottom: 14px;
  overflow: hidden;
}

.risk-score-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.risk-score-fill.low { background: var(--green); }

.risk-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.risk-action {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.risk-action.flag { background: rgba(224,85,85,0.1); color: var(--red); }
.risk-action.doc { background: var(--surface-2); color: var(--fg); }
.risk-action.block { background: var(--red); color: white; }
.risk-action.proceed { background: rgba(62,207,142,0.1); color: var(--green); }

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.proof-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.proof-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features-header p {
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.howitworks h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.steps { display: flex; flex-direction: column; gap: 0; }

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

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

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 36px;
  padding-top: 2px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
  text-align: center;
}

.manifesto-text {
  font-size: 22px;
  font-family: 'Sora', sans-serif;
  font-style: italic;
  color: #c8c4bb;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.manifesto-attr {
  font-size: 13px;
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 80px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.footer-desc { font-size: 12px; color: var(--muted); }

.footer-copy { font-size: 12px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 38px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .proof { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .navbar { padding: 20px 24px; }
  .features, .howitworks, .closing { padding: 48px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .stat-value { font-size: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* ========================
   PRICING PAGE
   ======================== */

.pricing-value-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.pricing-header {
  max-width: 720px;
  margin: 72px auto 56px;
  text-align: center;
  padding: 0 24px;
}

.pricing-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.pricing-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--fg);
  font-family: 'Sora', sans-serif;
}

.pricing-subhead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* TIER CARDS */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 48px;
  align-items: start;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tier-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(212,164,58,0.07) 0%, var(--surface) 60%);
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0e14;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tier-target {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.tier-amount {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.tier-period {
  font-size: 16px;
  color: var(--muted);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 14px;
  flex: 1;
}

.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
  letter-spacing: 0.2px;
}

.tier-cta:hover { opacity: 0.85; }

.tier-cta-primary {
  background: var(--accent);
  color: #0c0e14;
}

.tier-cta-secondary {
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--border);
}

/* TRANSPARENCY STRIP */
.pricing-transparency {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}

.pricing-transparency-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-transparency h2 {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-transparency p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.8;
}

/* FAQ */
.pricing-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 48px;
}

.faq-headline {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px;
}

.faq-q {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING CTA */
.pricing-closing {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-closing h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-closing p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.pricing-cta-lg {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.pricing-closing-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ========================
   HERO CTAs
   ======================== */

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0c0e14;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
}

.cta-primary:hover { opacity: 0.85; }

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease;
}

.cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ========================
   SHARED SECTION HEADER
   ======================== */

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ========================
   THREE PILLARS
   ======================== */

.pillars {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-inner { width: 100%; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s ease;
}

.pillar-card:hover { border-color: var(--accent-dim); }

.pillar-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(212,164,58,0.07) 0%, var(--surface) 60%);
}

.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.pillar-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
}

.pillar-link:hover { opacity: 0.75; }

/* ========================
   WHY ARKĒ
   ======================== */

.why-arke {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.why-arke-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.why-tile-number {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.why-tile h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-tile p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ========================
   BUILT FOR
   ======================== */

.built-for {
  padding: 80px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.built-for-inner { width: 100%; }

.built-for-body {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 20px;
}

.built-for-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ========================
   PRICING TEASER
   ======================== */

.pricing-teaser {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.pricing-teaser-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-teaser-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pt-tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.pt-tier-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(212,164,58,0.06) 0%, var(--bg) 60%);
}

.pt-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0e14;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pt-tier-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.pt-tier-price {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1;
}

.pt-tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.pt-tier-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-teaser-cta {
  text-align: center;
}

/* ========================
   SITE FOOTER (new)
   ======================== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover { color: var(--accent); }

/* ========================
   RESPONSIVE (LANDING)
   ======================== */

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

@media (max-width: 900px) {
  .pillars { padding: 48px 24px; }
  .pillar-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-arke { padding: 48px 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .built-for { padding: 48px 24px; }
  .pricing-teaser { padding: 48px 24px; }
  .pricing-teaser-tiers { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
  .site-footer { padding: 32px 24px; }
  .site-footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .pt-tier-price { font-size: 26px; }
}

/* RESPONSIVE PRICING */
@media (max-width: 900px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
    padding: 0 24px;
    max-width: 500px;
  }
  .pricing-header { margin: 48px auto 40px; }
  .pricing-headline { font-size: 34px; }
  .pricing-faq { padding: 48px 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-transparency { padding: 48px 24px; }
  .pricing-value-strip { padding: 14px 24px; }
}

@media (max-width: 600px) {
  .pricing-headline { font-size: 28px; }
  .tier-amount { font-size: 34px; }
  .pricing-closing h2 { font-size: 28px; }
}

/* ========================
   LEAD CAPTURE FORM
   ======================== */

.lead-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.lead-inner {
  max-width: 760px;
  margin: 0 auto;
}

.lead-header {
  text-align: center;
  margin-bottom: 48px;
}

.lead-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.lead-headline {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--fg);
}

.lead-subhead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-field-full {
  grid-column: 1 / -1;
}

.lead-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.2px;
}

.lead-req {
  color: var(--accent);
}

.lead-optional {
  color: var(--muted);
  font-weight: 400;
}

.lead-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
}

.lead-input::placeholder {
  color: var(--muted);
}

.lead-input:focus {
  border-color: var(--accent-dim);
}

.lead-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.lead-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.lead-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lead-submit {
  background: var(--accent);
  color: #0c0e14;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.lead-submit:hover:not(:disabled) { opacity: 0.85; }
.lead-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.lead-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
}

.lead-confirm-icon {
  font-size: 18px;
  font-weight: 700;
}

.lead-error {
  font-size: 14px;
  color: var(--red);
  background: rgba(224,85,85,0.08);
  border: 1px solid rgba(224,85,85,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
}

@media (max-width: 900px) {
  .lead-section { padding: 56px 24px; }
  .lead-headline { font-size: 28px; }
  .lead-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .lead-headline { font-size: 24px; }
  .lead-footer { flex-direction: column; align-items: stretch; }
  .lead-submit { text-align: center; }
}

/* ========================
   COMPARE PAGE
   ======================== */

.compare-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px 64px;
  text-align: center;
}

.compare-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.compare-headline {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}

.compare-subhead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* TABLE */
.compare-table-section {
  padding: 64px 0 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 900px;
}

.compare-table thead tr {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--border);
}

.compare-table th:last-child,
.compare-table td:last-child { border-right: none; }

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}

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

.compare-table tbody tr:hover { background: rgba(255,255,255,0.015); }

.compare-row-label {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  min-width: 180px;
  background: var(--surface);
  font-size: 13px;
}

.compare-row-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
  white-space: normal;
}

.compare-col { min-width: 150px; }

.compare-col-arke {
  background: linear-gradient(180deg, rgba(212,164,58,0.08) 0%, rgba(212,164,58,0.03) 100%);
  border-left: 2px solid var(--accent) !important;
}

.compare-cell { vertical-align: top; }

.compare-cell-arke {
  background: linear-gradient(180deg, rgba(212,164,58,0.06) 0%, rgba(212,164,58,0.02) 100%);
  border-left: 2px solid var(--accent) !important;
}

.compare-vendor-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.compare-vendor-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.compare-vendor-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.compare-yes {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}

.compare-no {
  color: var(--red);
  font-size: 13px;
}

.compare-partial {
  color: var(--accent);
  font-size: 13px;
}

.compare-muted {
  color: var(--muted);
  font-size: 13px;
}

.compare-hidden {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.compare-detail {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.compare-winner strong {
  color: var(--fg);
  font-size: 14px;
}

.compare-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  margin-bottom: 64px;
  line-height: 1.6;
  padding: 0 4px;
}

.compare-mobile-note {
  display: none;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* VENDOR CARDS */
.compare-cards-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.compare-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-vendor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-vendor-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.compare-vendor-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.compare-vendor-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.compare-vendor-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.compare-vendor-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-vendor-card-win {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.compare-win-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.compare-win-label.arke { color: var(--accent); }
.compare-win-label.them { color: var(--muted); }

.compare-vendor-card-win ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-vendor-card-win ul li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.compare-vendor-card-win ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--border);
}

.compare-vendor-card-verdict {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.65;
  background: rgba(212,164,58,0.06);
  border: 1px solid rgba(212,164,58,0.2);
  border-radius: 8px;
  padding: 14px 16px;
}

.compare-vendor-card-verdict strong { color: var(--accent); }

/* WHY STRIP */
.compare-why-strip {
  padding: 80px 48px;
}

.compare-why-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compare-why-headline {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-why-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA SECTION */
.compare-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}

.compare-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.compare-cta-headline {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.compare-cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
}

.compare-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.compare-cta-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.compare-lead-form { width: 100%; }

.compare-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .compare-vendor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .compare-hero { padding: 48px 24px; }
  .compare-headline { font-size: 32px; }
  .compare-cards-section { padding: 48px 24px; }
  .compare-why-strip { padding: 48px 24px; }
  .compare-cta-section { padding: 48px 24px; }
  .compare-table-section { padding: 40px 16px 0; }
  .compare-mobile-note { display: block; }
  .compare-vendor-card-split { grid-template-columns: 1fr; }
  .compare-lead-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .compare-headline { font-size: 26px; }
  .compare-cta-headline { font-size: 28px; }
  .compare-cta-row { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ========================
   ROI CALCULATOR PAGE
   ======================== */

.roi-header {
  max-width: 720px;
  margin: 72px auto 56px;
  text-align: center;
  padding: 0 24px;
}

.roi-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.roi-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--fg);
  font-family: 'Sora', sans-serif;
}

.roi-subhead {
  font-size: 16px;
  color: var(--muted);
}

/* LAYOUT: two-column on desktop, stacked on mobile */
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 48px;
  align-items: start;
}

/* INPUT PANEL */
.roi-inputs-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roi-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.roi-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.roi-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-field-header label {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

.roi-field-value {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
  text-align: right;
}

.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--bg);
}

.roi-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.roi-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  outline: none;
  appearance: none;
}

.roi-select:focus { border-color: var(--accent); }

/* SUMMARY PANEL */
.roi-summary-panel {
  position: sticky;
  top: 24px;
}

.roi-summary-inner {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(212,164,58,0.06) 0%, var(--surface) 60%);
}

.roi-summary-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
}

.roi-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.roi-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-metric-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roi-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.roi-arke-cost { color: var(--accent); }

.roi-tier-badge {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.roi-tier-starter { background: rgba(62,207,142,0.12); color: var(--green); }
.roi-tier-growth  { background: rgba(212,164,58,0.15); color: var(--accent); }
.roi-tier-scale   { background: rgba(107,114,128,0.15); color: var(--muted); }

.roi-savings-hero {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.roi-savings-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.roi-savings-amount {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.roi-savings-pct {
  font-size: 13px;
  color: var(--muted);
}

.roi-cta-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.roi-cta-primary {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--accent);
  color: #0c0e14;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.roi-cta-primary:hover { background: var(--accent-dim); color: var(--fg); }

.roi-cta-secondary {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border: 1px solid var(--border);
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.roi-cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

.roi-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* HEAD-TO-HEAD TABLE */
.roi-comparison-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
}

.roi-comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.roi-comparison-headline {
  font-size: 34px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-bottom: 8px;
}

.roi-comparison-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.roi-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.roi-table thead tr {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.roi-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  white-space: nowrap;
}

.roi-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  vertical-align: top;
}

.roi-table tbody tr:last-child td { border-bottom: none; }

.roi-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.roi-arke-col {
  background: rgba(212,164,58,0.04);
}

.roi-table th.roi-arke-col {
  color: var(--accent);
  background: rgba(212,164,58,0.07);
}

.roi-row-label {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.roi-highlight-cell {
  font-weight: 700;
  color: var(--accent);
}

.roi-green-cell {
  color: var(--green);
  font-weight: 600;
}

.roi-footnote-ref {
  font-size: 10px;
  color: var(--muted);
  vertical-align: super;
}

.roi-footnotes {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.roi-footnotes p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* BOTTOM CTA */
.roi-bottom-cta {
  padding: 72px 48px;
  text-align: center;
}

.roi-bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.roi-bottom-cta h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-bottom: 12px;
}

.roi-bottom-cta p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.roi-bottom-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ROI RESPONSIVE */
@media (max-width: 900px) {
  .roi-layout {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .roi-summary-panel {
    position: static;
    order: -1; /* summary card above inputs on mobile */
  }

  .roi-header { margin: 48px auto 40px; }
  .roi-headline { font-size: 32px; }
  .roi-comparison-section { padding: 48px 24px; }
  .roi-bottom-cta { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .roi-headline { font-size: 26px; }
  .roi-metric-row { grid-template-columns: 1fr; gap: 12px; }
  .roi-savings-amount { font-size: 28px; }
}