:root{
  --bg:#f6fbff;
  --card:#ffffff;
  --text:#0b1b28;
  --muted:#5a6b78;
  --green:#1fbf84;
  --blue:#4fb6ff;
  --blue2:#0b7be6;
  --ring:rgba(79,182,255,.25);
  --shadow: 0 12px 30px rgba(11,27,40,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; color:var(--text); background:linear-gradient(180deg,#eef9ff, #ffffff 45%, #f2fff9);}
a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
.container{max-width:1160px;margin:0 auto;padding:0 18px}
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:18px;top:18px;width:auto;height:auto;background:#fff;padding:10px 12px;border-radius:10px;box-shadow:var(--shadow)}

/* Topbar */
.topbar{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.78);backdrop-filter:blur(10px);border-bottom:1px solid rgba(11,27,40,.06)}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:74px}
.brand{display:flex;align-items:center;gap:10px}
.brand__logo{width:44px;height:44px;object-fit:contain}
.brand__text strong{font-size:18px;letter-spacing:.4px}
.brand__text small{display:block;color:var(--muted);font-size:12px;margin-top:2px}

.nav{display:flex;align-items:center;gap:16px}
.nav a{font-weight:600;color:#123047;font-size:14px}

.nav__toggle{display:none;width:46px;height:44px;border:1px solid rgba(11,27,40,.12);border-radius:14px;background:#fff}
.nav__toggle span{display:block;height:2px;background:#123047;margin:7px 10px;border-radius:2px}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:14px;padding:12px 16px;font-weight:800;cursor:pointer}
.btn--sm{padding:10px 14px;border-radius:12px}
.btn--primary{background:linear-gradient(90deg,var(--green),var(--blue));color:#062132;box-shadow:0 10px 22px rgba(31,191,132,.22)}
.btn--ghost{background:rgba(79,182,255,.12);color:#0a3b63;border:1px solid rgba(79,182,255,.28)}
.btn--dark{background:#0b1b28;color:#fff}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 22px 0 0;
  box-shadow: var(--shadow);
}

/* Background image only */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* No overlay at all */
.hero__overlay {
  display: none;
}

/* Content */
.hero__content {
  position: relative;
  padding: 56px 42px;
  max-width: 720px;
  z-index: 2;
}

/* Main heading */
.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  color: #0b1b28; /* deep black/blue tone */
  font-weight: 800;
}

/* Highlight words (optional span inside h1) */
.hero h1 span {
  color: #1fbf84; /* green accent */
}

/* Sub text */
.hero p {
  color: #0ea5e9; /* light blue */
  font-size: 16px;
  line-height: 1.6;
  margin: 14px 0 22px;
  font-weight: 500;
}

/* CTA buttons */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Primary button */
.btn-primary {
  background: #1fbf84;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}
.btn-primary:hover {
  background: #16a56d;
}

/* Secondary button */
.btn-secondary {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
}
.btn-secondary:hover {
  background: #0284c7;
}

/* badges */
.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e6f4ef;
  padding: 10px 14px;
  border-radius: 999px;
  color: #0b1b28;
  font-weight: 700;
  font-size: 13px;
}

/* dot */
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1fbf84;
}


/* Sections */
.section{padding:34px 0}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:16px}
.section__head h2{margin:0;font-size:24px}
.section__head p{margin:0;color:var(--muted);max-width:720px}

.grid{display:grid;gap:16px}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.card{background:var(--card);border:1px solid rgba(11,27,40,.06);border-radius:var(--radius);box-shadow:0 10px 25px rgba(11,27,40,.05);overflow:hidden}
.card__p{padding:18px}
.card h3{margin:0 0 8px}
.muted{color:var(--muted)}
.kpi{display:flex;gap:12px;align-items:center}
.kpi strong{font-size:22px}
.icon{width:42px;height:42px;border-radius:14px;background:rgba(79,182,255,.14);border:1px solid rgba(79,182,255,.18);display:grid;place-items:center}
.icon svg{width:22px;height:22px}

.media{display:flex;gap:14px;align-items:center}
.media img{width:90px;height:72px;object-fit:cover;border-radius:14px;border:1px solid rgba(11,27,40,.08)}

/* Forms */
.form{display:grid;gap:12px}
.input{display:grid;gap:6px}
.input label{font-weight:700;font-size:13px;color:#123047}
.input input,.input textarea,.input select{width:100%;padding:12px 12px;border-radius:14px;border:1px solid rgba(11,27,40,.14);outline:none;background:#fff}
.input input:focus,.input textarea:focus,.input select:focus{box-shadow:0 0 0 6px var(--ring);border-color:rgba(79,182,255,.55)}
.notice{margin:10px 0 0;padding:12px 14px;border-radius:14px;border:1px solid rgba(11,27,40,.08)}
.notice.success{background:rgba(31,191,132,.10);border-color:rgba(31,191,132,.22)}
.notice.error{background:rgba(255,99,99,.10);border-color:rgba(255,99,99,.22)}

/* Footer */
.footer{margin-top:38px;padding:34px 0 16px;background:linear-gradient(180deg, rgba(79,182,255,.10), rgba(31,191,132,.08));border-top:1px solid rgba(11,27,40,.06)}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:18px}
.footer__logo{width:56px;height:56px;object-fit:contain}
.footer h4{margin:0 0 10px}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.footer__bottom{display:flex;justify-content:space-between;gap:10px;padding-top:16px;margin-top:16px;border-top:1px solid rgba(11,27,40,.08)}
.newsletter{display:flex;gap:10px;flex-wrap:wrap}
.newsletter input{flex:1;min-width:200px}

/* Responsive */
@media (max-width: 980px){
  .grid--3{grid-template-columns:1fr 1fr}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .nav__toggle{display:block}
  .nav{position:absolute;right:18px;top:76px;flex-direction:column;align-items:stretch;background:#fff;border:1px solid rgba(11,27,40,.10);border-radius:18px;padding:12px;box-shadow:var(--shadow);min-width:240px;display:none}
  .nav.open{display:flex}
  .hero__content{padding:42px 20px}
  .hero h1{font-size:34px}
  .grid--2{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
}
