:root{
  --bg:#ffffff;
  --surface:#f8fafc;
  --surface2:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --green:#16a34a;
  --green2:#22c55e;
  --shadow: 0 12px 30px rgba(2,6,23,.08);
  --radius:16px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--green)}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.small{font-size:.92rem}
.muted{color:var(--muted)}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid var(--border);
  padding:8px 12px; border-radius:999px;
  background:rgba(34,197,94,.08);
}
.dot{width:9px;height:9px;border-radius:999px;background:var(--green)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow); border-color:#cbd5e1}
.btn.primary{
  background: linear-gradient(180deg,var(--green2),var(--green));
  border-color: rgba(22,163,74,.25);
  color:#fff;
}
.btn.primary:hover{border-color: rgba(22,163,74,.35)}
.btn.ghost{background:transparent}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:3px solid rgba(34,197,94,.35);
  outline-offset:2px;
}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:12px;
}
.kicker{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  font-weight:700;
}
.kicker a{display:inline-flex; gap:8px; align-items:center; padding:6px 10px; border:1px solid var(--border); border-radius:999px; background:#fff}
.kicker a:hover{border-color:#cbd5e1}
.nav{
  border-top:1px solid var(--border);
  background:#fff;
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; font-weight:900}
.brand span{letter-spacing:-.02em}
.brand img{width:34px; height:34px}
.links{display:flex; gap:18px; align-items:center; font-weight:800; color:#0f172a}
.links a{padding:8px 10px; border-radius:12px}
.links a.active{background:rgba(34,197,94,.10); color:#0f172a; border:1px solid rgba(22,163,74,.18)}
.links a:hover{background:#f1f5f9}

.menuBtn{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
}
.mobileMenu{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 14px;
}
.mobileMenu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
}
.mobileMenu a:hover{background:#f1f5f9}

.hero{
  padding:44px 0 22px;
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(34,197,94,.14), transparent 60%),
    radial-gradient(800px 260px at 90% 20%, rgba(59,130,246,.12), transparent 55%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}
.h1{
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height:1.06;
  letter-spacing:-.03em;
  margin:14px 0 12px;
}
.lead{font-size:1.08rem; color:var(--muted); max-width:62ch}
.card{
  background: #fff;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card.soft{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.grid{display:grid; gap:14px}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
.grid.cols-2{grid-template-columns: repeat(2, 1fr)}
.kpi{
  padding:14px;
  border:1px solid var(--border);
  border-radius:18px;
  background: #fff;
}
.kpi .big{font-size:1.6rem; font-weight:900; letter-spacing:-.02em}
.section{padding:28px 0}
.section h2{margin:0; font-size:1.85rem; letter-spacing:-.02em}
.section p{margin:8px 0 0; color:var(--muted)}
.feature{
  padding:18px;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
  transition: transform .12s ease, box-shadow .12s ease;
}
.feature:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.feature h3{margin:0 0 8px; font-size:1.1rem}
.feature ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.form{display:grid; gap:12px}
label{font-weight:900; font-size:.95rem}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-size:1rem;
}
textarea{resize:vertical}
.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(22,163,74,.25);
  background: rgba(34,197,94,.08);
  color:#14532d;
  font-weight:800;
}
.footer{
  border-top:1px solid var(--border);
  background: var(--surface);
  padding:26px 0;
  color:var(--muted);
}
.footer .footgrid{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  align-items:flex-start;
}
.footer a{color:var(--muted); font-weight:800}
.footer a:hover{color:var(--green)}
.breadcrumbs{font-size:.92rem; color:var(--muted); margin-top:10px}
.breadcrumbs a{color:var(--muted); font-weight:900}
.breadcrumbs a:hover{color:var(--green)}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  text-align:left;
}
.table tr:last-child td{border-bottom:none}
.table th{background:#f8fafc; font-weight:900}
.callout{
  border:1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding:16px;
}
.callout strong{color:var(--text)}
hr.sep{border:none;border-top:1px solid var(--border); margin:22px 0}

/* Supplier CTA block (big, above fold) */
.bigCta{
  padding:20px;
  border-radius: 24px;
  border:1px solid rgba(22,163,74,.18);
  background:
    radial-gradient(700px 220px at 15% 0%, rgba(34,197,94,.20), transparent 55%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow);
}
.bigCta h2{margin:0; font-size:1.6rem; letter-spacing:-.02em}
.bigCta p{margin:8px 0 0; color:var(--muted)}
.bigCta .row{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:14px}
.scrollHint{
  display:flex; gap:10px; align-items:center;
  margin-top:14px;
  padding:10px 12px;
  border-radius: 16px;
  border:1px dashed #cbd5e1;
  color: var(--muted);
  background:#fff;
  font-weight:700;
}

.cookie{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display:none;
}
.cookie .inner{
  max-width: var(--max);
  margin: 0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookie p{margin:0; color:var(--muted)}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .links{display:none}
  .menuBtn{display:inline-flex}
  .mobileMenu.open{display:block}
}
