/* ============================================================
   FITNESS CLUB — styles.css
   Қара фон + неон сары акцент
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --surface:   #141416;
  --surface-2: #1c1c20;
  --line:      #2a2a30;
  --line-soft: #202026;

  --accent:      #d4ff3f;
  --accent-dark: #b9e42a;
  --accent-glow: rgba(212, 255, 63, .18);

  --text:  #f2f2f0;
  --muted: #9b9ba3;

  --radius:    16px;
  --radius-sm: 10px;

  --container: 1180px;
  --header-h:  72px;

  --font-head: "Oswald", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #0a0a0b;
  padding: 12px 20px; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-narrow { max-width: 860px; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-alt { background: var(--surface); }

.center { text-align: center; margin-top: 40px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 48px);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.sub-title {
  font-size: 20px;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.sub-title.mt { margin-top: 32px; }

.section-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 780px;
  margin: 0 0 36px;
}

.muted { color: var(--muted); }
.small { font-size: 14px; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn-lg { padding: 16px 34px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

.btn-accent {
  background: var(--accent);
  color: #0a0a0b;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 11, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(10, 10, 11, .92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark { font-size: 20px; }
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
}
.logo-accent { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav a:hover { color: var(--text); }
.nav .nav-cta { color: #0a0a0b; padding: 10px 20px; font-size: 13px; }
.nav .nav-cta:hover { color: #0a0a0b; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 11px;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(70px, 11vw, 130px) clamp(60px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(212,255,63,.10), transparent 60%),
    radial-gradient(700px 500px at 90% 10%, rgba(212,255,63,.06), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; }

.hero-title {
  font-size: clamp(36px, 7.2vw, 78px);
  letter-spacing: -.01em;
  margin-bottom: 22px;
  max-width: 15ch;
}
.hero-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 19px);
  max-width: 620px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.stats {
  list-style: none;
  margin: clamp(48px, 7vw, 80px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.section-alt .card { background: var(--bg); }
.card:hover {
  border-color: rgba(212,255,63,.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* ---------- Біз туралы ---------- */
.feature-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 15px;
  transition: border-color .2s, transform .2s var(--ease);
}
.section-alt .feature { background: var(--bg); }
.feature:hover { border-color: rgba(212,255,63,.4); transform: translateX(4px); }
.feature-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }

/* ---------- Аймақтар ---------- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.zone-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.zone h3 { font-size: 24px; color: var(--accent); margin-bottom: 10px; letter-spacing: .04em; }
.zone > p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }

.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.tick-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #d8d8d6;
}
.tick-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Мақсаттар ---------- */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.goal {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  transition: border-color .2s, transform .2s var(--ease);
}
.goal:hover { border-color: rgba(212,255,63,.4); transform: translateY(-4px); }
.goal span { font-size: 28px; display: block; margin-bottom: 10px; }
.goal h4 { font-size: 15px; letter-spacing: .03em; }

/* ---------- Абонементтер ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.price { display: flex; flex-direction: column; position: relative; }
.price-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px rgba(212,255,63,.09);
}
.badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--accent);
  color: #0a0a0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-name { font-size: 22px; letter-spacing: .08em; margin-bottom: 6px; }
.price-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin: 0 0 22px;
}
.price-value span { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--muted); }
.price .tick-list { margin-bottom: 26px; flex: 1; }

/* ---------- Топтық жаттығулар ---------- */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.class-card h3 { font-size: 22px; color: var(--accent); margin-bottom: 8px; letter-spacing: .06em; }
.class-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Кесте ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.schedule {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--bg);
}
.schedule th, .schedule td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.schedule thead th {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
}
.schedule tbody th {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  letter-spacing: .06em;
  width: 110px;
}
.schedule td { color: #d8d8d6; }
.schedule tbody tr:last-child th,
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule tbody tr:hover td,
.schedule tbody tr:hover th { background: rgba(212,255,63,.045); }

/* ---------- Бағдарламалар ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.program h3 { font-size: 24px; color: var(--accent); margin-bottom: 10px; letter-spacing: .05em; }
.program p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.program-meta {
  display: inline-block;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--accent) !important;
  border: 1px solid rgba(212,255,63,.3);
  border-radius: 999px;
  padding: 4px 14px;
}
.num-list { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: #d8d8d6; font-size: 15px; }
.num-list li::marker { color: var(--accent); font-weight: 700; }

/* ---------- Split (2 баған) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ---------- Тамақтану ---------- */
.nutrition-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.nutrition-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.section-alt .nutrition-list li { background: var(--bg); }
.nutrition-list span { font-size: 22px; line-height: 1.3; flex-shrink: 0; }
.nutrition-list strong { color: var(--accent); }
.nutrition-list div { font-size: 15px; color: var(--muted); }

/* ---------- Прогресс ---------- */
.chip-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chip-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  color: #d8d8d6;
  transition: border-color .2s, color .2s;
}
.chip-list li:hover { border-color: var(--accent); color: var(--accent); }

.progress-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.progress-list li {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.progress-list li:last-child { border-bottom: none; padding-bottom: 0; }
.p-label { font-weight: 600; font-size: 15px; }
.p-from { color: var(--muted); font-size: 15px; }
.p-arrow { color: var(--accent); font-weight: 700; }
.p-to {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ---------- Неге біз ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.why-num {
  font-family: var(--font-head);
  font-size: 34px;
  color: rgba(212,255,63,.28);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.why h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: .03em; }
.why p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Пікірлер ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review { margin: 0; display: flex; flex-direction: column; }
.stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.review blockquote { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: #e4e4e2; flex: 1; }
.review figcaption { color: var(--accent); font-weight: 600; font-size: 14px; }

/* ---------- Галерея ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.tile { margin: 0; }
.tile-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(212,255,63,.10), transparent 55%),
    linear-gradient(315deg, rgba(255,255,255,.05), transparent 55%),
    var(--surface-2);
  transition: border-color .25s, transform .25s var(--ease);
}
.section-alt .tile-ph { background:
    linear-gradient(135deg, rgba(212,255,63,.10), transparent 55%),
    linear-gradient(315deg, rgba(255,255,255,.05), transparent 55%),
    var(--bg); }
.tile:hover .tile-ph { border-color: rgba(212,255,63,.45); transform: translateY(-4px); }
.tile figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.section-alt .faq-item { background: var(--bg); }
.faq-item:hover { border-color: rgba(212,255,63,.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
}
.faq-q i {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq-q i::before, .faq-q i::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.faq-q i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-q i::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] i::after { transform: rotate(90deg); opacity: 0; }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-a { padding: 0 20px 20px; }
.faq-a p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Байланыс ---------- */
.info-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.info-list span { font-size: 20px; line-height: 1.3; flex-shrink: 0; }
.info-list a { color: var(--accent); }
.info-list a:hover { text-decoration: underline; }

.contact-links { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, color .2s, transform .2s var(--ease);
}
.contact-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Форма ---------- */
.form { display: grid; gap: 16px; margin-top: 20px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: #d8d8d6; }
.field input, .field select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color .2s, background .2s;
}
.section-alt .field input, .section-alt .field select { background: var(--surface); }
.field input::placeholder { color: #61616a; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4ff3f' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}
.field input.is-invalid { border-color: #ff5c5c; }
.error { margin: 0; color: #ff7a7a; font-size: 13px; }
.form-note { margin: 0; text-align: center; }
.form-success {
  margin: 0;
  background: rgba(212,255,63,.10);
  border: 1px solid rgba(212,255,63,.45);
  color: var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* ---------- Финал CTA ---------- */
.cta-final {
  padding-block: clamp(70px, 10vw, 130px);
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(212,255,63,.13), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
}
.cta-final .center { margin-top: 0; }
.cta-final .eyebrow { text-align: center; }
.cta-title {
  font-size: clamp(30px, 5.6vw, 60px);
  margin-bottom: 34px;
  line-height: 1.12;
}
.cta-final .section-title::after { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  padding-block: 44px 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-inner .logo { margin-bottom: 10px; }
.footer-inner p { margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--accent); }
.copyright { margin: 20px 0 0; text-align: center; }

/* ---------- Reveal анимация ----------
   JS қосулы болғанда ғана жасырылады, әйтпесе мазмұн бірден көрінеді. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js-anim .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Адаптив
   ============================================================ */

@media (max-width: 1020px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  .nav .nav-cta {
    margin-top: 16px;
    border-bottom: none;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .burger { display: flex; }
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .card { padding: 22px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .section-title::after { width: 44px; }

  /* Кестені карточкаға айналдыру */
  .table-wrap { overflow: visible; border: none; }
  .schedule { min-width: 0; background: transparent; }
  .schedule thead { display: none; }
  .schedule tbody, .schedule tr, .schedule td, .schedule th { display: block; width: auto; }
  .schedule tbody tr {
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .section-alt .schedule tbody tr { background: var(--surface-2); }
  .schedule tbody th {
    width: auto;
    background: rgba(212,255,63,.08);
    color: var(--accent);
    font-size: 16px;
    letter-spacing: .1em;
    border-bottom: 1px solid var(--line-soft);
  }
  .schedule tbody td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
  }
  .schedule tbody td::before {
    content: attr(data-day);
    color: var(--muted);
    font-size: 14px;
  }
  .schedule tbody tr:hover td,
  .schedule tbody tr:hover th { background: inherit; }

  .progress-list li { grid-template-columns: 1fr; gap: 2px; }
  .p-arrow { display: none; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
}

/* ---------- Қозғалысты азайту ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js-anim .reveal { opacity: 1; transform: none; }
}
