
:root{
  --blue:#0b4f8a;
  --orange:#f08a1a;
  --dark:#0b1220;
  --muted:#5b677a;
  --bg:#f6f8fb;
  --card:#ffffff;
  --border:#e6eaf2;
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--dark);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px; margin:0 auto; padding:22px}
header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,248,251,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:44px; width:auto}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.navlinks a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--dark);
  font-weight:600;
}
.navlinks a:hover{background:#fff; text-decoration:none; box-shadow:0 6px 16px rgba(15,23,42,.06)}
.cta{
  background:linear-gradient(135deg, var(--blue), #1b77c6);
  color:#fff !important;
}
.cta:hover{filter:brightness(1.05)}
.hero{
  padding:34px 0 10px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width:900px){
  .heroGrid{grid-template-columns:1fr}
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.badgeRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  padding:8px 10px;
  border-radius:999px;
  background:#eef6ff;
  border:1px solid #d7e9ff;
  color:var(--blue);
  font-weight:700;
  font-size:13px;
}
h1{margin:0 0 10px; font-size:40px; line-height:1.08}
@media (max-width:500px){h1{font-size:34px}}
.lead{font-size:18px; color:var(--muted); margin:0 0 16px}
.btnRow{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  color:var(--dark);
}
.btnPrimary{
  background:linear-gradient(135deg, var(--orange), #ffb14a);
  border:0;
}
.btnPrimary:hover{text-decoration:none; filter:brightness(1.03)}
.btnOutline{
  border:1px solid #cfe3ff;
  background:#f3f9ff;
  color:var(--blue);
}
.btn:hover{text-decoration:none}
.small{font-size:14px; color:var(--muted)}
.section{padding:18px 0}
.section h2{margin:0 0 10px; font-size:28px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.item h3{margin:0 0 6px}
.price{font-weight:900; color:var(--blue)}
.kv{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.kv span{
  background:#f2f4f8;
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  color:#27324a;
}
hr.sep{border:0; border-top:1px solid var(--border); margin:18px 0}
.formRow{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:700px){.formRow{grid-template-columns:1fr}}
label{display:block; font-weight:800; margin:10px 0 6px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font:inherit;
}
textarea{min-height:110px; resize:vertical}
footer{
  padding:24px 0 36px;
  color:var(--muted);
}
.footerGrid{display:grid; grid-template-columns:1.2fr .8fr; gap:14px}
@media (max-width:900px){.footerGrid{grid-template-columns:1fr}}
.note{
  background:#fff7e8;
  border:1px solid #ffe1b8;
  color:#6b3d00;
  border-radius:14px;
  padding:12px 14px;
  font-weight:700;
}
