:root{
  --bg:#ffffff;
  --text:#111;
  --muted:#666;
  --line:#eee;
  --card:#fff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius:16px;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin:0; color:var(--text); background:var(--bg);
}

.container{ max-width:1100px; margin:0 auto; padding:28px 18px; }

.site-header{
  position:sticky; top:0; background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
  z-index: 10;
}

.header-inner{
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
}

.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:900; }
.brand-mark{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px; border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.brand-text{ letter-spacing:-.2px; }

.nav a{ text-decoration:none; color:var(--text); font-weight:700; margin-left:14px; }
.nav-cta{
  padding:8px 12px; border-radius:12px; border:1px solid var(--text);
}

.site-footer{ border-top:1px solid var(--line); padding:24px 18px; color:var(--muted); }
.footer-inner{ max-width:1100px; margin:0 auto; text-align:center; }
.disclaimer{ margin:10px auto 0; font-size:12px; max-width: 820px; }

.btn{
  display:inline-block; padding:12px 14px;
  border-radius:14px; border:1px solid var(--text);
  text-decoration:none; color:var(--text);
  font-weight:800;
}
.btn.primary{ background:var(--text); color:#fff; }

.muted{ color:var(--muted); }
.muted-link{ color:var(--muted); text-decoration:none; font-weight:700; }

.hero{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.hero h1{ font-size:42px; line-height:1.05; margin:0 0 10px; letter-spacing:-.6px; }
.lead{ margin:0 0 16px; color:var(--muted); font-size:18px; }

.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 14px; }

.trust{
  display:flex; gap:12px; flex-wrap:wrap;
  color:var(--muted); font-weight:700; font-size:13px;
}

.hero-card{
  border:1px solid var(--line); border-radius: var(--radius);
  background:var(--card); box-shadow: var(--shadow);
  padding:14px;
}
.hero-card h3{ margin:0 0 10px; font-size:16px; }
.mini-list{ display:flex; flex-direction:column; gap:10px; }
.mini-item{
  display:flex; justify-content:space-between; gap:10px;
  text-decoration:none; color:var(--text);
  padding:10px; border-radius:14px; border:1px solid var(--line);
}
.mini-title{ font-weight:800; font-size:13px; }
.mini-meta{ color:var(--muted); font-size:12px; font-weight:700; white-space:nowrap; }

.section{ margin-top: 28px; }
.section-head{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; }
.section-head h2{ margin:0; font-size:20px; }

.page-head h1{ margin:0 0 6px; font-size:28px; letter-spacing:-.3px; }
.page-head{ margin-bottom: 16px; }

.deal-list{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap:16px;
}

.deal-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.deal-card a{ text-decoration:none; color:var(--text); display:block; }
.deal-card img{ width:100%; height:170px; object-fit:cover; display:block; border-bottom:1px solid var(--line); }

.img-placeholder{
  width:100%; height:170px; display:grid; place-items:center;
  background:#fafafa; color:var(--muted); border-bottom:1px solid var(--line);
  font-weight:800; font-size:12px;
}

.card-body{ padding:12px; }
.deal-card h3{ margin:0 0 8px; font-size:15px; line-height:1.25; font-weight:900; }

.deal-price-line{ margin:0 0 6px; display:flex; align-items:center; gap:10px; }
.deal-price-line strong{ font-size:18px; }
.badge{
  display:inline-block; padding:6px 8px;
  border-radius:999px; border:1px solid var(--text);
  font-weight:900; font-size:12px;
}

.deal-date{ color:var(--muted); font-size:12px; font-weight:700; }

.deal .deal-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:22px; align-items:start; }
.deal .deal-img{ width:100%; border-radius: var(--radius); border:1px solid var(--line); box-shadow: var(--shadow); }
.deal .deal-price{ font-size:30px; margin: 0 0 10px; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .hero h1{ font-size:34px; }
  .deal .deal-grid{ grid-template-columns: 1fr; }
}
