:root{
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface2: #f1f5f9;

  --text: #0f172a;     /* slate-900 */
  --muted: #475569;    /* slate-600 */
  --faint: #64748b;    /* slate-500 */

  --line: #e2e8f0;     /* slate-200 */
  --line2: #cbd5e1;    /* slate-300 */

  --brand: #1d4ed8;    /* blue-700 */
  --brand2:#2563eb;    /* blue-600 */
  --brandSoft: rgba(37,99,235,.10);

  --good: #16a34a;

  --shadow: 0 14px 40px rgba(2,6,23,.10);
  --shadow2: 0 10px 24px rgba(2,6,23,.08);

  --radius: 14px;
  --radius2: 18px;
  --container: 1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 520px at 70% -10%, rgba(37,99,235,.10), transparent 55%),
    radial-gradient(720px 420px at 10% 10%, rgba(29,78,216,.07), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{color: var(--brand)}

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

.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:12px;
  box-shadow: var(--shadow2);
}
.skip:focus{left:10px; z-index:9999}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 68px;
  gap: 14px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand__mark{
  width: 14px; height: 14px; border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.brand__text{color: var(--text)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color: var(--muted); font-weight:650}
.nav a:hover{color: var(--brand)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(37,99,235,.35);
  background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(37,99,235,.06));
  color: var(--brand);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight:800;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.btn:hover{border-color: rgba(37,99,235,.55); background: rgba(37,99,235,.10)}
.btn--ghost{
  background: transparent;
  border-color: var(--line2);
  color: var(--text);
  box-shadow:none;
}
.btn--ghost:hover{border-color: var(--brand); color: var(--brand)}
.btn--small{padding: 10px 12px; border-radius: 12px; font-size: 14px}

.hamburger{
  display:none;
  border:1px solid var(--line2);
  background: #fff;
  padding:10px 10px;
  border-radius: 12px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.hamburger span{
  display:block;
  width: 20px; height: 2px;
  background: rgba(15,23,42,.75);
  margin:4px 0;
  border-radius: 2px;
}

.mobileNav{
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.mobileNav__inner{
  padding: 12px 0 18px;
  display:grid;
  gap: 10px;
}
.mobileNav a{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  box-shadow: var(--shadow2);
}
.mobileNav a:hover{color: var(--brand); border-color: rgba(37,99,235,.35)}

/* Hero */
.hero{padding: 54px 0 16px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  padding: 8px 10px;
  border:1px solid rgba(37,99,235,.22);
  background: var(--brandSoft);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}
h1{margin: 14px 0 10px; font-size: clamp(30px, 4vw, 44px); line-height:1.12}
.lead{color: var(--muted); font-size: 16.5px; max-width: 62ch}
.hero__cta{display:flex; gap:12px; margin: 18px 0 14px; flex-wrap:wrap}
.hero__bullets{list-style:none; padding:0; margin: 10px 0 0; display:grid; gap: 8px}
.hero__bullets li{display:flex; gap:10px; align-items:flex-start; color: var(--muted)}
.dot{
  width:10px; height:10px; border-radius: 99px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  margin-top: 6px;
  flex: 0 0 auto;
}

/* Hero image */
.hero__art{
  position:relative;
  border-radius: var(--radius2);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 340px;
}
.hero__art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.hero__badge{
  position:absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}
.hero__badgeTitle{font-weight: 900}
.hero__badgeText{color: var(--muted); font-size: 13px; margin-top:2px}

.strip{padding: 14px 0 10px}
.strip__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: var(--shadow2);
}
.kpi__value{font-weight: 950; font-size: 18px; color: var(--text)}
.kpi__label{color: var(--muted); margin-top: 2px; font-size: 13px}

.section{padding: 54px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{margin-bottom: 18px}
.section__head h2{margin:0 0 6px; font-size: 28px}
.muted{color: var(--muted)}
.small{font-size: 13px; color: var(--faint)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.card__icon{font-size: 20px}
.card h3{margin: 10px 0 6px}
.card p{margin:0 0 10px; color: var(--muted)}
.ticks{margin:0; padding-left: 18px; color: var(--muted); display:grid; gap: 6px}
.ticks--big{gap: 10px; padding-left: 18px}
.ticks b{color: var(--text)}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.panel{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.panel h3{margin: 0 0 10px}

.note{
  margin-top: 14px;
  border: 1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: rgba(15,23,42,.92);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.step{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px;
  display:flex;
  gap: 12px;
  box-shadow: var(--shadow2);
}
.step__n{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.25);
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
  color: var(--brand);
}
.step__body h3{margin: 0 0 6px}
.step__body p{margin:0; color: var(--muted)}

.cta{
  margin-top: 18px;
  border: 1px solid rgba(37,99,235,.22);
  background: linear-gradient(180deg, rgba(37,99,235,.10), #fff);
  border-radius: var(--radius2);
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  box-shadow: var(--shadow);
}
.cta__copy h2{margin: 0 0 6px; font-size: 22px}
.cta__actions{display:flex; gap: 10px; flex-wrap:wrap}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.contact__card{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.contact__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact__row:last-child{border-bottom:none}
.contact__label{color: var(--faint); min-width: 90px}
.contact__value{color: var(--text); text-align:right}
.contact__value a{color: var(--brand); text-decoration: underline; text-decoration-color: rgba(37,99,235,.25)}
.contact__value a:hover{text-decoration-color: rgba(37,99,235,.55)}

.chip{
  margin-left: 10px;
  border: 1px solid var(--line2);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.chip:hover{border-color: rgba(37,99,235,.35); color: var(--brand)}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(22,163,74,.25);
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  color: var(--muted);
}
.footer__inner{display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap; align-items:center}
.footer__brand{font-weight: 950; color: var(--text)}
.footer__meta{margin-top: 6px; display:flex; gap: 10px; flex-wrap:wrap; align-items:center}
.sep{color: rgba(15,23,42,.25)}

@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:inline-block}
  .hero__grid{grid-template-columns: 1fr;}
  .hero__art{min-height: 260px}
  .strip__grid{grid-template-columns: 1fr 1fr}
  .cards{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .cta{flex-direction: column; align-items:flex-start}
}
