:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --surface:#f9fafb;
  --accent:#f97316;
  --accent-ink:#111827;
  --max:1100px;
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:inherit}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:8px;
  background:var(--text); color:var(--bg);
  padding:10px 12px; border-radius:10px; z-index:1000;
}
.skip:focus{left:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex; align-items:center; gap:16px; padding:14px 20px}

.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:700}
.brand-mark{
  width:14px; height:14px; border-radius:4px;
  background:var(--accent);
  display:inline-block;
}
.brand-name{letter-spacing:0.2px}

.nav{margin-left:auto; display:flex; gap:16px}
.nav a{opacity:0.9; text-decoration:none; font-weight:600; color:var(--text)}
.nav a:hover{opacity:1; text-decoration:underline; text-underline-offset:4px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  background:transparent;
}
.btn-primary{
  background:var(--accent);
  border-color:transparent;
  color:var(--accent-ink);
}
.btn-primary:hover{filter:saturate(1.1) brightness(1.02)}
.btn-ghost:hover{background:var(--surface)}

.header-cta{white-space:nowrap}

.nav-toggle{
  display:none;
  margin-left:8px;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:transparent;
}
.nav-toggle span{display:block; height:2px; background:var(--text); margin:6px 10px}

.mobile-nav{border-top:1px solid var(--border); background:rgba(255,255,255,0.96)}
.mobile-nav-inner{display:flex; flex-direction:column; gap:10px; padding:14px 20px}
.mobile-nav a{text-decoration:none; font-weight:700}

.hero{
  padding:64px 0 36px;
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(249,115,22,0.18), transparent 60%),
    radial-gradient(700px 350px at 90% 10%, rgba(17,24,39,0.06), transparent 60%);
}
.hero-inner{display:grid; grid-template-columns: 1.25fr 0.75fr; gap:28px; align-items:stretch}
.eyebrow{color:var(--muted); font-weight:700; margin:0 0 10px}
.hero h1{font-size:44px; line-height:1.12; margin:0 0 10px}
.subhead{color:var(--muted); font-size:18px; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-highlights{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.chip{border:1px solid var(--border); background:rgba(255,255,255,0.8); padding:8px 10px; border-radius:999px; font-weight:700; color:#111827}

.hero-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,0.9);
  padding:18px;
  display:grid;
  gap:12px;
}
.stat{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:12px; background:var(--surface); border:1px solid var(--border)}
.stat-label{color:var(--muted); font-weight:700}
.stat-value{font-weight:900}

.section{padding:56px 0}
.section-muted{background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}

h2{font-size:30px; margin:0 0 10px}
.lede{color:var(--muted); margin:0 0 22px}

.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start}

.note{border:1px solid var(--border); border-radius:var(--radius); padding:18px; background:rgba(255,255,255,0.9)}
.note h3{margin:0 0 8px}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{position:relative; padding-left:26px}
.checklist li::before{
  content:"";
  position:absolute; left:0; top:8px;
  width:14px; height:14px; border-radius:4px;
  background:rgba(249,115,22,0.2);
  border:1px solid rgba(249,115,22,0.45);
}

.cards{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:rgba(255,255,255,0.9);
}
.card h3{margin:10px 0 8px}
.card p{margin:0; color:var(--muted)}
.icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background:rgba(249,115,22,0.16);
  border:1px solid rgba(249,115,22,0.35);
}

.pricing{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.price-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:rgba(255,255,255,0.9);
  position:relative;
}
.price-card h3{margin:0 0 6px}
.price{font-size:34px; font-weight:900; margin:0 0 12px}
.price span{font-size:14px; font-weight:800; color:var(--muted)}
.price-card ul{margin:0 0 16px; padding-left:18px; color:var(--muted)}
.price-card li{margin:6px 0}
.price-card.featured{border-color:rgba(249,115,22,0.55)}
.badge{
  position:absolute; top:14px; right:14px;
  font-weight:900; font-size:12px;
  padding:6px 10px; border-radius:999px;
  background:rgba(249,115,22,0.18);
  border:1px solid rgba(249,115,22,0.4);
}

.lead-form{display:grid; gap:12px}
.field label{display:block; font-weight:800; margin-bottom:6px}
.field input, .field select, .field textarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.98);
  font:inherit;
}
.field input:focus, .field select:focus, .field textarea:focus{outline:3px solid rgba(249,115,22,0.25); border-color:rgba(249,115,22,0.45)}
.hp{display:none}

.fineprint{margin:2px 0 0; color:var(--muted); font-size:12px}

.form-status{min-height:22px; margin:0 0 10px; font-weight:800}
.form-status.ok{color:#166534}
.form-status.err{color:#991b1b}

.trust .testimonials{display:grid; gap:12px; margin-top:18px}
.testimonial{border:1px solid var(--border); background:rgba(255,255,255,0.9); border-radius:var(--radius); padding:16px}
.testimonial p{margin:0}
.testimonial .who{margin-top:8px; color:var(--muted); font-weight:800}

.faq{display:grid; gap:10px}
.faq details{border:1px solid var(--border); border-radius:var(--radius); padding:12px 14px; background:rgba(255,255,255,0.9)}
.faq summary{font-weight:900; cursor:pointer}
.faq p{margin:8px 0 0; color:var(--muted)}

.legal{border:1px solid var(--border); border-radius:var(--radius); padding:18px; background:rgba(255,255,255,0.9)}

.site-footer{border-top:1px solid var(--border); padding:22px 0; background:var(--bg)}
.footer-inner{display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted); font-weight:800; text-decoration:none}
.footer-links a:hover{color:var(--text); text-decoration:underline; text-underline-offset:4px}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr;}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .pricing{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .hero h1{font-size:36px}
}

@media (max-width: 720px){
  .nav{display:none}
  .header-inner{flex-wrap:wrap}
  .header-cta{order:2; padding:10px 12px}
  .nav-toggle{display:inline-block; order:3; margin-left:auto}
  .brand{order:1}
  .cards{grid-template-columns:1fr}
}
