/* ============================================================
   TopVaBor — landing page
   Dizayn manbasi: "TopVaBor Landing" design doc (2a / 2b breakpointlar)
   ============================================================ */

/* ── Shriftlar (self-hosted Inter variable) ───────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

/* ── Tokenlar ─────────────────────────────────────────────── */
:root {
  --navy: #141470;
  --green: #10b981;
  --green-dark: #047857;
  --green-soft: #d1fae5;
  --ink: #1f2937;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e5e7eb;
  --line-soft: #f3f4f6;
  --surface: #f9fafb;
  --white: #fff;

  --shadow-sm: 0 8px 18px rgba(16, 185, 129, 0.28);
  --shadow-md: 0 18px 44px rgba(15, 23, 42, 0.16);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Yon paddinglar breakpointga qarab suziladi */
  --gutter: clamp(20px, 5.5vw, 80px);
  --max-w: 1440px;
  --header-h: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--green); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Layout yordamchilari ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; color: var(--white); }

/* ── Tugmalar ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #0ea271;
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  min-height: 54px;
  padding: 0 30px;
  font-size: 15px;
}
.btn-white:hover { color: var(--green-dark); background: #f2fbf7; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  min-height: 54px;
  padding: 0 30px;
  font-size: 15px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.26); color: var(--white); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex: none;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.brand-name {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.brand-name-sm { font-size: 18px; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--green-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  padding: 6px 12px;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.lang-switch button.is-active {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.btn-download { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded='true'] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}
.nav-mobile .btn {
  margin-top: 8px;
  min-height: 50px;
  color: var(--white);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero { padding: clamp(30px, 5vw, 80px) 0 clamp(44px, 6vw, 84px); }

.hero-grid {
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 26px);
  min-width: 0;
}

/* Desktopgacha hero bitta ustun: matn → rasm → statistika
   (mobil maketdagi 2b tartibi). */
@media (max-width: 1023.98px) {
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { order: 0; }
  .hero-media { order: 1; width: 100%; }
  .stats { order: 2; }
  /* Rasm ekranni egallab ketmasin */
  .hero-img { aspect-ratio: 16 / 10; max-height: 380px; }

  /* Statistika — mobil maketdagidek ramkali blok */
  .stats {
    gap: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
  }
  .stat {
    align-items: center;
    padding: 14px 4px;
    text-align: center;
  }
  .stat + .stat { padding-left: 4px; }
}

.pill {
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.hero-sub-en { color: var(--muted-2); }

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-btn {
  display: flex;
  flex: 1 1 130px;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 0 clamp(14px, 4vw, 24px);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  transition: background 0.15s ease;
}
.store-btn:hover { background: #111827; color: var(--white); }
.store-btn-top {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}
.store-btn-name { font-size: 15px; font-weight: 700; }

.stats {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  padding-top: 4px;
}
.stat {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}
.stat + .stat {
  padding-left: clamp(16px, 3vw, 34px);
  border-left: 1px solid var(--line);
}
.stat-value {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.stat-label {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-media { position: relative; min-width: 0; }
.hero-img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.booking-card {
  display: none;
  position: absolute;
  left: clamp(-40px, -2vw, 0px);
  bottom: 44px;
  width: 266px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.booking-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.booking-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.booking-check svg { width: 18px; height: 18px; }
.booking-title { font-size: 14px; font-weight: 700; }
.booking-meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.booking-price {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ── Bo'lim sarlavhalari ──────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(24px, 3.5vw, 44px);
}
.section-head h2 {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.15;
  text-wrap: balance;
}
.section-lede {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-green { color: var(--green); }

.link-arrow {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* ── Qadamlar ─────────────────────────────────────────────── */
.steps {
  padding: clamp(44px, 6vw, 84px) 0;
  background: var(--surface);
}
.step-grid {
  display: grid;
  gap: clamp(12px, 1.7vw, 24px);
}
.step-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
}
.step-card h3 {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
}
.step-card p {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  color: var(--muted);
}

/* ── Maskanlar ────────────────────────────────────────────── */
.listings { padding: clamp(44px, 6vw, 84px) 0 clamp(28px, 3vw, 40px); }

.section-head-tight {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}
.venue { min-width: 0; }
.venue img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.venue:hover img { transform: translateY(-3px); }
.venue h3 {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
}
.venue-meta {
  margin-top: 3px;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--muted);
}
.venue-price {
  margin-top: 4px;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--green-dark);
}

/* ── Afzalliklar ──────────────────────────────────────────── */
.features { padding: clamp(28px, 3vw, 44px) 0 clamp(44px, 6vw, 84px); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 24px);
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.feature svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}
.feature h3 {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
}
.feature p {
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.6;
  color: var(--muted);
}

/* ── Egalar uchun ─────────────────────────────────────────── */
.owners { padding-bottom: clamp(44px, 6vw, 84px); }
.owner-panel {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(22px, 3.6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
}
.owner-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}
.owner-copy h2 {
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.026em;
  line-height: 1.15;
  text-wrap: balance;
}
.owner-copy p {
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.6;
  color: var(--muted);
}
.owner-copy .btn { min-height: 50px; padding: 0 28px; font-size: 15px; }
.owner-img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ── Yo'nalishlar ─────────────────────────────────────────── */
.regions { padding-bottom: clamp(36px, 5vw, 72px); }
.regions h2 {
  margin-bottom: 18px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.region-list a {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.region-list a:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

/* ── Savol-javob ──────────────────────────────────────────── */
.faq { padding-bottom: clamp(44px, 6vw, 84px); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  padding: clamp(14px, 1.6vw, 20px) clamp(16px, 1.8vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--green-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

/* ── Yakuniy CTA ──────────────────────────────────────────── */
.cta {
  padding: clamp(34px, 5vw, 72px) 0;
  background: var(--green);
  color: var(--white);
}
.cta-grid {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cta h2 {
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  text-wrap: balance;
}
.cta p {
  max-width: 460px;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-buttons .btn { flex: 1 1 150px; }

.cta-phone { display: none; justify-content: flex-end; }
.cta-phone > img {
  width: 236px;
  padding: 12px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  border-radius: 34px 34px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { padding: clamp(30px, 5vw, 72px) 0 clamp(24px, 3vw, 40px); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.footer-about {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-about p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
}
.footer-col a:hover { color: var(--green-dark); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 13px; color: var(--muted-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { font-size: 13px; color: var(--muted-2); }
.footer-legal a:hover { color: var(--muted); }

/* ============================================================
   Breakpointlar
   ============================================================ */

/* ≥ 560px — kichik telefondan kattaroq */
@media (min-width: 560px) {
  .booking-card { display: block; position: static; width: 100%; margin-top: 16px; }
  .footer-about { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ≥ 768px — planshet */
@media (min-width: 768px) {
  :root { --header-h: 72px; }

  .lang-switch { display: flex; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owner-panel { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr minmax(0, 300px); }
  .cta-phone { display: flex; }
  .cta-buttons .btn { flex: 0 1 auto; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); }
  .store-btn { flex: 0 1 auto; }
}

/* ≥ 1024px — desktop: hero ikki ustunga bo'linadi */
@media (min-width: 1024px) {
  :root { --header-h: 76px; }

  .nav-desktop { display: flex; }
  .btn-download { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  /* Chap ustun: matn + statistika, o'ng ustun: ikkala qatorga cho'zilgan rasm */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    row-gap: 34px;
  }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .stats { grid-column: 1; grid-row: 2; }
  .hero-media {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    display: flex;
    justify-content: flex-end;
  }
  .booking-card {
    display: block;
    position: absolute;
    width: 266px;
    margin-top: 0;
  }
  .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta-grid { grid-template-columns: 1fr 420px; }
}

/* ≥ 1200px — keng ekran nozikliklari */
@media (min-width: 1200px) {
  .hero-img { max-width: 600px; }
}
