:root {
  --bg: #fafaf8;
  --surface: #fff;
  --surface-2: #f5f5f3;
  --border: #e8e8e6;
  --text: #1a1a1a;
  --text-muted: #777;
  --text-light: #aaa;
  --primary: #991b1e;
  --primary-hover: #7a1517;
  --primary-bg: #fef2f2;
  --primary-light: #fde8e8;
  --gold: #b8860b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.6; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 10px 22px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: none; text-align: center; letter-spacing: 0.04em;
  text-transform: uppercase; transition: all 0.15s;
  text-decoration: none; border-radius: var(--radius-sm); white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 0.75rem; }
.btn-lg { padding: 14px 36px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1120px; margin: 0 auto; padding: 0 2rem; height: 60px; }
.nav-brand { text-decoration: none; }
.logo { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero { padding: 6rem 0 4rem; text-align: center; }
.hero-badge { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px; color: var(--primary); background: var(--primary-bg); margin-bottom: 2rem; }
.hero h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-note { font-size: 0.78rem; color: var(--text-light); margin-top: 1.5rem; }

/* Logos bar */
.logos { padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.logos-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); text-align: center; margin-bottom: 1rem; }
.logos-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logos-row span { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.section-header h2 { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; }

/* Steps */
.steps { padding: 6rem 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 1.25rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Features */
.features { padding: 6rem 0; background: var(--surface); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow 0.2s, border-color 0.2s; }
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--primary-bg); color: var(--primary); margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
.pricing-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; position: relative; transition: box-shadow 0.2s, border-color 0.2s; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card--popular { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 12px; }
.pricing-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-price { font-size: 2.4rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; font-size: 0.88rem; text-align: left; margin-bottom: 2rem; line-height: 2.2; }
.pricing-features li::before { content: "\2713 "; color: var(--primary); font-weight: 700; }

/* CTA */
.cta { padding: 5rem 0; text-align: center; background: var(--surface); border-top: 1px solid var(--border); }
.cta h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Footer */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.footer-links h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; color: var(--text-light); }
.footer-links a { display: block; font-size: 0.88rem; color: var(--text-muted); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-light); }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .nav-links a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
