/* =========================================================
   B2B.repair — Light Tech / Repair Theme
========================================================= */

:root{
  --bg:#f1f5f9;            /* light workshop grey */
  --surface:#ffffff;       /* card background */
  --surface-2:#f8fafc;     /* soft card */
  --ink:#0f172a;           /* dark text */
  --muted:#64748b;         /* muted */
  --line:#e2e8f0;          /* border */

  --primary:#0ea5e9;       /* electric blue */
  --primary-2:#0284c7;

  --accent:#22c55e;        /* repair green */
  --accent-2:#16a34a;

  --radius:16px;
  --shadow:0 8px 24px rgba(15,23,42,.06);
}

body{
  background: var(--bg);
  color: var(--ink);
}

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 20px;
}

/* Typography */
.h1{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height:1.1;
  letter-spacing:-0.6px;
  margin:10px 0;
}
.p{ font-size:16px; line-height:1.6; }
.muted{ color:var(--muted); }
.small{ font-size:13px; }

/* Cards */
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-h{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}
.card-b{
  padding:16px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 20px;
  border-radius:12px;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  transition:all .2s ease;
  border:1px solid transparent;
}

.btn--primary{
  background:var(--primary);
  color:#fff;
}
.btn--primary:hover{
  background:var(--primary-2);
}

.btn--ghost{
  background:#fff;
  border:1px solid var(--line);
  color:var(--ink);
}
.btn--ghost:hover{
  background:#f1f5f9;
}

.w-100{ width:100%; }

/* Hero */
.hero{
  margin-top:28px;
}

.hero-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  display:grid;
  grid-template-columns:1.45fr .85fr;
  gap:24px;
  box-shadow:var(--shadow);
}

/* Kicker */
.kicker{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.14em;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(14,165,233,.08);
  border:1px solid rgba(14,165,233,.25);
}

/* Hero Actions */
.hero-actions{
  display:flex;
  gap:14px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* Metrics */
.hero-metrics{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.metric{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}

.metric strong{
  display:block;
  font-size:22px;
  color:var(--accent);
}

.metric span{
  font-size:12px;
  color:var(--muted);
}

/* Grid */
.grid{ display:grid; }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.gap-16{ gap:16px; }

/* Hover cards */
.home-cards{
  margin-top:24px;
}
.home-cards .card{
  transition:all .2s ease;
}
.home-cards .card:hover{
  border-color:var(--primary);
  transform:translateY(-3px);
}

/* How it works */
.how-card{
  margin-top:24px;
}
.steps{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:12px;
}
.steps li{
  color:var(--muted);
}

/* Responsive */
@media (max-width:1100px){
  .hero-card{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  .cols-3{ grid-template-columns:1fr; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-metrics{ grid-template-columns:1fr; }
}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "DejaVu Sans", sans-serif;
}