
:root{
  --bg:#0b0f14;
  --ink:#0c1220;
  --card:#111a2a;
  --text:#eef2fb;
  --muted:#aab4c6;
  --line:rgba(255,255,255,.12);
  --red:#d6162a;
  --white:#ffffff;
  --off:#f6f7fb;
  --off2:#eef1f7;
  --shadow: 0 16px 55px rgba(0,0,0,.30);
  --radius:22px;
  --max:1180px;
  --platinum: linear-gradient(135deg,#ffffff 0%, #dfe4ec 30%, #ffffff 55%, #b9c0ca 100%);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 10% -10%, rgba(214,22,42,.22), transparent 60%),
    radial-gradient(900px 600px at 95% 10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #070a0f 0%, #0b0f14 55%, #070a0f 100%);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}

.small{font-size:13px;color:var(--muted)}
.lead{color:var(--muted); line-height:1.7; margin:0}
.hairline{border:0;border-top:1px solid var(--line); margin:18px 0}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{width:44px;height:44px;object-fit:contain}
.brand .title{display:flex; flex-direction:column; line-height:1.05;}
.brand .title strong{font-size:13px; letter-spacing:.18em; text-transform:uppercase;}
.brand .title span{font-size:12px;color:var(--muted); letter-spacing:.06em}

.links{display:flex; gap:16px; align-items:center}
.links a{
  font-size:13px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.links a:hover{background:rgba(255,255,255,.06); color:var(--text);}
.links a.active{background:rgba(214,22,42,.14); color:var(--text); border:1px solid rgba(214,22,42,.25)}

.nav-cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700; font-size:13px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn.primary{
  border:1px solid rgba(214,22,42,.35);
  background: linear-gradient(135deg, rgba(214,22,42,.98), rgba(214,22,42,.62));
}
.btn.light{
  background: var(--platinum);
  color:#0b0f14;
  border:1px solid rgba(255,255,255,.45);
}
.btn.small{padding:10px 12px; border-radius:12px; font-size:12px}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  font-size:12px;
}
.dot{width:7px;height:7px;border-radius:999px;background:var(--red); box-shadow:0 0 0 4px rgba(214,22,42,.15)}

.hero{padding:66px 0 22px; position:relative;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap:20px;
  align-items:stretch;
}
.hero h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:1.02;
  letter-spacing:-.03em;
}
.hero .kicker{
  font-weight:900;
  letter-spacing:.26em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.90);
}
.hero p{max-width:60ch; font-size:15px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad{padding:22px}
.card-title{
  font-weight:900; letter-spacing:.16em; text-transform:uppercase;
  font-size:12px; color:rgba(255,255,255,.88);
}
.card-sub{margin-top:8px;color:var(--muted); font-size:13px; line-height:1.6}

.kpis{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
.kpi{
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
}
.kpi strong{display:block; font-size:20px}
.kpi span{display:block; font-size:12px; color:var(--muted); margin-top:4px}

.section{padding:28px 0}
.section h2{margin:0 0 10px; font-size:28px; letter-spacing:-.02em}
.section .sub{margin:0 0 16px; color:var(--muted); line-height:1.7}

.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}

.feature{
  padding:18px;
  border-radius:20px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  transition:.2s ease;
}
.feature:hover{transform:translateY(-2px); background:rgba(255,255,255,.06)}
.feature h3{margin:0 0 6px; font-size:15px}
.feature p{margin:0; color:var(--muted); font-size:13px; line-height:1.55}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(214,22,42,.25);
  background: rgba(214,22,42,.12);
  font-size:12px;
  color:rgba(255,255,255,.92);
  margin-bottom:10px;
}

/* Light band sections (white like TASPro, but premium) */
.lightband{
  margin:24px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,246,252,.95));
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
  color:#0b0f14;
  padding:34px 0;
}
.lightband h2{color:#0b0f14}
.lightband .sub, .lightband .lead{color:rgba(12,18,32,.72)}
.lightcard{
  background: rgba(255,255,255,.90);
  border:1px solid rgba(12,18,32,.10);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(12,18,32,.12);
}
.lightfeature{
  padding:18px;
  border-radius:20px;
  background: rgba(245,247,251,.95);
  border:1px solid rgba(12,18,32,.08);
}
.lightfeature h3{margin:0 0 6px; font-size:15px}
.lightfeature p{margin:0; color:rgba(12,18,32,.72); font-size:13px; line-height:1.55}
.lightbtn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 14px; border-radius:14px;
  border:1px solid rgba(12,18,32,.12);
  background: rgba(255,255,255,.95);
  color:#0b0f14;
  font-weight:800; font-size:13px;
}
.lightbtn.primary{
  border:1px solid rgba(214,22,42,.35);
  background: linear-gradient(135deg, rgba(214,22,42,.98), rgba(214,22,42,.70));
  color:#fff;
}
.lightbtn:hover{transform:translateY(-1px)}

.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
.step{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.92);
}
.step .num{
  width:34px;height:34px;border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(214,22,42,.10);
  border:1px solid rgba(214,22,42,.22);
  color:#0b0f14;
  font-weight:900;
}
.step h3{margin:10px 0 6px; font-size:15px}
.step p{margin:0; color:rgba(12,18,32,.72); font-size:13px; line-height:1.55}

.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.plan{
  border-radius:22px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.95);
  padding:18px;
  box-shadow: 0 18px 55px rgba(12,18,32,.10);
}
.plan .name{font-weight:950; letter-spacing:.18em; text-transform:uppercase; font-size:12px}
.plan .price{font-size:30px; font-weight:950; margin:10px 0 8px}
.plan ul{margin:0; padding-left:18px; color:rgba(12,18,32,.74); display:grid; gap:8px; font-size:13px; line-height:1.45}
.plan .cta{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

.faq{display:grid; gap:12px}
details{
  border-radius:18px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.95);
  padding:14px 16px;
}
summary{cursor:pointer; font-weight:850}
details p{margin:10px 0 0; color:rgba(12,18,32,.72); line-height:1.6; font-size:13px}

.form{display:grid; gap:12px}
.field{display:grid; gap:8px}
input, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(214,22,42,.55); box-shadow:0 0 0 4px rgba(214,22,42,.16)}

.social{display:flex; flex-wrap:wrap; gap:10px}
.social a{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
}
.social a:hover{color:var(--text); background:rgba(255,255,255,.07)}

.footer{padding:26px 0 34px; color:var(--muted)}
.footer a{color:var(--text)}
.footer-grid{display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:16px}
.mini-title{font-weight:900; color:rgba(255,255,255,.85); letter-spacing:.14em; text-transform:uppercase; font-size:12px; margin-bottom:10px}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.footer li a{color:var(--muted)}
.footer li a:hover{color:var(--text)}
.credit{margin-top:16px; border-top:1px solid rgba(255,255,255,.10); padding-top:14px; display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}

@media (max-width: 1060px){
  .hero-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .links{display:none}
  .hero h1{font-size:40px}
  .grid-4{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
}
