:root{
  --bg:#f5f6f8;
  --card:#ffffff;
  --text:#1b1f24;
  --muted:#56606b;
  --border:#d9dee5;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --accent:#c01919;
  --accent-2:#101820;
  --focus:#0b5fff;
  --maxw:1600px;
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, #ffffff 0%, var(--bg) 260px);
  line-height:1.6;
}

a{color:var(--accent); text-decoration-thickness:.08em; text-underline-offset:.2em}
a:hover{text-decoration-thickness:.14em}
a:focus-visible, button:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:3px;
  border-radius:10px;
}

.skip-link{
  position:absolute; left:12px; top:12px;
  padding:10px 12px;
  background:var(--accent-2); color:#fff;
  border-radius:10px;
  transform:translateY(-140%);
  transition:transform .2s ease;
  z-index:9999;
}
.skip-link:focus{ transform:translateY(0); }

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 18px;
}

.site-header{
  position:sticky; top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
  z-index:200;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.brand img{
  display:block;
  height:72px;
  width:auto;
  max-height:100px;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{ background:rgba(0,0,0,.05); }
.nav .cta{
  background:var(--accent);
  color:#fff;
  box-shadow:0 6px 16px rgba(192,25,25,.25);
}
.nav .cta:hover{ background:#a91414; }

.hero{
  padding:18px 0 0;
}
.hero-box{
  min-height:190px;
  max-height:250px;
  background:linear-gradient(135deg, rgba(16,24,32,.96) 0%, rgba(192,25,25,.92) 110%);
  color:#fff;
  border-radius:calc(var(--radius) + 8px);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 18px;
  overflow:hidden;
}
.hero h1{
  margin:0;
  font-size:clamp(1.4rem, 2.4vw, 2.2rem);
  line-height:1.2;
}
.hero p{
  margin:.55rem 0 0;
  color:rgba(255,255,255,.9);
  max-width:70ch;
}
.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.badge{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 10px;
  border-radius:999px;
  font-weight:650;
  white-space:nowrap;
}
.badge strong{ color:#fff; }

main{ padding:22px 0 40px; }

.section{
  margin:22px 0;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.section h2{
  margin:0 0 10px;
  font-size:clamp(1.15rem, 1.8vw, 1.55rem);
  line-height:1.25;
}
.section h3{
  margin:16px 0 8px;
  font-size:1.05rem;
  line-height:1.25;
}
.section h4{
  margin:14px 0 8px;
  font-size:1rem;
}

.muted{ color:var(--muted); }

.grid{
  display:grid;
  gap:16px;
}
.grid.cols-2{ grid-template-columns:repeat(2, minmax(0,1fr)); }
.grid.cols-3{ grid-template-columns:repeat(3, minmax(0,1fr)); }
.grid.cols-4{ grid-template-columns:repeat(4, minmax(0,1fr)); }

@media (max-width: 1100px){
  .grid.cols-4{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .hero-box{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 680px){
  .grid.cols-3, .grid.cols-2, .grid.cols-4{ grid-template-columns:1fr; }
  .brand img{ height:60px; }
}

.kpi{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.kpi-item{
  flex:1 1 220px;
  background:linear-gradient(180deg, rgba(16,24,32,.02), rgba(16,24,32,.06));
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 14px;
}
.kpi-item .num{
  font-size:1.25rem;
  font-weight:800;
}
.kpi-item .label{
  margin-top:4px;
  color:var(--muted);
}

.tile-grid{ margin-top:10px; }
.tile a{
  display:block;
  color:inherit;
  text-decoration:none;
  height:100%;
}
.tile{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .15s ease, box-shadow .15s ease;
}
.tile:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}
.tile figure{
  margin:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  aspect-ratio: 4 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}
.tile img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.tile .body{
  padding:14px 14px 16px;
}
.tile .body h3{
  margin:0 0 6px;
  font-size:1rem;
}
.tile .body p{
  margin:0;
  color:var(--muted);
  font-size:.96rem;
}

.nowrap-link{
  white-space:nowrap;
  display:inline-block;
  max-width: min(560px, 100%);
  overflow:hidden;
  text-overflow:ellipsis;
  vertical-align:bottom;
}

.checklist{
  margin:10px 0 0;
  padding-left:18px;
}
.checklist li{ margin:6px 0; }

.accordion{
  border-top:1px solid var(--border);
  margin-top:10px;
}
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 12px;
  background:#fff;
  border:0;
  font:inherit;
  font-weight:750;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}
.faq-q .icon{
  width:28px; height:28px;
  border-radius:999px;
  border:1px solid var(--border);
  display:grid; place-items:center;
  flex:0 0 auto;
  color:var(--muted);
}
.faq-a{
  padding:0 12px 14px;
  color:var(--muted);
}
.faq-a[hidden]{ display:none; }

.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:16px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-links a{
  color:var(--text);
  text-decoration:none;
  font-weight:650;
}
.footer-links a:hover{ text-decoration:underline; }
