/* ============================================
   SAZGER — components
   Карточки, кнопки, сетки, форма, меню
   ============================================ */

/* --- Стеклянные карточки --- */
.glass-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.mini-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.mini-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.65rem 0 0.5rem;
}

/* --- Секционные метки --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --- Акцентная линия --- */
.accent-line {
  height: 4px;
  width: 92px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg,
    var(--color-accent-2) 0%,
    var(--color-accent-1) 55%,
    var(--color-accent-3) 100%);
}

/* --- Списки с иконками --- */
.bullet-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.bullet-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
}

.bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(232, 176, 75, 0.22),
    rgba(0, 175, 202, 0.22));
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Крупные цифры (KPI) --- */
.kpi {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1;
  color: var(--color-text);
}

/* --- Двухколоночная сетка --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* --- Сетка иконок (2 колонки) --- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

/* --- Сетка CTA-кнопок --- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.cta-pill {
  padding: 1rem 0.75rem;
  text-align: center;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--color-glass-border);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  cursor: default;
}

.cta-pill:hover {
  border-color: #00AFCA;
  color: #00AFCA;
  transform: translateY(-2px);
}

/* --- Таблица (аудитория) --- */
.table-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.table-head,
.table-row {
  display: contents;
}

.cell {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
}

/* --- Таймлайн (дорожная карта) --- */
.timeline {
  display: grid;
  gap: 1rem;
  position: relative;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 82px 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.stage-badge {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-bg);
  background: linear-gradient(135deg,
    var(--color-accent-1),
    var(--color-accent-2));
}

.time-col {
  text-align: right;
  color: var(--color-accent-1);
  font-weight: 700;
}

/* --- Музыкальная волна --- */
.music-wave {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 72px;
  margin: 1.2rem auto 0;
  justify-content: center;
}

.music-wave span {
  width: 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg,
    var(--color-accent-1),
    var(--color-accent-2));
  animation: wave 1.3s ease-in-out infinite;
}

.music-wave span:nth-child(2) { animation-delay: 0.1s; }
.music-wave span:nth-child(3) { animation-delay: 0.2s; }
.music-wave span:nth-child(4) { animation-delay: 0.3s; }
.music-wave span:nth-child(5) { animation-delay: 0.4s; }
.music-wave span:nth-child(6) { animation-delay: 0.5s; }

/* --- Кнопки контактов --- */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 210px;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition-fast),
              background var(--transition-fast),
              box-shadow var(--transition-fast);
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.18);
}

.contact-btn.email {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  border: 1px solid var(--color-glass-border);
}

.contact-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

/* --- Форма обратной связи --- */
.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 100%;
  margin: 1.75rem auto 0;
  padding: 0;
  background: transparent;
  border: none;
}

.contact-form input,
/* --- Строка формы (два столбца) --- */


@media (max-width: 640px) {
  
}









.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-form button[type="submit"] {
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #00AFCA;
  color: #0d1117;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 175, 202, 0.30);
  background: #00c2e0;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-status.success { color: #25D366; }
.form-status.error   { color: #ef4444; }
.form-status.loading { color: var(--color-text-muted); }

/* --- Гамбург-меню (панель) --- */
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 8, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-panel.open {
  opacity: 1;
  pointer-events: all;
}

.menu-panel__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 1.5rem 2rem; /* сверху — под крестик */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  overflow-y: auto;
}

.menu-panel.open .menu-panel__inner {
  transform: translateX(0);
}

.menu-panel.open {
  opacity: 1;
  pointer-events: all;
}

.menu-panel__inner {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.menu-panel__list {
  display: grid;
  gap: 0.5rem;
}

.menu-panel__item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: auto;
  margin: 0 4.5rem 0 0; /* справа — запас под крестик */
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.menu-panel__item:hover {
  background: rgba(0, 175, 202, 0.08);
  border-left-color: #00AFCA;
  color: var(--color-text);
  padding-left: 1.5rem;
}

.menu-panel__item.active {
  background: rgba(0, 175, 202, 0.10);
  border-left-color: #00AFCA;
  color: #00AFCA;
}

.menu-panel__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.menu-panel__title {
  flex: 1;
}

.menu-panel__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}

.menu-panel__item.active {
  background: rgba(232, 176, 75, 0.12);
  border-color: rgba(232, 176, 75, 0.35);
  color: var(--color-accent-1);
}

.menu-panel__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 36, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3f4f6;
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-panel__close:hover {
  background: rgba(232, 176, 75, 0.25);
  border-color: rgba(232, 176, 75, 0.55);
  transform: scale(1.05);
}

.menu-panel__close svg {
  width: 20px;
  height: 20px;
}

.menu-panel__close:hover {
  background: rgba(232, 176, 75, 0.20);
  border-color: rgba(232, 176, 75, 0.50);
  transform: scale(1.05);
}

.menu-panel__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* --- Подсказка «Листайте колёсиком» --- */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

/* .scroll-hint.hidden — отключено, подсказка всегда видна */

.scroll-hint__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-text-muted);
  border-radius: var(--radius-pill);
  position: relative;
}

.scroll-hint__wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-accent-1);
  border-radius: var(--radius-pill);
  animation: wheel 1.6s ease-in-out infinite;
}

.scroll-hint__text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Свайп-подсказка на мобильных --- */
.swipe-hint {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

/* .swipe-hint.hidden — отключено, подсказка всегда видна */

.swipe-hint__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
  animation: swipe-mobile 1.8s ease-in-out infinite;
}

.swipe-hint__icon svg {
  width: 24px;
  height: 24px;
}

@keyframes swipe-mobile {
  0%, 100% { transform: translateX(-6px); }
  50%      { transform: translateX(6px); }
}

.swipe-hint__text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d1d5db;
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .two-col,
  .icon-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item {
    grid-template-columns: 70px 1fr;
  }

  .timeline-item .time-col {
    grid-column: 2;
    text-align: left !important;
    margin-top: 0.4rem;
  }

  .table-grid {
    grid-template-columns: 1fr;
  }

  .table-head,
  .table-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}



  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
    align-items: start;
  }

  .stage-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1rem;
  }
}
/* --- Логотип на первом слайде --- */
.hero-logo {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  display: block !important;
  margin: 0 auto 20px !important;
  overflow: hidden;
  animation: float 3.4s ease-in-out infinite;
}

.hero-logo img {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 640px) {
  .hero-logo {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    margin: 0 auto 20px !important;
  }

  .hero-logo img {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    padding: 6px;
  }
}


/* --- Hover для bullet-item --- */
.bullet-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  transition: background 0.2s ease, transform 0.2s ease;
}

/* --- Hover для cell --- */
.cell:hover {
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}


/* ============================================
   СЛАЙД 4 — карточки аудитории
   ============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.audience-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-3px);
}

.audience-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
  flex-shrink: 0;
}

.audience-card__icon svg {
  width: 28px;
  height: 28px;
}

.audience-card h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.audience-card p {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   ЕДИНЫЙ HOVER ДЛЯ ВСЕХ БЛОКОВ
   ============================================ */
.bullet-item,
.cell,
.timeline-item {
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.bullet-item:hover,
.cell:hover,
.timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-2px);
}

/* ============================================
   ИКОНКИ — бирюзовые, слева от текста
   ============================================ */
.bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 175, 202, 0.12);
  color: #00AFCA;
  flex-shrink: 0;
}

.bullet-icon svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   Адаптив: слайд 4
   ============================================ */
@media (max-width: 1100px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================
   СЛАЙД 10 — карточки "Почему мы"
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.why-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-3px);
}

.why-card__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.why-card__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
  flex-shrink: 0;
}

.why-card__icon svg {
  width: 18px;
  height: 18px;
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--color-text);
}

.why-card p {
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .menu-trigger__label { display: none; }
  .menu-trigger { right: 1rem; }
  .menu-panel__inner { width: 100%; }
}


/* --- Ограничение размера SVG в мини-карточках --- */
.mini-card svg {
  width: 32px;
  height: 32px;
}


/* ============================================
   СЛАЙД 3 — продукт (иконка слева)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-3px);
}

.product-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
}

.product-card__icon svg {
  width: 28px;
  height: 28px;
}

.product-card__body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--color-text);
}

.product-card__body p {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

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

/* ============================================
   СЛАЙД 8 — 9 карточек монетизации
   ============================================ */
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.money-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.money-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-3px);
}

.money-card__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.money-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
  flex-shrink: 0;
}

.money-card__icon svg {
  width: 26px;
  height: 26px;
}

.money-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--color-text);
}

.money-card p {
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .money-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .money-grid { grid-template-columns: 1fr; }
}

/* ============================================
   СЛАЙД 7 — stage-badge в бирюзовом стиле
   ============================================ */
.stage-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #00AFCA;
  background: rgba(0, 175, 202, 0.10);
  border: 1px solid rgba(0, 175, 202, 0.35);
  flex-shrink: 0;
}


/* ============================================
   ПОДСКАЗКИ — только одна в зависимости от устройства
   ============================================ */

/* ПК: только "Листайте колёсиком" */
@media (min-width: 641px) {
  .scroll-hint { display: flex; }
  .swipe-hint { display: none !important; }
}

/* Мобильные: только "Свайп" */
@media (max-width: 640px) {
  .scroll-hint { display: none !important; }
  .swipe-hint { display: flex !important; }
}


/* ============================================
   СЛАЙД 7 — карточки дорожной карты 3×2
   ============================================ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.roadmap-card {
  padding: 1.25rem 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roadmap-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.35);
  transform: translateY(-3px);
}

.roadmap-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.roadmap-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #00AFCA;
  background: rgba(0, 175, 202, 0.10);
  border: 1px solid rgba(0, 175, 202, 0.35);
}

.roadmap-card__time {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #E8B04B;
  white-space: nowrap;
}

.roadmap-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--color-text);
}

.roadmap-card p {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================
   СЛАЙД 3 — аккордеон
   ============================================ */
.accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem auto 0;
  max-width: 1000px;
  width: 100%;
}

.accordion-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
  height: fit-content;
  align-self: start;
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 175, 202, 0.30);
}

.accordion-item.open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 175, 202, 0.45);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-header__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AFCA;
  flex-shrink: 0;
}

.accordion-header__icon svg {
  width: 24px;
  height: 24px;
}

.accordion-header__title {
  flex: 1;
}

.accordion-header__toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.accordion-header__toggle svg {
  width: 18px;
  height: 18px;
}

.accordion-item.open .accordion-header__toggle {
  transform: rotate(180deg);
  color: #00AFCA;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body ul {
  display: grid;
  gap: 0.4rem;
  padding: 0 1.4rem 1.2rem 4.6rem;
  list-style: none;
  margin: 0;
}

.accordion-body li {
  position: relative;
  padding: 0.45rem 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.accordion-body li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00AFCA;
  transform: translateY(-50%);
}

.accordion-body li:hover {
  color: var(--color-text);
  padding-left: 4px;
}

@media (max-width: 640px) {
  .accordion-header {
    font-size: 0.98rem;
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  .accordion-body ul {
    padding: 0 1.1rem 1rem 3.4rem;
  }

  .accordion-body li {
    font-size: 0.9rem;
  }
}


/* Аккордеон — адаптив */
@media (max-width: 820px) {
  .accordion {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ФИКС: активный пункт меню — бирюзовый, без золота
   ============================================ */
.menu-panel__item.active {
  background: rgba(0, 175, 202, 0.10) !important;
  border-left-color: #00AFCA !important;
  color: #00AFCA !important;
  font-weight: 500 !important;
}


/* ============================================
   СЛАЙД 11 — карточка формы
   ============================================ */
.contact-card {
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 2.2rem 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.contact-card__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* Скрыть WhatsApp и email, если остались */
.contact-actions {
  display: none;
}


/* ============================================
   СЛАЙД 11 — форма (чистые стили)
   ============================================ */
.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 100%;
  margin: 1.75rem auto 0;
  padding: 0;
  background: transparent;
  border: none;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:hover,
.contact-form select:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #00AFCA;
  background: rgba(0, 175, 202, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 175, 202, 0.15);
}

/* Select — стрелка + тёмная тема */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300AFCA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px;
  padding-right: 3rem;
  cursor: pointer;
  color-scheme: dark;
}

.contact-form select option {
  background: #161b22;
  color: #f3f4f6;
}

/* Строка с двумя полями */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Кнопка */
.contact-form button[type="submit"] {
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #00AFCA;
  color: #0d1117;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 175, 202, 0.30);
  background: #00c2e0;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-status.success { color: #25D366; }
.form-status.error   { color: #ef4444; }
.form-status.loading { color: #9ca3af; }

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   СЛАЙД 9 — финансы (4 карточки 2×2)
   ============================================ */




.finance-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 175, 202, 0.30);
  transform: translateY(-2px);
}






























@media (max-width: 820px) {
  
}


/* ============================================
   СЛАЙД 9 — финансы (полная пересборка)
   ============================================ */




.finance-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 175, 202, 0.30);
  transform: translateY(-2px);
}





























.finance-red { color: #ef4444; font-weight: 600; white-space: nowrap; }
.finance-green { color: #25D366; font-weight: 600; white-space: nowrap; }

/* Прогноз окупаемости — 3 колонки */








/* Рынок — 4 колонки */












@media (max-width: 820px) {
  
  
  
}

@media (max-width: 420px) {
  
}


/* Прогноз окупаемости — доп. строки */







/* ============================================
   СЛАЙД 9 — финансы (3 блока)
   ============================================ */
.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.fin-card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-glass-border);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.fin-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 175, 202, 0.30);
}

.fin-card--full {
  grid-column: 1 / -1;
}

.fin-card__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.fin-card__icon {
  width: 24px;
  height: 24px;
  color: #00AFCA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fin-card__icon svg {
  width: 20px;
  height: 20px;
}

.fin-card__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
}

.fin-card__kpi {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #00AFCA;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.fin-card__sub {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.fin-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fin-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.4;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fin-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fin-list li span:last-child {
  color: #f3f4f6;
  font-weight: 600;
  white-space: nowrap;
}

.fin-list--compact li {
  font-size: 0.88rem;
  padding-bottom: 0.35rem;
}

/* Окупаемость */
.fin-forecast {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fin-forecast li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fin-forecast__period {
  font-size: 0.85rem;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.fin-forecast__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.fin-card__note {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
}

.finance-red { color: #ef4444; white-space: nowrap; }
.finance-green { color: #25D366; white-space: nowrap; }

/* Нижний блок: выручка + рынок */
.fin-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.fin-bottom__col {
  display: flex;
  flex-direction: column;
}

.fin-bottom__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.fin-market {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.fin-market__item {
  padding: 0.7rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.fin-market__year {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.fin-market__value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: #f3f4f6;
  line-height: 1.2;
}

@media (max-width: 820px) {
  .fin-grid { grid-template-columns: 1fr; }
  .fin-bottom { grid-template-columns: 1fr; }
  .fin-market { grid-template-columns: repeat(2, 1fr); }
}


/* Рынок внутри блока окупаемости */
.fin-market-head {
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fin-market--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Прогноз выручки — горизонтальные карточки */
.fin-revenue {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.fin-revenue__item {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.fin-revenue__source {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.fin-revenue__amount {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: #00AFCA;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  display: block;
}

@media (max-width: 820px) {
  .fin-revenue { grid-template-columns: repeat(2, 1fr); }
  .fin-market--2x2 { grid-template-columns: 1fr 1fr; }
}


/* Плашка "удалёнка" */
.fin-card__remote {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 175, 202, 0.10);
  border: 1px solid rgba(0, 175, 202, 0.30);
  font-size: 0.75rem;
  color: #00AFCA;
  letter-spacing: 0.02em;
}

/* ============================================
   ФИКС: прогноз выручки — выравнивание годов
   ============================================ */
.fin-revenue__years {
  display: grid;
  gap: 0.4rem;
  max-width: 240px;
  margin: 0 auto;
}

.fin-revenue__years > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.85rem;
}

.fin-revenue__year {
  color: #9ca3af;
  font-size: 0.8rem;
  white-space: nowrap;
  text-align: left;
}

.fin-revenue__amount {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: #00AFCA;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}


/* ============================================
   СЛАЙД 9 — мобильная компактная версия
   ============================================ */
@media (max-width: 640px) {

  .fin-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 0.8rem;
  }

  .fin-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
  }

  .fin-card__head {
    margin-bottom: 0.6rem;
    gap: 0.5rem;
  }

  .fin-card__icon {
    width: 20px;
    height: 20px;
  }

  .fin-card__icon svg {
    width: 16px;
    height: 16px;
  }

  .fin-card__label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .fin-card__kpi {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }

  .fin-card__sub {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }

  .fin-card__remote {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.7rem;
  }

  .fin-list {
    gap: 0.35rem;
  }

  .fin-list li {
    font-size: 0.82rem;
    padding-bottom: 0.3rem;
  }

  .fin-forecast {
    gap: 0.4rem;
  }

  .fin-forecast li {
    padding: 0.5rem 0.7rem;
  }

  .fin-forecast__period {
    font-size: 0.8rem;
  }

  .fin-forecast__value {
    font-size: 0.9rem;
  }

  .fin-card__note {
    font-size: 0.78rem;
    margin-top: 0.7rem;
    padding-top: 0.6rem;
  }

  .fin-market-head {
    margin-top: 0.9rem;
    margin-bottom: 0.5rem;
    padding-top: 0.7rem;
  }

  .fin-market {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .fin-market__item {
    padding: 0.5rem 0.6rem;
  }

  .fin-market__year {
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
  }

  .fin-market__value {
    font-size: 0.82rem;
  }

  .fin-revenue {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .fin-revenue__item {
    padding: 0.7rem 0.8rem;
  }

  .fin-revenue__source {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
  }

  .fin-revenue__years {
    max-width: 100%;
    gap: 0.3rem;
  }

  .fin-revenue__years > div {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    font-size: 0.78rem;
  }

  .fin-revenue__year {
    font-size: 0.72rem;
  }

  .fin-revenue__amount {
    font-size: 0.82rem;
  }
}

/* Очень узкие экраны — слайд 9 */
@media (max-width: 420px) {
  .fin-revenue {
    grid-template-columns: 1fr;
  }

  .fin-market {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   МОБИЛЬНЫЕ: скрыть подсказку "мышь"
   ============================================ */
@media (max-width: 640px) {
  .scroll-hint {
    display: none !important;
  }
}


/* ============================================
   МОБИЛЬНЫЕ: сжатие карточек по вертикали
   ============================================ */
@media (max-width: 640px) {
  .bullet-list,
  .icon-grid,
  .audience-grid,
  .why-grid,
  .money-grid,
  .roadmap-grid,
  .product-grid,
  .fin-grid {
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .mini-card,
  .product-card,
  .money-card,
  .audience-card,
  .why-card,
  .roadmap-card {
    padding: 0.85rem 0.95rem;
  }

  .bullet-item {
    padding: 0.7rem 0.85rem;
  }

  .timeline-item {
    padding: 0.75rem 0.85rem;
  }
}


/* ============================================
   ФОРМА — ошибки и уведомления
   ============================================ */
.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.contact-form input.input-error,
.contact-form select.input-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.form-error {
  display: none;
  font-size: 0.72rem;
  color: #ef4444;
  margin-top: 0.3rem;
  line-height: 1.3;
}

.form-error.visible {
  display: block;
}

/* Уведомление внизу */
.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.visible {
  opacity: 1;
}

.form-status.success {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.30);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.30);
}

.form-status.loading {
  background: rgba(0, 175, 202, 0.10);
  color: #00AFCA;
  border: 1px solid rgba(0, 175, 202, 0.30);
}
