:root{
  --bg:#ffffff;
  --text:#0b0f17;
  --muted:#556173;
  --soft:#f5f7fb;
  --line:#e7ecf4;
  --brand:#f6c40f; /* yellow accent */
  --brand2:#5b2be1; /* purple */
  --blue1:#3c79ff;
  --blue2:#6a27ff;
  --dark:#111318;
  --radius:18px;
  --shadow:0 12px 40px rgba(10,18,35,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 24px}
.center{text-align:center;margin-top:28px}
.h2center{
  font-size:42px;
  line-height:1.1;
  text-align:center;
  margin:0;
  letter-spacing:-.02em;
}
.subcenter{
  text-align:center;
  margin:14px auto 0;
  max-width:760px;
  color:var(--muted);
  font-size:16px;
}
.hl{
  background:linear-gradient(transparent 55%, rgba(246,196,15,.75) 55%);
  padding:0 .15em;
}

/* top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px; gap:18px;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:800}
.brand__mark{
  width:28px;height:28px;border-radius:10px;
  background:linear-gradient(135deg,var(--blue1),var(--blue2));
  box-shadow:0 8px 22px rgba(80,70,255,.25);
}
.nav{display:flex;gap:18px;color:var(--muted);font-weight:600;font-size:14px}
.nav a{padding:10px 8px;border-radius:10px}
.nav a:hover{background:var(--soft);color:var(--text)}
@media (max-width:860px){
  .nav{display:none}
}

/* buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:14px;
  font-weight:800;font-size:14px;
  border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  cursor:pointer;
}
.btn:active{transform:translateY(1px)}
.btn--sm{padding:10px 14px;border-radius:12px}
.btn--primary{
  background:var(--brand);
  color:#111;
  box-shadow:0 10px 22px rgba(246,196,15,.25);
}
.btn--primary:hover{box-shadow:0 12px 28px rgba(246,196,15,.34)}
.btn--ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}
.btn--ghost:hover{background:var(--soft)}
.btn--dark{
  background:#111;
  color:#fff;
}
.btn--full{width:100%}

/* hero */
.hero{
  background:linear-gradient(115deg,var(--blue1) 0%, var(--blue2) 55%, #24304a 120%);
  color:#fff;
  padding:84px 0 54px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:34px;
  align-items:start;
}
.eyebrow{margin:0 0 14px;color:rgba(255,255,255,.85);font-weight:700}
.hero h1{margin:0 0 14px;font-size:54px;line-height:1.03;letter-spacing:-.03em}
.lead{margin:0 0 22px;color:rgba(255,255,255,.9);max-width:620px}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 14px}
.ticks{list-style:none;margin:10px 0 0;padding:0;color:rgba(255,255,255,.9)}
.ticks li{margin:2px 0;font-weight:650}
.hero .btn--ghost{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.22);color:#fff}
.hero .btn--ghost:hover{background:rgba(255,255,255,.2)}
.hero__panel{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.panel__tag{font-weight:800;letter-spacing:.08em;font-size:12px;color:rgba(255,255,255,.9)}
.hero__panel h3{margin:10px 0 8px;font-size:22px}
.panel__text{margin:0 0 14px;color:rgba(255,255,255,.9)}
.panel__note{margin:12px 0 0;color:rgba(255,255,255,.85);font-size:13px}
@media (max-width:980px){
  .hero__inner{grid-template-columns:1fr}
  .hero{padding:70px 0 44px}
  .hero h1{font-size:44px}
}

/* split form section */
.split{background:#fff;padding:54px 0}
.split__inner{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:stretch}
.card{
  border-radius:28px;
  box-shadow:var(--shadow);
}
.card--dark{
  background:var(--dark);
  color:#fff;
  padding:28px;
}
.card--dark h2{margin:0 0 10px;font-size:34px;letter-spacing:-.02em}
.muted-on-dark{color:rgba(255,255,255,.72);margin:0 0 18px}
.form label{display:block;font-size:12px;font-weight:700;color:rgba(255,255,255,.8);margin:10px 0}
.form input,.form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.form input:focus,.form textarea:focus{border-color:rgba(246,196,15,.8)}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form__full{grid-column:1/-1}
.form__fineprint{margin:10px 0 0;color:rgba(255,255,255,.6);font-size:12px}
.form__status{margin:10px 0 0;font-size:13px}
.hp{position:absolute;left:-9999px;width:1px;height:1px;opacity:0}

.split__image{border-radius:28px;overflow:hidden}
.image__frame{
  height:100%;
  border-radius:28px;
  background:linear-gradient(180deg,#fff 0%, #f7f8ff 60%, #fff 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  position:relative;
  padding:28px;
}
.image__badge{
  position:absolute;top:18px;right:18px;
  background:rgba(246,196,15,.18);
  color:#111;
  border:1px solid rgba(246,196,15,.45);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}
.image__placeholder{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:20px;
}
.ph__title{font-size:22px;font-weight:900}
.ph__list{display:grid;gap:10px}
.ph__item{
  height:14px;border-radius:999px;background:#e9ecff;
}
@media (max-width:980px){
  .split__inner{grid-template-columns:1fr}
}

/* general sections */
.section{padding:76px 0;background:#fff}
.section--soft{background:var(--soft)}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:34px;
}
.iconcard{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  display:flex;
  gap:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(10,18,35,.05);
}
.iconcard__icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(246,196,15,.2);
  font-size:20px;
}
.iconcard h3{margin:0 0 6px;font-size:18px}
.iconcard p{margin:0;color:var(--muted);font-size:14px}
@media (max-width:840px){
  .grid-2{grid-template-columns:1fr}
  .h2center{font-size:34px}
}

/* checks with car */
.checks{
  margin-top:38px;
  display:grid;
  grid-template-columns:1fr 360px 1fr;
  gap:22px;
  align-items:center;
}
.checks__car{display:flex;justify-content:center}
.carTop{
  width:320px;height:420px;border-radius:28px;
  background:radial-gradient(circle at 50% 25%, #ffffff 0%, #f0f3ff 55%, #ffffff 100%);
  border:1px solid var(--line);
  box-shadow:0 18px 46px rgba(10,18,35,.08);
  position:relative;
}
.carTop:before{
  content:"";
  position:absolute;inset:22px 60px;
  border-radius:28px;
  background:linear-gradient(180deg,#fff 0%, #dfe6ff 100%);
  box-shadow: inset 0 0 0 1px rgba(10,18,35,.06);
}
.checkitem{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px 14px;border-radius:18px;
}
.checkitem:hover{background:rgba(255,255,255,.55)}
.checkitem__dot{
  width:12px;height:12px;border-radius:50%;
  background:var(--brand);
  box-shadow:0 8px 20px rgba(246,196,15,.35);
  margin-top:6px;flex:0 0 12px;
}
.checkitem h3{margin:0 0 6px;font-size:16px}
.checkitem p{margin:0;color:var(--muted);font-size:14px}
@media (max-width:980px){
  .checks{grid-template-columns:1fr}
  .carTop{width:260px;height:360px;margin:10px auto}
}

/* steps */
.steps{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.step{
  background:#fff;border:1px solid var(--line);
  border-radius:22px;padding:18px;
  box-shadow:0 10px 24px rgba(10,18,35,.05);
}
.step__num{
  width:44px;height:44px;border-radius:16px;
  background:rgba(246,196,15,.2);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.step h3{margin:14px 0 6px}
.step p{margin:0;color:var(--muted);font-size:14px}
@media (max-width:980px){
  .steps{grid-template-columns:1fr}
}

/* pricing */
.pricing{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.pricecard{
  background:#fff;border:1px solid var(--line);
  border-radius:22px;overflow:hidden;
  box-shadow:0 10px 24px rgba(10,18,35,.05);
  display:flex;flex-direction:column;
}
.pricecard__img{
  height:140px;
  background:linear-gradient(135deg,#e8ecff,#ffffff);
}
.pricecard h3{margin:16px 16px 8px}
.pricecard ul{margin:0 16px 10px;padding-left:18px;color:var(--muted);font-size:14px}
.price{margin:10px 16px 0;font-weight:900;font-size:20px}
.pricecard__actions{display:flex;gap:10px;margin:16px;padding:0 0 2px}
@media (max-width:980px){
  .pricing{grid-template-columns:1fr}
}

/* faq */
.faq{margin-top:26px;max-width:860px;margin-left:auto;margin-right:auto}
details{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(10,18,35,.04);
  margin:12px 0;
}
summary{cursor:pointer;font-weight:800}
details p{color:var(--muted);margin:10px 0 0}

/* CTA band */
.ctaBand{
  margin-top:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:linear-gradient(115deg, rgba(246,196,15,.25), rgba(91,43,225,.10));
  border:1px solid rgba(246,196,15,.35);
  border-radius:24px;
  padding:18px 18px;
}
.ctaBand h3{margin:0 0 4px}
.ctaBand p{margin:0;color:var(--muted)}
@media (max-width:860px){
  .ctaBand{flex-direction:column;align-items:flex-start}
}

/* footer */
.footer{padding:30px 0;border-top:1px solid var(--line);background:#fff}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:12px;color:var(--muted)}
.footer__inner a{color:var(--text);font-weight:700}
