
:root{
  --bg:#ffffff;
  --text:#1a1a1a;
  --muted:#666;
  --brand:#fe0000;
  --brand-dark:#b10000;
  --accent:#fe0000;
  --soft:#f6f7f9;
  --border:#e6e7eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

/* Top contact bar */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:9999;
  background:#f8f9fb;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.topbar .container{
  display:flex; gap:18px; justify-content:flex-end; align-items:center;
  padding:6px 16px;
}
.topbar a{color:var(--brand); text-decoration:none; font-weight:600}
.topbar a:hover{text-decoration:underline}
/* Layout */
.container{max-width:1100px; margin:0 auto; padding:0 16px}
header.site{
  position:sticky; top:36px; z-index:9990;
  background:var(--bg); border-bottom:1px solid var(--border);
}
.brand{
  display:flex; align-items:center; gap:12px; padding:12px 0;
}
.brand img{height:38px; width:auto}
.brand .name{font-weight:800; font-size:20px; letter-spacing:.3px}
nav ul{list-style:none; display:flex; gap:18px; margin:0; padding:0}
nav a{color:var(--text); text-decoration:none; font-weight:600}
nav a:hover{color:var(--brand)}
.navrow{display:flex; align-items:center; justify-content:space-between; padding:6px 0}
/* Hero */
.hero{padding:72px 0 40px; background:linear-gradient(180deg,var(--soft),#fff)}
.hero h1{font-size:40px; line-height:1.2; margin:0 0 10px}
.hero p{color:var(--muted); max-width:820px}
.cta{
  display:inline-block; background:var(--brand); color:#fff; padding:12px 18px; border-radius:10px; font-weight:700; text-decoration:none; margin-top:14px
}
.cta:hover{background:var(--brand-dark)}
/* Cards */
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:30px 0}
.card{border:1px solid var(--border); border-radius:14px; padding:18px; background:#fff}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted)}
/* Table */
.table{width:100%; border-collapse:collapse; border:1px solid var(--border)}
.table th,.table td{padding:10px 12px; border-bottom:1px solid var(--border); text-align:left; font-size:14px}
.table th{background:#f3f5f8; font-size:13px; text-transform:uppercase; letter-spacing:.03em}
.searchrow{display:flex; gap:12px; align-items:center; margin:10px 0 18px}
input[type="search"],input[type="text"],input[type="email"],input[type="tel"],textarea{
  width:100%; padding:12px 14px; border-radius:10px; border:1px solid var(--border); font-size:16px
}
textarea{min-height:120px}
button, .btn{background:var(--brand); color:#fff; border:none; padding:12px 16px; border-radius:10px; font-weight:700; cursor:pointer; text-decoration:none; display:inline-block}
button:hover, .btn:hover{background:var(--brand-dark)}
/* Footer */
footer{margin-top:40px; border-top:1px solid var(--border); background:#fff}
.footer-top{display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; padding:26px 0}
.small{font-size:14px; color:var(--muted)}
.copy{border-top:1px solid var(--border); padding:12px 0; font-size:14px; color:var(--muted)}
/* Responsive */
.burger{display:none}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .hero h1{font-size:32px}
  header.site{top:64px}
  .burger{display:inline-flex; flex-direction:column; gap:4px; cursor:pointer}
  .burger span{width:24px; height:2px; background:#111}
  nav{display:none}
  nav.open{display:block; padding:0 0 12px}
  nav ul{flex-direction:column; gap:10px; padding-top:10px}
}
