:root{
  --brand:#1976D2;
  --dark:#222;
  --muted:#666;
  --bg:#f9fbfc;
  --card:#fff;
  --radius:12px;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}

/* GLOBAL RESET */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
}

.wrap{
  max-width:1100px;
  margin:28px auto;
  padding:20px;
}

/* HEADER */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:52px;
  height:auto;
}
nav a{
  color:var(--dark);
  text-decoration:none;
  margin-left:18px;
  font-weight:600;
}

/* HERO BANNER */
.hero{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:24px;
  margin-top:22px;
  align-items:center;
}
.hero-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 6px 20px rgba(20,30,40,0.06);
}
h1{
  font-size:28px;
  margin:0 0 10px;
}
p.lead{
  color:var(--muted);
  margin:0 0 18px;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  background:var(--brand);
  color:white;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}
.btn.ghost{
  background:transparent;
  color:var(--brand);
  border:2px solid var(--brand);
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.feat{
  background:var(--card);
  padding:14px;
  border-radius:10px;
  text-align:center;
}
.small{
  font-size:13px;
  color:var(--muted);
}

/* FOOTER */
footer{
  margin-top:36px;
  padding-top:18px;
  border-top:1px solid #eee;
  color:var(--muted);
  font-size:14px;
}

/* SERVICE/PRICING CARDS */
.card-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.card{
  background:var(--card);
  padding:14px;
  border-radius:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.muted{
  color:var(--muted);
}
.contact-pill{
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #eee;
}
.note{
  font-size:13px;
  color:var(--muted);
  margin-top:12px;
}

/* RESPONSIVE */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .features{grid-template-columns:1fr 1fr}
  nav{display:none}
  .wrap{padding:16px}
  .brand img{width:44px}
}

@media (max-width:520px){
  .features{grid-template-columns:1fr}
  h1{font-size:22px}
}

/* FORMS */
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.form-row .full{
  grid-column:1/-1;
}

/* PRODUCT GRID */
.container-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:12px;
}
.product-card img{
  max-width:100%;
  height:auto;
  border-radius:8px;
}
