:root{
  /* SafarGo brand (logodagi lime green) */
  --brand:#A6E22E;
  --brandDark:#6FAE00;
  --brandSoft:#F3FBE3;

  --bg:#ffffff;
  --text:#111827;
  --muted:#6B7280;
  --line:#E5E7EB;
  --card:#ffffff;

  --shadow:0 18px 45px rgba(17,24,39,.10);
  --shadow2:0 10px 25px rgba(17,24,39,.08);

  --r:18px;
  --r2:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Header */
.top{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:40px;height:40px;
  border-radius:12px;
  object-fit:contain;
  background:var(--brandSoft);
  padding:6px;
  border:1px solid rgba(166,226,46,.25);
}
.brand__text{display:flex;flex-direction:column;gap:2px}
.brand__name{font-weight:900;line-height:1}
.brand__tag{font-size:12px;color:var(--muted);line-height:1.2}

/* Hero */
.hero{
  padding:48px 0 28px;
  background:linear-gradient(180deg, var(--brandSoft), #fff 60%);
}
.hero__inner{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:20px;
  align-items:stretch;
}
.hero__left h1{
  margin:0 0 12px;
  font-size:38px;
  letter-spacing:-.02em;
}
.hero__left p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}

/* Buttons */
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:16px;
  background:var(--brand);
  color:#0B0F19;
  font-weight:900;
  border:1px solid transparent;
  box-shadow:0 10px 18px rgba(166,226,46,.25);
  transition:transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.btn:hover{
  background:var(--brandDark);
  box-shadow:0 12px 22px rgba(111,174,0,.28);
  transform:translateY(-1px);
}
.btn:active{transform:translateY(0)}
.btn--ghost{
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:none;
}
.btn--ghost:hover{
  background:rgba(166,226,46,.12);
  border-color:rgba(166,226,46,.55);
  transform:translateY(-1px);
}

/* Badges */
.badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 10px;
}

/* Card */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.card__title{
  font-weight:900;
  margin:0 0 12px;
  letter-spacing:-.01em;
}
.card__text{
  color:var(--muted);
  line-height:1.6;
  margin:10px 0 0;
  font-size:14px;
}

/* Counter row */
.statsRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.statsTitle{
  font-size:13px;
  color:var(--muted);
}
.statsNum{
  font-weight:900;
  font-size:28px;
  letter-spacing:-.02em;
  line-height:1;
}
.statsPlus{
  margin-left:4px;
  font-size:18px;
  font-weight:900;
}

/* Meter */
.meter{
  height:14px;
  background:#EEF2F7;
  border-radius:999px;
  overflow:hidden;
  border:1px solid var(--line);
}
.meter__fill{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--brand), var(--brandDark));
  transition:width .55s ease;
}

/* Note */
.note{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(166,226,46,.12);
  color:var(--text);
  font-size:14px;
  line-height:1.5;
}

/* Sections */
.section{padding:44px 0}
.section--alt{background:#FAFAFA;border-top:1px solid var(--line)}
h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.01em;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:16px;
  box-shadow:var(--shadow2);
}
.box h3{margin:0 0 6px;letter-spacing:-.01em}
.box p{margin:0;color:var(--muted);line-height:1.65}

/* Footer */
.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid var(--line);
  padding-top:14px;
  text-align:center;
}

/* Simple page (yolovchi/haydovchi) */
.page{
  padding:26px 0 40px;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel h1{
  margin:0 0 8px;
  letter-spacing:-.02em;
}
.panel p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
}

/* Responsive */
@media (max-width:900px){
  .hero__inner{grid-template-columns:1fr}
  .hero__left h1{font-size:32px}
  .grid{grid-template-columns:1fr}
  .btn{width:100%}
}