/* ============================================================
   Imzola landing — imzola.uz
   Dizayn tizimi: .claude/skills/imzola-design/SKILL.md
   Yagona akcent: yashil. Radius faqat 4/6/10/999. Gradient/blur/emoji YO'Q.

   ⚠️ imzola.uz — NIC apikey reyestrida ro'yxatdan o'tgan KRIPTO-QOBILIYATLI origin.
   Shu sababli bu sahifada UCHINCHI-TOMON SKRIPT, cookie va analitika TAQIQ.
   Sof statik: JS yo'q, tashqi so'rov yo'q.
   ============================================================ */

/* ── Shriftlar: SELF-HOST (Google Fonts CDN ATAYLAB ishlatilmaydi —
   CSP `font-src 'self'` + chet-el CDN IP uzatishi, ЗРУ-1125) ── */
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/golos-text-latin-ext-400-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/golos-text-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/golos-text-latin-ext-500-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/golos-text-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/golos-text-latin-ext-600-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/golos-text-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/golos-text-latin-700-normal.woff2') format('woff2');
}

/* ── Tokenlar (dizayn tizimidan, faqat kerakli qismi) ── */
:root {
  --green-50: #edf5f0;
  --green-100: #d6ebe0;
  --green-200: #b2d6c4;
  --green-600: #0f5c3c;
  --green-700: #0b4a30;
  --green-800: #093b26;

  --white: #ffffff;
  --gray-25: #fcfdfc;
  --gray-50: #f6f8f7;
  --gray-100: #eff2f0;
  --gray-200: #e2e7e4;
  --gray-300: #cbd3ce;
  --gray-400: #a9b4ad;
  --gray-500: #7e8a83;
  --gray-600: #5f6b64;
  --gray-900: #232925;

  --font-sans: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-sm: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 28px;
  --text-4xl: 34px;

  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --radius-md: 4px;
  --radius-lg: 6px;

  --dur-base: 180ms;
  --ease-out: cubic-bezier(0.2, 0.6, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  line-height: 26px;
  color: var(--gray-900);
  background: var(--gray-25);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

a {
  color: var(--green-700);
}

.wrap {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ── Sarlavha ── */
.site-header {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--gray-900);
  text-decoration: none;
}

/* ── Tugmalar ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 40px;
  padding-inline: var(--space-4);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--green-600);
  color: var(--white);
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.btn:hover {
  background: var(--green-700);
}
.btn:active {
  background: var(--green-800);
}
.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  background: var(--gray-50);
}
.btn-lg {
  height: 48px;
  padding-inline: var(--space-5);
  font-size: var(--text-lg);
}
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* ── Hero ── */
.hero {
  padding-block: var(--space-16) var(--space-12);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.hero h1 {
  max-width: 18ch;
  font-size: var(--text-4xl);
  line-height: 42px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero p {
  max-width: 58ch;
  margin-top: var(--space-5);
  color: var(--gray-600);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero__note {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  line-height: 18px;
  color: var(--gray-500);
}

/* ── Bo'limlar ── */
.section {
  padding-block: var(--space-16);
}
.section--alt {
  background: var(--white);
  border-block: 1px solid var(--gray-200);
}
.section > .wrap > h2 {
  font-size: var(--text-3xl);
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section__lead {
  max-width: 62ch;
  margin-top: var(--space-4);
  color: var(--gray-600);
}

.label-caps {
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ── Kartalar (chegara, soya EMAS) ── */
.grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.section--alt .card {
  background: var(--gray-25);
}
.card svg {
  color: var(--green-700);
}
.card h3 {
  margin-top: var(--space-4);
  font-size: var(--text-xl);
  line-height: 26px;
  font-weight: 600;
}
.card p {
  margin-top: var(--space-2);
  font-size: var(--text-md);
  line-height: 22px;
  color: var(--gray-600);
}

/* ── Qadamlar ── */
.steps {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: step;
}
.step {
  padding-top: var(--space-4);
  border-top: 2px solid var(--green-600);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: var(--text-sm);
  font-weight: 600;
}
.step h3 {
  margin-top: var(--space-3);
  font-size: var(--text-lg);
  line-height: 24px;
  font-weight: 600;
}
.step p {
  margin-top: var(--space-2);
  font-size: var(--text-md);
  line-height: 22px;
  color: var(--gray-600);
}

/* ── Taqqoslash ro'yxati ── */
.checklist {
  margin-top: var(--space-6);
  padding: 0;
  list-style: none;
}
.checklist li {
  display: flex;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--gray-200);
  font-size: var(--text-md);
  line-height: 22px;
}
.checklist li:last-child {
  border-bottom: 0;
}
.checklist svg {
  flex: none;
  margin-top: 2px;
  color: var(--green-600);
}

/* ── Yakuniy chaqiruv ── */
.cta {
  padding: var(--space-12);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  background: var(--green-50);
  text-align: center;
}
.cta h2 {
  font-size: var(--text-2xl);
  line-height: 28px;
  font-weight: 600;
}
.cta p {
  max-width: 52ch;
  margin: var(--space-3) auto 0;
  color: var(--gray-600);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* ── Pastki qism ── */
.site-footer {
  padding-block: var(--space-10);
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  font-size: var(--text-md);
  line-height: 22px;
  color: var(--gray-600);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-6);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

@media (max-width: 640px) {
  .hero {
    padding-block: var(--space-12) var(--space-10);
  }
  .hero h1 {
    font-size: var(--text-3xl);
    line-height: 34px;
  }
  .section {
    padding-block: var(--space-12);
  }
  .cta {
    padding: var(--space-8) var(--space-5);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
