/* ============================================================
   ОТКРЫТОЧКА — MAIN CSS (gameinvitation.com style)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:  #7C3AED;
  --purple2: #9F67F5;
  --pink:    #FF6B9D;
  --coral:   #FF6B6B;
  --gold:    #FFD700;
  --dark:    #0D0B14;
  --dark2:   #13111E;
  --dark3:   #1A1730;
  --card:    #1E1B2E;
  --card2:   #252240;
  --border:  rgba(124,58,237,.25);
  --text:    #E8E4F4;
  --muted:   #9B97B8;
  --white:   #FFFFFF;
  --r:       12px;
  --r-lg:    20px;
  --shadow:  0 8px 32px rgba(124,58,237,.2);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; color: var(--white); }
p { color: var(--muted); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  padding: 13px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.5); }
.btn-primary--lg { font-size: 16px; padding: 16px 36px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple2); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,.12);
  color: var(--purple2);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(124,58,237,.22); }

/* ── SECTION HEAD ── */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px,4vw,42px); margin-bottom: 12px; }
.section-head p { font-size: 17px; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,.18);
  color: var(--purple2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;
  transition: background .3s, box-shadow .3s;
}
.nav--scrolled {
  background: rgba(13,11,20,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cabinet {
  background: transparent;
  color: var(--purple2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 9px 20px;
  border-radius: var(--r);
  border: 1.5px solid var(--purple);
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.nav__cabinet:hover { background: var(--purple); color: #fff; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  background: rgba(13,11,20,.98);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__mobile .nav__cabinet {
  display: inline-flex;
  margin-top: 8px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cabinet:not(.nav__mobile .nav__cabinet) { display: none; }
  .nav__burger { display: flex; }
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
}
.hero__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__glow--1 { width: 500px; height: 500px; background: #5B21B6; top: -100px; left: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: #BE185D; top: 30%; right: -50px; }
.hero__glow--3 { width: 300px; height: 300px; background: #1D4ED8; bottom: -50px; left: 40%; }

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__title span {
  background: linear-gradient(135deg, var(--purple2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__preview {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.hero__phone {
  width: 300px;
  height: 560px;
  background: var(--dark2);
  border-radius: 40px;
  border: 2px solid var(--border);
  box-shadow: 0 24px 80px rgba(124,58,237,.3), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.hero__phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--card2);
  border-radius: 3px;
  z-index: 2;
}
.hero__phone-screen {
  position: absolute;
  inset: 30px 8px 8px;
  background: var(--dark3);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-demo { text-align: center; padding: 16px; width: 100%; }
.game-demo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.game-demo__label { color: var(--muted); font-size: 12px; }
.demo-card {
  aspect-ratio: 1;
  cursor: pointer;
  perspective: 400px;
}
.demo-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .4s;
  border-radius: 8px;
}
.demo-card.flipped .demo-card__inner { transform: rotateY(180deg); }
.demo-card.matched .demo-card__inner { transform: rotateY(180deg); }
.demo-card__front, .demo-card__back {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backface-visibility: hidden;
}
.demo-card__front {
  background: var(--card2);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border);
}
.demo-card__back {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  transform: rotateY(180deg);
}
.demo-card.matched .demo-card__back { background: linear-gradient(135deg, #059669, #10B981); }

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__features { align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__phone { width: 240px; height: 440px; }
}

/* ═══ MODAL ═══ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--card2);
  border: none;
  color: var(--muted);
  font-size: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.modal__close:hover { color: var(--white); }
.modal__icon { font-size: 48px; margin-bottom: 16px; }
.modal__title { font-size: 22px; margin-bottom: 10px; }
.modal__text { font-size: 15px; margin-bottom: 24px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__input, .footer__input {
  background: var(--dark2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  font-family: 'Inter', sans-serif;
}
.modal__input:focus, .footer__input:focus { border-color: var(--purple); }
.modal__note { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ═══ WHAT IS ═══ */
.what-is { padding: 100px 0; }
.what-is__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.what-is__step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: transform .2s, box-shadow .2s;
}
.what-is__step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.what-is__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple2);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.what-is__icon { font-size: 36px; margin-bottom: 12px; }
.what-is__step h4 { font-size: 15px; margin-bottom: 8px; }
.what-is__step p { font-size: 13px; }
.what-is__arrow {
  font-size: 24px;
  color: var(--purple2);
  opacity: .6;
  flex-shrink: 0;
}
@media (max-width: 700px) { .what-is__arrow { display: none; } }

/* ═══ GAMES ═══ */
.games-sec { padding: 100px 0; background: var(--dark2); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.game-card__preview {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.game-card__preview--memory { background: linear-gradient(135deg, #1a0545, #2d0a6e); }
.game-card__preview--slot   { background: linear-gradient(135deg, #0a1545, #1a2d6e); }
.game-card__preview--maze   { background: linear-gradient(135deg, #0a2d1a, #0a3d20); }
.game-card__preview--saper  { background: linear-gradient(135deg, #2d1a0a, #4a2f0a); }
.game-card__preview--puzzle { background: linear-gradient(135deg, #1a0a2d, #2d1a45); }

.memory-demo {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  gap: 6px;
}
.mem-card {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mem-card--flip { background: linear-gradient(135deg, var(--purple), var(--purple2)); border-color: transparent; }

.slot-demo { text-align: center; }
.slot-reel {
  display: inline-block;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  font-size: 28px;
  line-height: 52px;
  margin: 0 4px;
}
.slot-line {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.maze-demo { padding: 8px; }
.maze-grid {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 4px;
}
.mz {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mz--wall { background: rgba(255,255,255,.18); }
.mz--player, .mz--exit { background: rgba(124,58,237,.3); }

.saper-demo { padding: 8px; }
.sap-grid {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 4px;
}
.sap {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.sap--open { background: rgba(255,255,255,.04); color: var(--muted); }
.sap--boom { background: rgba(239,68,68,.3); border-color: rgba(239,68,68,.4); }

.puzzle-demo { text-align: center; }
.puz-grid {
  display: grid;
  grid-template-columns: repeat(2, 56px);
  gap: 4px;
  margin: 0 auto 8px;
  width: fit-content;
}
.puz { width: 56px; height: 56px; border-radius: 6px; }
.puz--missing { background: rgba(255,255,255,.06); border: 2px dashed rgba(255,255,255,.2); }
.puz-label { font-size: 13px; color: var(--muted); }

.game-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.game-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.game-card__badge--free { background: linear-gradient(135deg, #059669, #10B981); }
.game-card__body h3 { font-size: 20px; }
.game-card__body p { font-size: 14px; }
.game-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 4px 0;
}
.game-card__list li { font-size: 13px; color: var(--muted); }
.game-card__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-top: auto;
}
.game-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ═══ USE CASES ═══ */
.usecases { padding: 100px 0; }
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.usecase {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.usecase:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.usecase__emoji { font-size: 32px; margin-bottom: 12px; }
.usecase h4 { font-size: 16px; margin-bottom: 8px; }
.usecase p { font-size: 14px; }

/* ═══ SURPRISE ═══ */
.surprise-sec { padding: 100px 0; background: var(--dark2); }
.surprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.surprise-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.surprise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.surprise-card__icon { font-size: 40px; margin-bottom: 14px; }
.surprise-card h4 { font-size: 17px; margin-bottom: 8px; }
.surprise-card p { font-size: 14px; }

/* ═══ HOW IT WORKS ═══ */
.hiw { padding: 100px 0; }
.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hiw__step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
}
.hiw__step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.hiw__step-icon { font-size: 36px; margin-bottom: 12px; }
.hiw__step h4 { font-size: 17px; margin-bottom: 8px; }
.hiw__divider {
  flex-shrink: 0;
  padding-top: 60px;
  opacity: .7;
}
.hiw__cta { text-align: center; margin-top: 48px; }
@media (max-width: 700px) { .hiw__divider { display: none; } }

/* ═══ BENEFITS ═══ */
.benefits { padding: 100px 0; background: var(--dark2); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__icon { font-size: 36px; margin-bottom: 14px; }
.benefit h4 { font-size: 19px; margin-bottom: 10px; }
.benefit p { font-size: 14px; margin-bottom: 16px; }
.benefit__tag {
  display: inline-block;
  background: rgba(124,58,237,.15);
  color: var(--purple2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.benefits__cta { text-align: center; }

/* ═══ PRICING ═══ */
.pricing { padding: 100px 0; }
.pricing__slider {
  position: relative;
  overflow: hidden;
}
.pricing__track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
  padding-bottom: 4px;
}
.price-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), var(--shadow);
}
.price-card__badge {
  position: absolute;
  top: -10px; right: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
}
.price-card__emoji { font-size: 32px; }
.price-card h4 { font-size: 17px; }
.price-card p { font-size: 13px; flex: 1; }
.price-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.price-card__price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.slider-btn:hover { background: var(--purple); }
.slider-btn--prev { left: -22px; }
.slider-btn--next { right: -22px; }

/* ═══ STEPS COMPACT ═══ */
.steps-compact { padding: 80px 0; background: var(--dark3); }
.steps-compact .section-head { margin-bottom: 40px; }
.steps-compact__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-c {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}
.step-c__num {
  width: 36px; height: 36px;
  background: var(--card2);
  border: 1.5px solid var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--purple2);
  margin: 0 auto 12px;
}
.step-c h4 { font-size: 16px; margin-bottom: 6px; }
.step-c p { font-size: 14px; }
.step-c__sep {
  font-size: 28px;
  color: var(--purple2);
  opacity: .5;
  padding-top: 8px;
  flex-shrink: 0;
}
@media (max-width: 600px) { .step-c__sep { display: none; } }

/* ═══ WHY US ═══ */
.why-us { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card__icon { font-size: 32px; margin-bottom: 12px; }
.why-card h4 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14px; }

/* ═══ UNIQUENESS ═══ */
.unique-sec { padding: 100px 0; background: var(--dark2); }
.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.unique-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.unique-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.unique-card__icon { font-size: 36px; margin-bottom: 14px; }
.unique-card h4 { font-size: 19px; margin-bottom: 10px; }
.unique-card p { font-size: 14px; line-height: 1.7; }

/* ═══ STATS ═══ */
.stats-sec {
  padding: 80px 0;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__val {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}
.stat__val-dec {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat__plus {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple2);
  vertical-align: top;
  margin-top: 4px;
}
.stat__label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.stat__div { width: 1px; height: 60px; background: var(--border); }
@media (max-width: 600px) { .stat__div { display: none; } }

/* ═══ REVIEWS ═══ */
.reviews-sec { padding: 100px 0; }
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform .5s ease;
}
.review {
  flex-shrink: 0;
  width: 100%;
  padding: 0 20px;
}
.review__stars { color: var(--gold); font-size: 22px; margin-bottom: 14px; text-align: center; }
.review__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.review__name { font-weight: 600; font-size: 15px; color: var(--white); }
.review__city { font-size: 13px; color: var(--muted); }
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.rev-btn {
  width: 40px; height: 40px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.rev-btn:hover { background: var(--purple); }
.reviews-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.rev-dot.active { background: var(--purple); transform: scale(1.3); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__subscribe {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer__subscribe-text h3 { font-size: 22px; margin-bottom: 6px; }
.footer__subscribe-text p { font-size: 15px; }
.footer__form { display: flex; gap: 12px; flex: 1; min-width: 280px; flex-wrap: wrap; }
.footer__input { flex: 1; min-width: 200px; }
.footer__main {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand { flex: 1; min-width: 200px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand p { font-size: 14px; margin-bottom: 12px; }
.footer__email { color: var(--purple2); font-size: 14px; text-decoration: none; }
.footer__email:hover { text-decoration: underline; }
.footer__cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}
.footer__col h5 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.footer__col a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.footer__col a:hover { color: var(--purple2); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__bottom p { font-size: 13px; }
.footer__payments { display: flex; gap: 10px; }
.footer__payments span {
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
