:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --border: #1e1e2e;
  --accent: #6aefb8;
  --accent2: #3b82f6;
  --text: #e8e8f0;
  --muted: #6b6b80;
  --card: #13131f;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem; background: rgba(10,10,15,0.88);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--accent); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--accent); color: #0a0a0f; padding: 0.55rem 1.2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.3rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }
/* LAYOUT */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.section-desc { color: var(--muted); max-width: 540px; }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem 2rem 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(106,239,184,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(106,239,184,0.3); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.8rem; color: var(--accent); margin-bottom: 2rem; }
h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h1 em { font-style: normal; color: var(--accent); }
.btn-primary { display: inline-block; background: var(--accent); color: #0a0a0f; padding: 0.9rem 2.2rem; border-radius: 10px; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: 0.2s; box-shadow: 0 0 30px rgba(106,239,184,0.25); }
/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.5rem; }
.step-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(106,239,184,0.15); margin-bottom: 1rem; }
/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; align-items: start; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; transition: transform 0.3s; }
.plan:hover { transform: translateY(-4px); }
.plan.popular { border-color: var(--accent); background: linear-gradient(135deg, rgba(106,239,184,0.07) 0%, var(--card) 100%); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0a0a0f; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 100px; }
.plan-price { font-size: 2.8rem; font-weight: 800; margin: 1rem 0; }
.plan-features { list-style: none; margin: 1.5rem 0; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; margin: 0.6rem 0; font-size: 0.9rem; color: var(--muted); }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.btn-plan { display: block; width: 100%; background: transparent; border: 1px solid var(--border); color: var(--text); padding: 0.8rem; border-radius: 10px; text-align: center; text-decoration: none; transition: 0.2s; }
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
/* TRUST BAR */
.trust-bar { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; padding: 1.5rem 2rem; background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
/* CONTACT CARDS */
.contact-cards { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--text); transition: border-color 0.2s; }
.contact-card:hover { border-color: var(--accent); }
/* FORM */
.form-group { margin-bottom: 1.2rem; }
input, textarea, select { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; color: var(--text); font-family: inherit; }
input:focus, textarea:focus { border-color: var(--accent); outline: none; }
.btn-submit { width: 100%; background: var(--accent); color: #0a0a0f; border: none; padding: 0.9rem; border-radius: 10px; font-weight: 700; cursor: pointer; }
/* STICKY CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: #0a0a0f; text-align: center;
  padding: 1rem; font-weight: 700; z-index: 999; text-decoration: none;
}
/* SCARCITY */
.scarcity-tag { color: var(--accent); font-size: 0.9rem; margin-top: 1rem; }
/* FOOTER */
footer { text-align: center; padding: 2rem; color: var(--muted); border-top: 1px solid var(--border); }
footer .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
footer .footer-links a { color: var(--muted); text-decoration: none; }
/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,15,0.97); padding: 1.5rem; }
  .nav-hamburger { display: block; }
  .sticky-cta { display: block; }
}