:root{
  --bg:#f6f8ff;
  --text:#0f172a;
  --muted:#52627a;
  --blue1:#1e56d8;
  --blue2:#2b73ff;
  --blue3:#1b3fae;
  --card:#ffffff;
  --shadow: 0 18px 45px rgba(2,10,32,.12);
  --shadow-soft: 0 10px 30px rgba(2,10,32,.08);
  --green:#16b35b;
  --green2:#0ea34c;
  --radius2:26px;
  --max:1120px;
}

*{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;
  background: var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Center brand header */
.nav{
  position:sticky; top:0; z-index:80;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.nav-inner{
  height:64px;
  display:flex; align-items:center; justify-content:center;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:950; letter-spacing:.2px;
}
.brand img{width:30px; height:30px; border-radius:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:950;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.02)}
.btn.primary{
  background: linear-gradient(180deg, var(--green), var(--green2));
  border:1px solid rgba(0,0,0,.05);
  color:#fff;
  box-shadow: 0 12px 28px rgba(2,10,32,.14);
}
.btn.primary.pulse{
  position:relative;
  isolation:isolate;
}
.btn.primary.pulse::after{
  content:"";
  position:absolute; inset:-10px;
  border-radius:18px;
  border:2px solid rgba(22,179,91,.55);
  animation: ring 1.9s infinite;
  z-index:-1;
}
@keyframes ring{
  0%{transform:scale(.92); opacity:.95}
  70%{transform:scale(1.18); opacity:0}
  100%{transform:scale(1.18); opacity:0}
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(255,255,255,.22), rgba(255,255,255,0)),
              linear-gradient(135deg, var(--blue2), var(--blue1) 55%, var(--blue3));
  color:#fff;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
    radial-gradient(900px 420px at 10% 90%, rgba(255,255,255,.14), rgba(255,255,255,0) 60%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  padding: 70px 0 68px;
  text-align:center;
}
.hero.compact .hero-inner{padding: 52px 0 58px}

.hero-wave{
  position:absolute;
  left:0; right:0; bottom:-1px;
  line-height:0;
  pointer-events:none;
}
.hero-wave svg{width:100%; height:64px; display:block}
.hero-wave path{fill: var(--bg)}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight:950;
  letter-spacing:.2px;
  font-size:14px;
}
.pulse-dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22,179,91,.7);
  animation: dot 1.6s infinite;
}
@keyframes dot{
  0%{box-shadow:0 0 0 0 rgba(22,179,91,.65)}
  70%{box-shadow:0 0 0 14px rgba(22,179,91,0)}
  100%{box-shadow:0 0 0 0 rgba(22,179,91,0)}
}

.hero h1{
  margin:18px auto 10px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height:1.03;
  letter-spacing:-.9px;
}
.hero p{
  margin:0 auto;
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height:1.5;
}
.hero-actions{
  margin-top:18px;
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
}
.hero-meta{
  margin-top:16px;
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap;
  color: rgba(255,255,255,.92);
  font-weight:950;
}
.meta-item{
  display:inline-flex; align-items:center; gap:9px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size:12px;
}
.meta-item svg{opacity:.92}

/* Sections */
.section{padding: 34px 0 70px}
#picks{scroll-margin-top: 84px}

/* Cards grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
@media (max-width:980px){
  .grid{grid-template-columns: 1fr; gap:14px}
}

.card{
  background: var(--card);
  border-radius: var(--radius2);
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(15,23,42,.08);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  will-change: transform;
}
.card:hover{transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(43,115,255,.22)}
.card.top{
  border:2px solid rgba(22,179,91,.35);
  box-shadow: 0 20px 55px rgba(2,10,32,.14);
}
.card-inner{padding:18px 18px 16px}
.card-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.logo-wrap{display:flex; align-items:center; gap:12px}
.logo-wrap img{
  width:44px; height:44px; border-radius:14px;
  object-fit:contain; background: #f3f6ff;
  border:1px solid rgba(15,23,42,.08);
  padding:8px;
}
.brand-name{font-size:18px; font-weight:1000; letter-spacing:-.2px}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(22,179,91,.12);
  border:1px solid rgba(22,179,91,.18);
  color: #0c7f3a;
  font-weight:1000;
  font-size:12px;
}

.rating{
  display:inline-flex; align-items:center; gap:7px;
  font-weight:1000;
  color: rgba(15,23,42,.78);
  background: rgba(2,10,32,.04);
  border:1px solid rgba(15,23,42,.08);
  padding:8px 10px;
  border-radius:999px;
}
.rating .star{color:#f5b301}

.badges{
  margin-top:14px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.badge2{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  border:1px solid rgba(15,23,42,.08);
  background: #fff;
}
.badge2.red{background: rgba(255,90,90,.12); border-color: rgba(255,90,90,.18); color:#b11b1b}
.badge2.green{background: rgba(22,179,91,.12); border-color: rgba(22,179,91,.18); color:#0c7f3a}
.badge2.blue{background: rgba(43,115,255,.12); border-color: rgba(43,115,255,.18); color:#1643b8}

.price-row{margin-top:12px}
.price{display:flex; align-items:baseline; gap:8px; flex-wrap:wrap}
.price strong{font-size:34px; letter-spacing:-.8px; color: var(--green2)}
.price span{color:rgba(15,23,42,.62); font-weight:900}

.desc{margin-top:10px; color: rgba(15,23,42,.70); line-height:1.5; font-size:14px}
.list{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.list li{display:flex; align-items:flex-start; gap:10px; color: rgba(15,23,42,.78); font-weight:800; font-size:14px}
.tick{
  width:18px; height:18px; border-radius:999px;
  background: rgba(22,179,91,.16);
  border:1px solid rgba(22,179,91,.22);
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  margin-top:1px;
}
.tick svg{width:12px; height:12px; color:#0c7f3a}

.card-btn{margin-top:16px; display:flex}
.card-btn .btn{width:100%; border-radius:16px; padding:14px 16px}

/* Table */
.table-wrap{
  background: #fff;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(15,23,42,.08);
}
.table-head{
  background: linear-gradient(90deg, var(--blue2), var(--blue1));
  color:#fff;
  padding:14px 18px;
  font-weight:1000;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.table-head small{opacity:.9; font-weight:800}
table{width:100%; border-collapse:collapse; font-size:14px}
th,td{padding:14px 14px; border-bottom:1px solid rgba(15,23,42,.08); text-align:left}
th{color:rgba(15,23,42,.68); font-size:12px; letter-spacing:.5px; text-transform:uppercase}
td b{font-weight:1000}
td .deal{color: var(--green2); font-weight:1000}
.row-provider{display:flex; align-items:center; gap:12px}
.row-provider img{
  width:36px; height:36px; border-radius:14px;
  object-fit:contain; background:#f3f6ff;
  border:1px solid rgba(15,23,42,.08);
  padding:7px;
}
.action .btn{padding:10px 12px; border-radius:12px; font-weight:1000}
@media (max-width:860px){
  .hide-m{display:none}
  th,td{padding:12px 10px}
}

/* Footer */
.footer{
  background: #0b1020;
  color: rgba(255,255,255,.70);
  padding: 22px 0;
  margin-top: 40px;
}
.footer p{margin:0; font-size:12px; line-height:1.45}

/* Mobile tightening */
@media (max-width:720px){
  .hero-inner{padding: 54px 0 60px}
  .hero.compact .hero-inner{padding: 38px 0 54px}
  .hero-wave svg{height:56px}
  .meta-item{padding:7px 9px; font-size:12px}
}
@media (max-width:420px){
  .hero-meta{display:none}
}
