/* ====================================================
   Жаңа Бала — Толық лендинг
   Premium app marketing, pastel palette, mobile-first
   ==================================================== */

:root {
  /* Brand */
  --orange: #FF8A3D;
  --orange-dark: #F57420;
  --lavender: #7B5BC9;
  --lavender-soft: #E0D4FF;
  --peach: #FFD9C4;
  --peach-soft: #FFE9DA;
  --mint: #C8EBD8;
  --mint-strong: #3DA67A;
  --coral: #E8665C;

  /* Surface */
  --bg: #FFF8EE;
  --bg-deep: #FFF1DD;
  --card: #FFFFFF;
  --ink: #2A1B0F;
  --ink-soft: #5C4A3D;
  --ink-muted: #8B7868;
  --border: rgba(42, 27, 15, 0.08);

  /* Layout */
  --container: 1180px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 14px rgba(42, 27, 15, 0.06);
  --shadow: 0 14px 40px rgba(42, 27, 15, 0.08);
  --shadow-lg: 0 24px 70px rgba(42, 27, 15, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* Safari fallback: status bar/toolbar gap осы түсті алады */
html {
  scroll-behavior: smooth;
  background: #b9c6e8;
  overflow-x: hidden;
  overscroll-behavior-x: none; /* iOS-та bounce horizontal жоқ */
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; user-select: none; -webkit-user-drag: none; }

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

/* ============================================== */
/* CONTAINER                                       */
/* ============================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================== */
/* PLACEHOLDER PATTERN — суреттер жоқ кезінде     */
/* Сурет жүктелсе ([data-placeholder]:has(img:not([style*="opacity: 0"]))), placeholder көрінбейді. */
/* ============================================== */
[data-placeholder] {
  position: relative;
}
[data-placeholder]:not(:has(img))::before,
[data-placeholder]:has(img[style*="opacity: 0"])::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(123, 91, 201, 0.08),
    rgba(123, 91, 201, 0.08) 10px,
    rgba(123, 91, 201, 0.14) 10px,
    rgba(123, 91, 201, 0.14) 20px
  );
  border: 2px dashed rgba(123, 91, 201, 0.35);
  border-radius: inherit;
  color: var(--lavender);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  z-index: 0;
  pointer-events: none;
}
[data-placeholder] img {
  position: relative;
  z-index: 1;
}
[data-placeholder] img[style*="opacity: 0"] {
  display: none;
}

/* ============================================== */
/* BUTTONS                                         */
/* ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 138, 61, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost {
  background: rgba(42, 27, 15, 0.04);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(42, 27, 15, 0.08); }

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 999px;
}
.btn-lg.btn-primary {
  box-shadow: 0 14px 32px rgba(255, 138, 61, 0.4);
}

/* ============================================== */
/* HEADER — floating rounded pill                  */
/* ============================================== */
.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  padding: 0 24px;
  margin-top: 18px;
}
.header-inner {
  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(42, 27, 15, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo { height: 38px; width: auto; border-radius: 12px; }
.brand-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.nav-link:hover { color: var(--ink); background: rgba(42, 27, 15, 0.04); }
.nav-link.is-active {
  color: var(--orange);
  font-weight: 700;
}
.nav-link.is-active::after {
  content: "•";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1;
}

.btn-header { padding: 11px 20px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================== */
/* HERO — Mobile-first stacked, Desktop split      */
/* ============================================== */
.hero {
  position: relative;
  padding: 0;
}

/* Mobile: stacked (сурет жоғары — мәтін астында) */
.hero-inner {
  display: flex;
  flex-direction: column-reverse; /* сурет үсті — мәтін астында */
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: 30px 24px 40px;
  position: relative;
  z-index: 3;
}

.hero-spark {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 22px;
  color: var(--orange);
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(123, 91, 201, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

/* Hero trust badges (App Store rating + iOS+Android + Жарнамасыз) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Hero visual — толық viewport ені, кеспейді */
.hero-visual {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-top: -90px; /* header-дің артынан кіреді */
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text .hero-spark { display: none; }
.hero-text .hero-title { font-size: clamp(32px, 8vw, 44px); }
.hero-text .hero-sub { font-size: 15px; }
.hero-text .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 18px; }
.hero-text .hero-actions .btn { justify-content: center; width: 100%; }

/* ============================================== */
/* FEATURE CARDS (3-up)                            */
/* ============================================== */
.features {
  padding: 30px 0 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 26px 26px 26px 26px;
  border-radius: var(--radius);
  min-height: 180px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feat-peach    { background: linear-gradient(135deg, #FFEFE0 0%, #FFD9C4 60%, #FFC09E 100%); }
.feat-lavender { background: linear-gradient(135deg, #F2EBFF 0%, #E0D4FF 60%, #C9B8FF 100%); }
.feat-mint     { background: linear-gradient(135deg, #E5F5EC 0%, #C8EBD8 60%, #A8DCBF 100%); }

.feat-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}
.feat-peach    .feat-icon { background: var(--orange); }
.feat-lavender .feat-icon { background: var(--lavender); }
.feat-mint     .feat-icon { background: var(--mint-strong); }

.feat-icon-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.feat-body {
  align-self: flex-end;
  z-index: 2;
  position: relative;
}
.feat-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.feat-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

.feat-art {
  position: relative;
  width: 140px;
  height: 140px;
  align-self: flex-end;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================== */
/* HOW TO WIN — Сыйлық механикасы 4 step           */
/* ============================================== */
.how {
  padding: 80px 0 80px;
  position: relative;
}
.how .container {
  position: relative;
}
/* Desktop default: 2-column grid (text left, slider right) */
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.how-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255, 138, 61, 0.15);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.how-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.how-title-em { color: var(--orange); }
.how-sub {
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.55;
  max-width: 480px;
  margin: 0 0 24px;
}
/* Slider — 4 banner */
.how-slider {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.how-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #FFEFE0 0%, #FFD9C4 100%);
}
.how-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.how-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.how-slide picture,
.how-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.how-slide img {
  object-fit: cover;
  object-position: center;
}

/* Dot navigation */
.how-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  z-index: 3;
}
.how-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.how-dot.is-active {
  width: 24px;
  background: #fff;
}
.how-dot:hover { background: rgba(255, 255, 255, 0.95); }
.how-microcopy {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0;
  text-align: left;
  line-height: 1.5;
}
.how-microcopy-icon {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}
.how-microcopy-mobile { display: none; }

/* ============================================== */
/* APP SHOWCASE                                    */
/* ============================================== */
.showcase {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-areas:
    "eyebrow phones"
    "title   phones"
    "steps   phones"
    "badges  phones";
  grid-template-rows: auto auto auto auto;
  gap: 14px 60px;
  align-items: start;
  align-content: center;
  position: relative;
  z-index: 2;
}
.showcase-eyebrow { grid-area: eyebrow; }
.showcase-title   { grid-area: title; }
.showcase-steps   { grid-area: steps; }
.showcase-badges  { grid-area: badges; }
.showcase-phones  { grid-area: phones; align-self: center; }

/* Decorative eagle — оң жоғарыда жатыр (desktop default) */
.showcase-deco {
  position: absolute;
  top: 32px;
  right: 24px;
  width: 140px;
  height: auto;
  transform: rotate(8deg);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(42, 27, 15, 0.12));
}
.showcase-spark {
  position: absolute;
  color: #FFC04A;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  font-size: 18px;
}
.spark-1 { top: 12%; left: 6%; }
.spark-2 { top: 28%; right: 8%; }
.spark-3 { top: 70%; left: 12%; }

/* Eyebrow + title default (desktop) */
.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(123, 91, 201, 0.14);
  color: var(--lavender);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
  width: fit-content;
}
.title-em { color: var(--lavender); }

.showcase-steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
}
.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon-lavender { background: rgba(123, 91, 201, 0.16); }
.step-icon-orange   { background: rgba(255, 138, 61, 0.16); }
.step-icon-coral    { background: rgba(232, 102, 92, 0.16); }
.step-text {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.step-text strong {
  font-weight: 800;
  color: var(--ink);
}

.showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

.showcase-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.showcase-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-lavender { background: rgba(123, 91, 201, 0.15); }
.check-orange   { background: rgba(255, 138, 61, 0.18); }
.check-coral    { background: rgba(232, 102, 92, 0.18); }

.showcase-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}
.phone {
  position: relative;
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(42, 27, 15, 0.15);
  overflow: hidden;
  border: 8px solid #1a1a1a;
}
.phone-2 {
  margin-bottom: -22px;
  z-index: 2;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone { margin: 0; }
.phone-caption {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 4;
}

/* ============================================== */
/* WHY (Social proof)                              */
/* ============================================== */
.why {
  padding: 60px 0;
}
.why-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 36px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.why-spark { color: var(--orange); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon-lavender { background: rgba(123, 91, 201, 0.15); }
.why-icon-orange   { background: rgba(255, 138, 61, 0.15); }
.why-icon-mint     { background: rgba(61, 166, 122, 0.15); }
.why-icon-coral    { background: rgba(232, 102, 92, 0.15); }

.why-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.why-card-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================== */
/* FINAL CTA BANNER                                */
/* ============================================== */
.cta {
  padding: 30px 0 60px;
}
.cta-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(255, 216, 61, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #FFEFE0 0%, #FFE3D0 50%, #FFD9C4 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-deco {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 110px;
  height: auto;
  transform: rotate(8deg);
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(42, 27, 15, 0.15));
}
.cta-spark {
  position: absolute;
  color: #FFC04A;
  opacity: 0.6;
  pointer-events: none;
  font-size: 20px;
}
.cta-spark-1 { top: 18%; left: 8%; }
.cta-spark-2 { bottom: 14%; right: 14%; font-size: 14px; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 138, 61, 0.15);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.cta-title-em { color: var(--orange); }

.cta-sub {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 auto 22px;
  max-width: 460px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.cta-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(42, 27, 15, 0.04);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.25);
}
.cta-store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.35);
}
.cta-store-btn:active { transform: scale(0.97); }
.cta-store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.cta-store-btn small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.78;
}
.cta-store-btn strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-microcopy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0;
}

/* ============================================== */
/* FOOTER                                          */
/* ============================================== */
.site-footer {
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
}
.footer-logo { height: 30px; border-radius: 8px; }

.footer-stores {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.footer-store:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--ink-muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--orange); }

/* ============================================== */
/* RESPONSIVE — Mobile (default-ке қосымша)        */
/* ============================================== */
/* ============================================== */
/* SNAP DOTS — Reels-стиль pagination scrollbar    */
/* ============================================== */
.snap-dots {
  display: none; /* Default desktop-та жасырын */
}

@media (max-width: 767px) {
  .snap-dots {
    display: flex;
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    flex-direction: column;
    gap: 10px;
    padding: 12px 6px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .snap-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.25s ease, transform 0.25s ease, height 0.25s ease;
    cursor: pointer;
    text-decoration: none;
  }
  .snap-dot.is-active {
    background: #fff;
    transform: scale(1.15);
    height: 18px;
    border-radius: 999px;
  }
  .snap-dot:hover {
    background: rgba(255, 255, 255, 0.75);
  }
}

@media (max-width: 767px) {
  .container { padding: 0 16px; }

  /* === Reels-стиль scroll snap === */
  html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  body { overflow-x: hidden; }

  main > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  main > section.hero {
    justify-content: stretch;
    height: 100vh;
    height: 100svh;
  }
  main > section.showcase {
    overflow: hidden;
    justify-content: flex-start;
  }
  main > section.how {
    justify-content: flex-start;
    padding-top: 40px;
  }
  /* Download — content-ке тығыз жабысады, snap-stop pause қалмайды */
  main > section.cta {
    min-height: 0;
    height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    justify-content: flex-start;
    padding-top: 0;
  }

  /* Header — absolute, promo block-тан separate */
  .site-header {
    padding: 0;
    margin-top: 0;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 60;
  }
  .header-inner {
    background: transparent;
    box-shadow: none;
    padding: max(env(safe-area-inset-top), 16px) 16px 16px 16px;
    gap: 0;
    justify-content: flex-start;
  }
  .brand-name { display: none; }
  .brand-logo { height: 56px; border-radius: 14px; box-shadow: 0 6px 20px rgba(42, 27, 15, 0.18); }
  .brand { gap: 0; }
  .nav { display: none; }
  .btn-header { display: none; }
  .menu-toggle { display: none; }

  /* Mobile hero — fullscreen, әрқашан visible viewport (svh) */
  .hero {
    margin-top: 0;
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 580px;
    overflow: hidden;
    background: #b9c6e8;
  }
  body { background: var(--bg); }
  /* Әрбір секцияны cream фонға айналдыру (тек hero — sky) */
  main > section:not(.hero) { background: var(--bg); }
  .hero-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: calc(max(env(safe-area-inset-top), 12px) + 80px);
  }

  /* Promo block — аспан жерінде, тікелей мәтін (фон жоқ) */
  .hero-promo {
    position: relative;
    z-index: 3;
    margin: 0 20px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-promo-text {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.05;
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.85),
      0 4px 18px rgba(0, 0, 0, 0.75),
      0 8px 30px rgba(0, 0, 0, 0.55),
      0 1px 0 rgba(0, 0, 0, 0.6);
  }

  /* Eyebrow — кіші, uppercase */
  .promo-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 4px;
  }

  /* Headline — үлкен, ақ, "Ойын алаңы." — сары (italic жоқ) */
  .promo-headline {
    font-size: clamp(26px, 7.4vw, 34px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    line-height: 1.08;
  }
  .promo-headline em {
    font-style: normal;
    color: #FFD83D;
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.9),
      0 4px 16px rgba(0, 0, 0, 0.7),
      0 0 30px rgba(255, 216, 61, 0.4);
  }

  /* Support — нақты ақ */
  .promo-support {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    padding: 0 12px;
  }

  .hero-promo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.15s ease;

    /* Логотип түсіндегі orange gradient + glassmorphism (мөлдір) */
    background: linear-gradient(135deg,
      rgba(255, 165, 86, 0.55) 0%,
      rgba(255, 138, 61, 0.55) 45%,
      rgba(245, 116, 32, 0.55) 100%);
    background-size: 200% 200%;
    animation: heroPromoGradient 6s ease infinite;

    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
      0 8px 24px rgba(255, 138, 61, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  /* Shimmer — әйнек жылтырап өтеді */
  .hero-promo-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 100%);
    animation: heroPromoShine 3.5s ease-in-out infinite;
    z-index: -1;
  }

  /* Стрелка жұмсақ bounce — төменге шақырғандай */
  .hero-promo-btn svg {
    animation: heroPromoArrow 1.6s ease-in-out infinite;
  }

  .hero-promo-btn:active { transform: scale(0.96); }

  @keyframes heroPromoGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  @keyframes heroPromoShine {
    0% { left: -100%; }
    50% { left: 130%; }
    100% { left: 130%; }
  }
  @keyframes heroPromoArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
  }

  /* Сурет — толық экран, кеспейді себебі сурет 9:16 portrait */
  .hero-visual {
    position: absolute;
    inset: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  .hero-visual img,
  .hero-visual .hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* контейнер aspect ratio картинаға сай — кесу жоқ */
    object-position: center center;
  }
  .hero-visual::after { display: none; }

  /* Hero text — glass card жоқ, тек store buttons тікелей сурет үстінде */
  .hero-text {
    position: relative;
    z-index: 3;
    margin: 0 16px max(env(safe-area-inset-bottom), 20px);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-text-inner {
    text-align: center;
    align-items: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Glassmorphism store buttons */
  .hero-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .glass-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;

    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition: transform 0.15s ease, background 0.15s ease;
    min-height: 56px;
  }
  .glass-store-btn:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.65);
  }
  .glass-store-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }
  .glass-store-btn small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.72;
  }
  .glass-store-btn strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .hero-text-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text .hero-title {
    text-align: center;
    font-size: clamp(30px, 8vw, 38px);
    margin-bottom: 14px;
  }
  .hero-text .hero-sub {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 320px;
  }
  .hero-text .hero-actions { width: 100%; max-width: 360px; }
  .hero-text .hero-badge {
    margin-top: 6px;
    align-self: center;
  }

  /* === Features (Reels mode) — horizontal card layout === */
  .features {
    padding: 24px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    height: 100%;
    align-content: center;
  }

  /* Карточка — горизонталды: сол жақ icon+мәтін, оң жақ кейіпкер
     overflow visible — кейіпкер карточкадан 3D шығып тұрады */
  .feat-card {
    display: grid;
    grid-template-columns: 1fr 170px;
    grid-template-areas: "body art";
    align-items: center;
    gap: 8px;
    padding: 18px 18px 18px 18px;
    min-height: 0;
    max-height: calc((100dvh - 80px) / 3);
    overflow: visible;
    position: relative;
  }

  /* Card — relative позиция, icon абсолют сол жоғары */
  .feat-card { position: relative; padding-top: 64px; }

  .feat-card .feat-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .feat-icon-text { font-size: 14px; }

  /* Body — сол жақ */
  .feat-body {
    grid-area: body;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    align-self: center;
  }
  .feat-card .feat-title {
    font-size: 19px;
    line-height: 1.15;
    margin: 0;
  }
  .feat-card .feat-meta {
    font-size: 13px;
    line-height: 1.35;
    margin: 0;
  }

  /* Кейіпкер — оң жақ, card-тан 3D шығып тұрады */
  .feat-art {
    grid-area: art;
    width: 200px;
    height: 200px;
    margin: 0;
    margin-right: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
  .feat-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Radial mask — square frame жоғалады, soft round edge */
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 55%, rgba(0,0,0,0.6) 70%, transparent 80%);
    mask-image: radial-gradient(circle at 50% 50%, #000 55%, rgba(0,0,0,0.6) 70%, transparent 80%);
    transform: scale(1.25);
    transform-origin: center center;
    filter: drop-shadow(0 12px 18px rgba(42, 27, 15, 0.18));
  }
  /* Тек бүркіт — 4 жағынан 2px crop */
  .feat-peach .feat-art img {
    clip-path: inset(2px 2px 2px 2px);
  }

  /* === Showcase — premium reference дизайн === */
  .showcase {
    padding: 28px 16px 32px;
    background: var(--bg); /* Үстіндегі/астындағы беттермен бірдей сплошной фон */
    position: relative;
    overflow: hidden;
  }

  /* Жатқан бүркіт — accent оң жоғарыда (viewport-тан шықпайды) */
  .showcase-deco {
    position: absolute;
    top: 18px;
    right: 0;
    width: 100px;
    height: auto;
    transform: rotate(8deg);
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 6px 14px rgba(42, 27, 15, 0.12));
  }

  /* Декоративтi sparks */
  .showcase-spark {
    position: absolute;
    color: #FFC04A;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    font-size: 18px;
  }
  .spark-1 { top: 12%; left: 6%; font-size: 14px; }
  .spark-2 { top: 28%; right: 8%; font-size: 12px; }
  .spark-3 { top: 45%; left: 12%; font-size: 16px; }

  .showcase .container { padding: 0; }
  .showcase-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    grid-template-areas: none;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  /* Eyebrow pill */
  .showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(123, 91, 201, 0.14);
    color: var(--lavender);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 999px;
    margin-bottom: 14px;
  }

  /* Title — Fraunces serif (display) */
  .showcase-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(26px, 7.5vw, 34px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
    padding: 0 8px;
  }
  .showcase-title br { display: inline; }
  .showcase-title .title-em { color: var(--ink); }

  /* Subtitle */
  .showcase-sub {
    font-size: 13.5px;
    margin-bottom: 6px;
    line-height: 1.45;
    color: var(--ink-soft);
    padding: 0 8px;
  }
  .showcase-sub br { display: inline; }
  .showcase-sub strong {
    color: var(--ink);
    font-weight: 800;
  }
  .showcase-accent {
    font-size: 13px;
    font-weight: 700;
    color: var(--lavender);
    margin-bottom: 16px;
  }

  /* === 3 step icon list === */
  .showcase-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }
  .showcase-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 10px 14px;
  }
  .step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .step-icon-lavender { background: rgba(123, 91, 201, 0.16); }
  .step-icon-orange   { background: rgba(255, 138, 61, 0.16); }
  .step-icon-coral    { background: rgba(232, 102, 92, 0.16); }
  .step-text {
    font-size: 13px;
    line-height: 1.35;
    color: var(--ink);
    font-weight: 500;
  }
  .step-text strong {
    font-weight: 800;
    color: var(--ink);
  }

  /* === 3 mini-feature cards === */
  .mini-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-bottom: 18px;
  }
  .mini-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 14px 10px;
    text-align: left;
    box-shadow: 0 4px 14px rgba(42, 27, 15, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }
  .mini-icon-lavender { background: rgba(123, 91, 201, 0.16); }
  .mini-icon-orange   { background: rgba(255, 138, 61, 0.16); }
  .mini-icon-coral    { background: rgba(232, 102, 92, 0.16); }
  .mini-title {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0;
  }
  .mini-text {
    font-size: 11px;
    line-height: 1.3;
    color: var(--ink-soft);
    margin: 0;
  }

  /* === CTAs === */
  .showcase-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 14px;
  }
  .cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.15s ease;
    min-height: 48px;
    width: 100%;
    max-width: 320px;
  }
  .cta-pill:active { transform: scale(0.97); }
  .cta-pill-primary {
    background: linear-gradient(135deg, #FFC04A 0%, #FF8A3D 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 138, 61, 0.4);
    position: relative;
  }
  .cta-pill-primary .arrow {
    position: absolute;
    right: 18px;
  }
  .cta-pill-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid rgba(42, 27, 15, 0.08);
    backdrop-filter: blur(8px);
  }

  /* === Mini badges === */
  .showcase-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 0 4px;
  }
  .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-soft);
    border: 1px solid rgba(42, 27, 15, 0.05);
  }

  /* 3 phone layout — fan, ортасы биік */
  .showcase-phones {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1.12fr 1fr;
    align-items: end;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    perspective: 1200px;
  }
  .phone {
    aspect-ratio: 9 / 19;
    border-radius: 16px;
    border: 4px solid #1a1a1a;
    background: #1a1a1a;
    box-shadow:
      0 16px 36px rgba(42, 27, 15, 0.22),
      0 4px 10px rgba(42, 27, 15, 0.12);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
  }
  .phone-1 {
    transform: rotate(-3deg) translateY(8px);
    transform-origin: center bottom;
  }
  .phone-2 {
    margin-bottom: 14px;
    z-index: 3;
    box-shadow:
      0 22px 50px rgba(42, 27, 15, 0.28),
      0 6px 14px rgba(42, 27, 15, 0.15);
  }
  .phone-3 {
    transform: rotate(3deg) translateY(8px);
    transform-origin: center bottom;
  }
  .phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* === Why === */
  .why { padding: 28px 0; justify-content: flex-start; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-title {
    font-size: 20px;
    gap: 6px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    padding: 0 12px;
  }
  .why-card {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    border-radius: 18px;
  }
  .why-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .why-icon svg { width: 18px; height: 18px; }
  .why-card-title { font-size: 13.5px; line-height: 1.2; font-weight: 800; }
  .why-card-text { font-size: 11.5px; line-height: 1.4; }

  /* === HOW TO WIN === */
  .how {
    padding: 28px 0 32px;
  }
  .how .container { padding: 0 16px; }
  .how-inner {
    display: block;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .how-text {
    text-align: center;
    align-items: center;
  }
  .how-eyebrow {
    font-size: 10.5px;
    padding: 5px 11px;
    margin-bottom: 10px;
  }
  .how-title {
    font-size: clamp(24px, 6.6vw, 30px);
    margin-bottom: 8px;
    padding: 0 8px;
  }
  .how-sub {
    font-size: 13.5px;
    margin-bottom: 22px;
    padding: 0 8px;
    text-align: center;
    max-width: none;
  }
  /* Mobile: text wrapper holds eyebrow+title+sub. Microcopy moved AFTER slider. */
  .how-text .how-microcopy { display: none; }
  .how-microcopy-mobile {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 11px;
    padding: 0 16px;
    line-height: 1.4;
  }
  .how-slider {
    margin-bottom: 14px;
    max-width: none;
  }
  .how-slides {
    border-radius: 22px;
  }
  .how-dots { bottom: 10px; gap: 6px; }
  .how-dot { width: 7px; height: 7px; }
  .how-dot.is-active { width: 20px; }
  .how-microcopy {
    display: block;
    font-size: 11px;
    padding: 0 16px;
    line-height: 1.5;
    text-align: center;
  }
  .how-microcopy-icon {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
  }

  /* === CTA === */
  .cta { padding: 0 0 32px; }
  .cta .container { padding: 0 16px; }
  .cta-card {
    padding: 32px 22px 26px;
    border-radius: 26px;
    max-width: none;
  }
  .cta-deco {
    width: 72px;
    top: 14px;
    right: 14px;
    transform: rotate(10deg);
  }
  .cta-spark-1 { top: 10%; left: 6%; font-size: 14px; }
  .cta-spark-2 { bottom: 10%; right: 8%; font-size: 12px; }
  .cta-eyebrow {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .cta-title {
    font-size: clamp(24px, 6.6vw, 30px);
    margin-bottom: 10px;
    padding: 0 4px;
  }
  .cta-sub {
    font-size: 14px;
    margin-bottom: 16px;
    max-width: none;
    padding: 0 4px;
  }
  .cta-benefits {
    margin-bottom: 18px;
    gap: 6px;
  }
  .cta-benefits li {
    font-size: 11.5px;
    padding: 6px 11px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  .cta-store-btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .cta-microcopy {
    font-size: 11px;
  }

  /* === Footer === */
  .site-footer {
    padding: 24px 0 20px;
    min-height: auto !important;
    flex-direction: column;
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .footer-stores { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .footer-links { justify-content: center; gap: 14px; }
}

/* ============================================== */
/* RESPONSIVE — Tablet (768-1023)                  */
/* ============================================== */
@media (min-width: 601px) and (max-width: 1023px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-text { padding: 40px 32px 50px; max-width: 600px; margin: 0 auto; }
  .hero-text .hero-title { font-size: clamp(38px, 5.5vw, 52px); }
  .hero-text .hero-actions { flex-direction: row; }
  .hero-text .hero-actions .btn { width: auto; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .features-grid .feat-card:last-child { grid-column: 1 / -1; }

  .showcase-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "steps"
      "badges"
      "phones";
    gap: 18px;
    text-align: left;
  }
  .showcase-eyebrow { justify-self: start; }
  .showcase-phones {
    align-self: stretch;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
  }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid .why-card:last-child { grid-column: auto; }

  .cta-card {
    padding: 40px 36px 32px;
    max-width: 640px;
  }
  .cta-buttons { flex-direction: row; justify-content: center; }
  .cta-store-btn { min-width: 200px; }

  .how-inner {
    display: block;
    grid-template-columns: 1fr;
  }
  .how-text {
    text-align: center;
    align-items: center;
    margin-bottom: 24px;
  }
  .how-text .how-microcopy { display: none; }
  .how-microcopy-mobile {
    display: block;
    text-align: center;
    margin-top: 16px;
  }
  .how-sub { max-width: 540px; margin-left: auto; margin-right: auto; text-align: center; }
  .how-slider { max-width: 540px; margin: 0 auto; }
}

/* ============================================== */
/* RESPONSIVE — Desktop (≥1024) — split layout     */
/* ============================================== */
@media (min-width: 1024px) {
  .hero {
    margin-top: -90px;
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: linear-gradient(135deg, #ECE5FA 0%, #DCD0F2 50%, #C8D6EE 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 540px) 1fr;
    flex-direction: row;
    align-items: center;
    min-height: 720px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 24px 60px;
    gap: 40px;
  }

  .hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
  }
  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(236, 229, 250, 1) 0%,
      rgba(236, 229, 250, 0.92) 18%,
      rgba(236, 229, 250, 0.6) 38%,
      rgba(236, 229, 250, 0) 60%);
    pointer-events: none;
    z-index: 2;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
  }

  /* Promo block — desktop: hero сол жағында, бір cohesive content card */
  .hero-promo {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin: 0;
    padding: 0;
    grid-column: 1;
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
  }
  .hero-promo-text {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-shadow: none;
  }
  .promo-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: rgba(255, 138, 61, 0.14);
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 0;
  }
  .promo-headline {
    font-size: clamp(38px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
  }
  .promo-headline em {
    font-style: normal;
    color: var(--orange);
  }
  .promo-support {
    font-size: 17px;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 460px;
    margin: 0;
  }
  /* Desktop-та "Қалай қатысу" CTA жасырылады (store buttons негізгі CTA) */
  .hero-promo-btn { display: none; }

  /* Hero text container — desktop: promo астында, store buttons */
  .hero-text {
    position: relative;
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding: 0;
    margin: 0;
    max-width: 460px;
    justify-self: stretch;
    width: 100%;
  }
  .hero-text-inner {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  /* Layout: promo ОСТАЕТСЯ grid-col 1; store buttons + trust hero-text-те (грит-кол 1 ішінде stack) */
  .hero-inner {
    grid-template-columns: minmax(420px, 540px) 1fr;
    grid-template-rows: 1fr;
  }
  .hero-promo { grid-row: 1; align-self: center; }
  .hero-text {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-top: auto;
    padding-top: 30px;
  }

  /* Trust badges — desktop: subtle pill */
  .hero-trust {
    justify-content: flex-start;
    margin-bottom: 4px;
    gap: 8px;
  }
  .trust-badge {
    color: var(--ink-soft);
    background: rgba(42, 27, 15, 0.05);
    border-color: rgba(42, 27, 15, 0.08);
    text-shadow: none;
    font-size: 12px;
    padding: 6px 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Store buttons — desktop side-by-side */
  .hero-stores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 460px;
  }
  .glass-store-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 14px rgba(42, 27, 15, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 56px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .glass-store-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(42, 27, 15, 0.1);
  }
  .glass-store-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }
  .glass-store-btn small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.65;
  }
  .glass-store-btn strong {
    font-size: 15px;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
