:root{
  --bg: #f7fafc;
  --card: #ffffff;
  --text: #0b1220;
  --muted: rgba(11,18,32,.72);
  --line: rgba(11,18,32,.10);
  --a: #2dd4bf;
  --b: #60a5fa;
  --shadow: 0 18px 50px rgba(11,18,32,.10);
  --shadow2: 0 10px 24px rgba(11,18,32,.10);
  --radius: 18px;
  --radius2: 26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(45,212,191,.18), transparent 55%),
    radial-gradient(900px 600px at 95% 10%, rgba(96,165,250,.20), transparent 50%),
    linear-gradient(#fff, var(--bg));
}
a{color:inherit}
.container{max-width:1100px; margin:0 auto; padding:0 18px}
.skip{
  position:absolute; left:-9999px; top:auto;
}
.skip:focus{left:18px; top:14px; background:#fff; padding:10px 12px; border-radius:12px; box-shadow:var(--shadow2); z-index:9999}
.topbar{
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:1000;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  font-weight:900; letter-spacing:-.4px;
}
.brand svg{width:34px; height:34px}
.brand span{font-size:18px}
.menu{
  display:flex; gap:14px; align-items:center;
}
.menu a{
  text-decoration:none; font-weight:700; font-size:13px; color:rgba(11,18,32,.82);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{background:rgba(11,18,32,.05)}
.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:14px; border:1px solid var(--line);
  background:#fff; box-shadow:none; text-decoration:none;
  font-weight:800; font-size:13px;
}
.btn.primary{
  border-color:rgba(45,212,191,.45);
  background: linear-gradient(135deg, rgba(45,212,191,.22), rgba(96,165,250,.18));
}
.btn.primary:hover{filter:brightness(.98)}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:rgba(11,18,32,.05);
  border:1px solid rgba(11,18,32,.06);
  font-weight:800; font-size:12px; color:rgba(11,18,32,.70);
}
.hero{
  padding:34px 0 18px;
}
.hero-grid{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .menu{display:none}
  .mobile-btn{display:inline-flex}
}
@media (min-width: 921px){
  .mobile-btn{display:none}
}
.hero-card{
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius2);
  padding:22px;
  overflow:hidden;
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 220px at 15% 0%, rgba(45,212,191,.22), transparent 60%),
    radial-gradient(380px 220px at 90% 18%, rgba(96,165,250,.24), transparent 55%);
  pointer-events:none;
}
.hero-card > *{position:relative}
.h-title{font-size:34px; line-height:1.05; margin:0 0 10px; letter-spacing:-1px}
.h-sub{margin:0 0 16px; color:var(--muted); font-weight:650}
.hero-badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 8px}
.kpis{display:grid; gap:12px; grid-template-columns:repeat(4,1fr); margin-top:14px}
.kpi{
  background:rgba(255,255,255,.70);
  border:1px solid rgba(11,18,32,.08);
  border-radius:18px;
  padding:12px;
}
.kpi b{display:block; font-size:15px}
.kpi span{display:block; color:var(--muted); font-size:12px; font-weight:650; margin-top:4px}

.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(245,158,11,.10);
  border:1px solid rgba(245,158,11,.22);
  color:rgba(11,18,32,.84);
  font-weight:700;
  font-size:12.5px;
}

.section{padding:18px 0}
.section h2{
  font-size:22px; letter-spacing:-.6px; margin:0 0 10px;
}
.section p{color:var(--muted)}
.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr);}
  .kpis{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 660px){
  .grid{grid-template-columns: 1fr;}
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.card .img{
  width:100%;
  aspect-ratio: 16/9;
  background:#fff;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.card .img img{width:100%; height:100%; object-fit:cover}
.card .body{padding:14px 14px 12px}
.card .head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.card h3{margin:0; font-size:16px; letter-spacing:-.3px}
.small{font-size:12.5px; color:var(--muted); line-height:1.45}
.pros{margin:10px 0 0; padding-left:18px}
.pros li{margin:6px 0; color:rgba(11,18,32,.78); font-weight:650; font-size:12.5px}
.license{margin-top:10px; padding-top:10px; border-top:1px dashed rgba(11,18,32,.14); color:rgba(11,18,32,.72); font-weight:700; font-size:12px}
.star-row{display:flex; align-items:center; gap:8px}
.stars{display:inline-flex; gap:4px}
.star{
  width:16px; height:16px;
  background:rgba(11,18,32,.16);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}
.star.on{background:#f59e0b}
.score{font-weight:900; font-size:12px; color:rgba(11,18,32,.78)}
.card .foot{
  margin-top:auto;
  padding:12px 14px 14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(11,18,32,.02));
}
.out{
  display:flex; flex-direction:column; gap:6px;
}
.out a{white-space:nowrap}
.details{
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:18px;
}
.details h3{margin:0 0 10px; letter-spacing:-.5px}
.details h4{margin:18px 0 8px; letter-spacing:-.3px}
.details ul{margin:10px 0 0; padding-left:18px}
.details li{margin:6px 0; color:var(--muted); font-weight:650}
.details p{margin:10px 0; color:var(--muted); line-height:1.7}
.hr{height:1px; background:var(--line); margin:14px 0}

.footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  background:rgba(45,212,191,.45);
}
.footer-grid{
  display:grid; gap:14px;
  grid-template-columns: 1.3fr .7fr;
  padding:18px 0;
}
@media (max-width: 920px){.footer-grid{grid-template-columns:1fr}}
.f-title{font-weight:900; letter-spacing:-.4px}
.f-muted{color:var(--muted); font-weight:650; font-size:13px; line-height:1.65}
.f-links{display:flex; flex-wrap:wrap; gap:10px}
.f-links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(11,18,32,.10);
  background:#fff;
  font-weight:800;
  font-size:12.5px;
}
.f-links a:hover{background:rgba(11,18,32,.04)}

.page{
  padding:22px 0 0;
}
.page h1{margin:0 0 10px; letter-spacing:-.9px}
.form{
  display:grid; gap:12px;
  max-width:720px;
}
.field{
  display:grid; gap:8px;
}
label{font-weight:800; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.14);
  background:#fff;
  outline:none;
  font: inherit;
}
input:focus, textarea:focus{border-color:rgba(96,165,250,.65); box-shadow:0 0 0 5px rgba(96,165,250,.14)}
.toast{
  display:none;
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(34,197,94,.25);
  background:rgba(34,197,94,.10);
  font-weight:800;
}
.mobile-panel{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile-panel a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  border-radius:14px;
  font-weight:800;
  color:rgba(11,18,32,.82);
}
.mobile-panel a:hover{background:rgba(11,18,32,.05)}
.logo-trust {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.logo-trust a {
  height: 60px;
  padding: 5px;

}
.logo-trust a img {
  height: 100%;
}
