/* =====================================================
   КУСЬ — основные стили
   Цвета из Theme.ts:
   primary #FF6B6B · primaryDark #D32F2F
   secondary #4CAF50 · warning #FFD700
   bg #F9F9F9 · card #FFFFFF · border #EEEEEE
===================================================== */

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  color: #333333;
  background: #FFFFFF;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── HEADER ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #EEEEEE;
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #D32F2F;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-logo { color: #FF6B6B; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 24px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666666;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav a:hover { color: #D32F2F; background: #FFF0F0; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Lang toggle */
.lang-toggle, .footer-lang {
  display: flex;
  background: #F5F5F5;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #999999;
  padding: 5px 9px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: all .2s;
}
.lang-btn.active {
  background: #FFFFFF;
  color: #D32F2F;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* Small CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-sm {
  font-size: 0.85rem;
  padding: 9px 16px;
  background: linear-gradient(135deg, #FF6B6B, #D32F2F);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(211,47,47,.3);
}
.btn-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(211,47,47,.38); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── STORE BADGES ──────────────────────────────────── */
.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #111111;
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  min-width: 156px;
}
.badge-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.badge-btn svg { flex-shrink: 0; }
.badge-sub  { font-size: 0.65rem; font-weight: 500; opacity: .65; line-height: 1; margin-bottom: 2px; }
.badge-name { font-size: 1rem; font-weight: 800; line-height: 1; }

.badge-btn--light {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: none;
}
.badge-btn--light:hover { background: rgba(255,255,255,.28); box-shadow: none; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.badges--center { justify-content: center; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  padding: 72px 0 80px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(255,107,107,.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* Tag */
.tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8B6500;
  background: #FFF8E1;
  border: 1px solid #FFE082;
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

/* H1 */
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #1A1A1A;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF6B6B, #D32F2F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 34px;
}

/* Trust chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-chips span {
  font-size: 0.84rem;
  font-weight: 600;
  color: #666666;
  background: #F5F5F5;
  border: 1px solid #EEEEEE;
  padding: 7px 13px;
  border-radius: 99px;
}

/* ── PHONE MOCKUP ──────────────────────────────────── */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 270px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 18px;
  box-shadow: 0 40px 90px rgba(0,0,0,.32), 0 0 0 8px #0F0F1A;
  animation: float 3.6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone-pill {
  width: 80px; height: 24px;
  background: #0D0D1A;
  border-radius: 99px;
  margin: 0 auto 14px;
}

.phone-screen {
  background: #F9F9F9;
  border-radius: 26px;
  padding: 14px;
  overflow: hidden;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ps-title { font-size: 0.88rem; font-weight: 900; color: #1A1A1A; }
.ps-city  { font-size: 0.68rem; font-weight: 600; color: #666666; }

.ps-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  padding: 9px;
  margin-bottom: 7px;
  position: relative;
}
.ps-card--top {
  background: #FFF0F0;
  border-color: rgba(255,107,107,.25);
}
.ps-emoji { font-size: 1.6rem; flex-shrink: 0; }
.ps-info  { flex: 1; min-width: 0; }
.ps-label { font-size: 0.58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: #FF6B6B; margin-bottom: 2px; }
.ps-name  { font-size: 0.73rem; font-weight: 800; color: #1A1A1A; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-prices { display: flex; align-items: center; gap: 6px; }
.ps-prices s { font-size: 0.66rem; color: #999999; font-weight: 500; }
.ps-prices b { font-size: 0.8rem; font-weight: 900; color: #D32F2F; }

.ps-badge {
  background: #333333;
  color: #FFFFFF;
  font-size: 0.63rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 99px;
  flex-shrink: 0;
}
.ps-badge--red { background: linear-gradient(135deg, #FF6B6B, #D32F2F); }

.ps-book {
  margin-top: 10px;
  background: linear-gradient(135deg, #FF6B6B, #D32F2F);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}

/* Floating bubbles */
.phone-bubble {
  position: absolute;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
}
.phone-bubble > span { font-size: 1.5rem; flex-shrink: 0; }
.pb-label { font-size: 0.66rem; color: #999999; font-weight: 600; margin-bottom: 2px; }
.pb-val   { font-size: 0.9rem; font-weight: 900; color: #1A1A1A; }

.phone-bubble--a {
  top: 6%;
  right: -8%;
  animation: float 3.6s .5s ease-in-out infinite;
}
.phone-bubble--b {
  bottom: 12%;
  left: -10%;
  animation: float 3.6s 1s ease-in-out infinite;
}

/* ── STATS ─────────────────────────────────────────── */
.stats {
  background: #1A1A2E;
  padding: 52px 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,.45); font-weight: 600; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.1); }

/* ── SECTIONS ──────────────────────────────────────── */
.section { padding: 88px 0; }
.section-gray { background: #F9F9F9; }

.section-head {
  max-width: 600px;
  margin-bottom: 52px;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FF6B6B;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.7;
}

/* ── HOW IT WORKS ──────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }

/* colored top strip */
.step-card:nth-child(1)::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #FF6B6B, #D32F2F); }
.step-card:nth-child(2)::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #FFD700, #FFA000); }
.step-card:nth-child(3)::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #4CAF50, #2E7D32); }

.step-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.step-num {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(0,0,0,.04);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 1.1rem; font-weight: 800; color: #1A1A1A; margin-bottom: 10px; }
.step-card p  { font-size: 0.93rem; color: #666666; line-height: 1.7; }

/* ── BENEFITS ──────────────────────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ben-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.ben-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 34px rgba(0,0,0,.09);
  border-color: rgba(255,107,107,.2);
}
.ben-ico    { font-size: 2rem; margin-bottom: 14px; }
.ben-card h3 { font-size: 1rem; font-weight: 800; color: #1A1A1A; margin-bottom: 9px; }
.ben-card p  { font-size: 0.9rem; color: #666666; line-height: 1.7; }

/* ── CTA BAND ──────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #FF6B6B 0%, #D32F2F 100%); padding: 72px 0; }
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.cta-text p {
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  max-width: 480px;
  line-height: 1.65;
}
.cta-badges { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FAQ ───────────────────────────────────────────── */
.faq { max-width: 720px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-color: rgba(255,107,107,.25);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 800;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: #D32F2F; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #999999;
  flex-shrink: 0;
  transition: transform .28s, color .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: #FF6B6B; }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: #666666;
  line-height: 1.72;
}
.faq-item p a { color: #D32F2F; font-weight: 700; }
.faq-item p a:hover { text-decoration: underline; }

/* ── FINAL CTA ─────────────────────────────────────── */
.final { padding: 100px 0; background: #F9F9F9; text-align: center; }
.final-inner {}
.final-icon { font-size: 4rem; margin-bottom: 22px; }
.final h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.final p {
  font-size: 1.05rem;
  color: #666666;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: #1A1A2E; padding-top: 56px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,.4); margin-top: 10px; }

.footer-nav, .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-contacts a, .footer-contacts span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.48);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contacts a:hover { color: #FFFFFF; }

.footer-contacts-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.28);
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner > span {
  font-size: 0.83rem;
  color: rgba(255,255,255,.25);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 100%; }
  .hero-phone { justify-content: center; }
  .phone-bubble--a { right: 4%; }
  .phone-bubble--b { left: 4%; }
}

@media (max-width: 900px) {
  .steps    { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #FFFFFF;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    z-index: 99;
    margin: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 16px; font-size: 1rem; border-radius: 10px; }
  .header-actions .btn-sm { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { display: none; }

  /* Sections */
  .section { padding: 60px 0; }
  .steps    { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-badges { justify-content: center; }

  /* Stats */
  .stat-divider { width: 48px; height: 1px; }
  .stats-row { gap: 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav, .footer-contacts { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .footer-contacts-title { width: 100%; }

  /* Final */
  .final { padding: 72px 0; }
}

@media (max-width: 480px) {
  .badges { flex-direction: column; }
  .badge-btn { justify-content: center; min-width: unset; width: 100%; max-width: 260px; }
  .hero-chips { gap: 6px; }
  .hero-copy h1 { letter-spacing: -1px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
