/* =====================================================
   1. БАЗА / ГЛОБАЛЬНЫЕ НАСТРОЙКИ
   ===================================================== */

/* 1. Плавный скролл по якорям (если нужно по всей странице) */
html {
  scroll-behavior: smooth;
}

/* 2. Переменные */
:root {
  --ig1:#feda75;
  --ig2:#fa7e1e;
  --ig3:#d62976;
  --ig4:#962fbf;
  --ig5:#4f5bd5;
  --muted:#555;
}

/* =========================
   IG FACTORY — секция с видео (финал)
   ========================= */

.ig-factory-section {
  padding: 40px 16px 10px;
}

.ig-factory-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ig-factory-head {
  max-width: 640px;
  margin-bottom: 20px;
}

.if-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4f46e5;
  background: rgba(224, 231, 255, 0.8);
}

.ig-factory-head .section-title {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.if-subtitle {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

/* Layout: видео + шаги */
.ig-factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

/* Левая часть — видеосцена */
.ig-factory-visual--video {
  position: relative;
}

/* Плавный фон за видео-карточкой — больше НЕ вылезает за контейнер */
.if-video-backdrop {
  position: absolute;
  inset: 0;                     /* было: -18px -24px */
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.40), transparent 55%);
  filter: blur(20px);           /* чуть легче по перформансу */
  opacity: 0.9;
  z-index: 0;
}

/* Стеклянная карточка с видео */
.if-video-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(148, 163, 184, 0.4)
  );
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(15, 23, 42, 0.08);
  /* backdrop-filter тяжёлый, поэтому подстраховываемся */
}

@supports (backdrop-filter: blur(16px)) {
  .if-video-card {
    backdrop-filter: blur(16px);
  }
}

/* Мягкий hover без движения страницы */
@media (hover: hover) and (pointer: fine) {
  .if-video-card:hover {
    box-shadow:
      0 16px 32px rgba(15, 23, 42, 0.35),
      0 0 0 1px rgba(129, 140, 248, 0.5);
  }
}

/* Само видео */
.if-video {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Градиент поверх видео для мягкого перехода с фоном */
.if-video-overlay {
  position: absolute;
  inset: 4px;
  border-radius: 20px;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.18),
      transparent 30%,
      transparent 70%,
      rgba(15, 23, 42, 0.20)
    );
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* Правая часть — шаги */
.ig-factory-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.if-step {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(226, 232, 240, 1);
  box-shadow: 0 5px 10px rgba(15,23,42,0.04);
}

.if-step-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #eef2ff, #e0f2fe);
  color: #4f46e5;
}

.if-step-ico i[data-lucide] {
  width: 18px;
  height: 18px;
}

.if-step-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

.if-step-body p {
  font-size: 12px;
  line-height: 1.5;
  color: #4b5563;
}

.if-footnote {
  margin-top: 8px;
  font-size: 11px;
  color: #6b7280;
}

/* Адаптив */
@media (max-width: 768px) {
  .ig-factory-section {
    padding: 32px 12px 6px;
  }

  .ig-factory-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .ig-factory-visual--video {
    order: -1; /* видео выше шагов на мобиле */
  }

  .if-video-card {
    border-radius: 20px;
    padding: 3px;
  }

  .if-video {
    border-radius: 16px;
  }

  .if-video-overlay {
    inset: 3px;
    border-radius: 16px;
  }

  .if-step {
    padding: 9px 10px;
  }

  .if-step-body p {
    font-size: 11.5px;
  }
}



/* =========================
   SERVICES — финальный стиль
   ========================= */

/* Сетка секции услуг */
.services {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* Лёгкий фон (больше не "летает") */
.services::before {
    content: "";
    position: absolute;
    inset: -12px 0;
    z-index: -1;
   background: radial-gradient(circle at top left, rgb(129 140 248), #00000030 55%), radial-gradient(circle at bottom right, rgb(56 189 248 / 54%), #970eff47 55%);
    opacity: 0.8;
}

/* Планшет / десктоп */
@media (min-width: 640px) {
    .services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .services {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Карточка услуги */
.service-card {
    position: relative;
    padding: 18px 16px 16px;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(248, 250, 252, 0.9)
    );
    border: 1px solid rgba(226, 232, 240, 1);
    backdrop-filter: blur(10px);

    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    overflow: hidden;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

/* Ховер — минимальный подъём, без "улёта" */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.10);
        border-color: rgba(148, 163, 184, 0.6);
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 1),
            rgba(248, 250, 252, 0.96)
        );
    }
}

/* -------------------------
   3D-иконка + мягкий wiggle
   ------------------------- */

.service-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    border-radius: 999px;

    background: radial-gradient(circle at 30% 20%, #ffffff, #e5e7ff);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);

    color: #1d4ed8;
    margin-bottom: 10px;

    transform: translateY(0); /* базовое положение */
    transition: box-shadow 0.2s ease;
}

/* Размер lucide-иконок */
.service-card .icon svg,
.service-card .icon [data-lucide] {
    width: 22px;
    height: 22px;
}

/* Мягкий wiggle без поворотов (страница не "ездит") */
@keyframes icon-wiggle-soft {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-2px); }
    60%  { transform: translateY(-1px); }
    100% { transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .icon {
        animation: icon-wiggle-soft 0.32s ease-out;
        box-shadow: 0 8px 14px rgba(37, 99, 235, 0.30);
    }
}

/* -------------------------
   Заголовок, текст, кнопка
   ------------------------- */

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.service-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #4b5563;
    margin-bottom: 12px;
}

/* Кнопка "Заказать" */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;

    color: #f9fafb;
    background-image: linear-gradient(135deg, #4f46e5, #6366f1, #f97316);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
    border: none;

    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

/* Лёгкий блик по кнопке */
.service-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.8), transparent);
    opacity: 0;
    transform: translateX(-40px) skewX(-18deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-btn {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.35);
        filter: brightness(1.03);
    }
    .service-card:hover .service-btn::before {
        opacity: 1;
        transform: translateX(110px) skewX(-18deg);
    }
}

/* -------------------------
   Чипы преимуществ
   ------------------------- */

.chips.chips--footer {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;

    background: rgba(248, 250, 252, 0.96);
    color: #4b5563;
    border: 1px solid rgba(209, 213, 219, 0.9);
}

.chip--soft {
    background: rgba(129, 140, 248, 0.08);
    color: #4338ca;
    border-color: rgba(129, 140, 248, 0.5);
}

.chip i[data-lucide] {
    width: 13px;
    height: 13px;
}

/* -------------------------
   "Топ выбор" — рекомендованная карточка
   ------------------------- */

.service-card--featured {
    border-color: rgba(234, 179, 8, 0.9);
    box-shadow: 0 8px 18px rgba(234, 179, 8, 0.25);
}

.service-card--featured::after {
    content: "Топ выбор";
    position: absolute;
    top: 10px;
    right: -34px;
    padding: 11px 35px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;

    color: #111827;
    background: linear-gradient(135deg, #facc15, #f97316);
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.35);
    transform: rotate(38deg);
}

/* -------------------------
   Мобильная адаптация
   ------------------------- */

@media (max-width: 640px) {
    .services {
        margin-top: 24px;
        padding: 0 12px;
        gap: 12px;
    }

    .service-card {
        padding: 14px 13px 13px;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
    }

    .service-btn {
        font-size: 12px;
        padding: 6px 12px;
        box-shadow: 0 6px 12px rgba(79, 70, 229, 0.28);
    }

    .service-card--featured::after {
        top: 8px;
        right: -30px;
        padding: 11px 35px;
        font-size: 10px;
    }
}


/* =====================================================
   6. HOW-WORKS / STEPS (КАК РАБОТАЕТ ПЛАТФОРМА)
   ===================================================== */

.how-works:not(.inview) {
  opacity:0;
  transform:translateY(24px);
  transition:.6s ease;
}

.how-works.inview {
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion:reduce) {
  .how-works {
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* Общий фон секции */
.pro-section.plain {
  background:#fff;
  padding:70px 20px;
  text-align:center;
  position:relative;
}

/* Заголовок секции */
.section-title {
  font-size:36px;
  font-weight:900;
  color:#111;
  text-align:center;
  position:relative;
  line-height:1.25;
  margin-bottom:14px;
}

/* Градиентный текст заголовка */
.fancy-title {
  background: linear-gradient(90deg, #1217ab, #5d3199, #4f46e5);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Подсветка под заголовком */
.fancy-title::after {
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-8px;
  width:120px;
  height:10px;
  border-radius:999px;
  background:rgba(255,0,128,.15);
  filter:blur(8px);
}

/* Подзаголовок секции */
.section-sub {
  max-width:700px;
  margin:10px auto 30px;
  text-align:center;
  color:#555;
  font-size:16px;
  font-weight:500;
}

@media(max-width:600px) {
  .section-title { font-size:28px; }
  .fancy-title::after { width:90px; height:8px; }
}

/* Lottie-контейнер */
.lottie-box {
  width:300px;
  margin:0 auto 18px;
}
lottie-player {
  width:100%;
  height:100%;
}

/* Сетка шагов (4 шага) */
.steps-pro {
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  max-width:1040px;
  margin:26px auto 34px;
}

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

/* Одна карточка шага */
.step-pro {
  background:#fff;
  border-radius:16px;
  padding:18px 16px 16px;
  box-shadow:0 8px 28px rgba(16,24,40,.06), 0 0 0 1px rgba(16,24,40,.06);
  transition:transform .18s ease, box-shadow .22s ease;
  will-change:transform;
}

.step-pro:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(16,24,40,.10),0 0 0 1px rgba(16,24,40,.08);
}

.step-pro h4 {
  margin:8px 0 6px;
  font-size:16px;
  font-weight:800;
  color:#111;
}

.step-pro p {
  margin:0;
  color:#525252;
}

/* Иконка 3D (картинка или фолбэк иконкой) */
.icon-3d {
  width:64px;
  height:64px;
  margin:0 auto 12px;
  border-radius:16px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.18));
  animation:floatIcon 4.2s ease-in-out infinite;
  transition:transform .2s ease;
}

.icon-3d::after {
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:20px;
  background:radial-gradient(closest-side, rgba(214,41,118,.18), transparent 65%);
  animation:pulseAura 2.8s ease-in-out infinite;
  z-index:-1;
}

.step-pro:hover .icon-3d {
  transform:translateY(-2px);
}

/* Фолбэк-иконка, если 3D-картинка не загрузилась */
.icon-3d > i {
  display:none;
  width:28px;
  height:28px;
  margin:18px auto 0;
  color:#7c3aed;
}

.icon-3d[data-fallback="1"] {
  background:none;
  filter:none;
  border:1px dashed rgba(0,0,0,.08);
}

.icon-3d[data-fallback="1"] > i {
  display:block;
}

/* Ссылки на сами 3D-иконки */
.i1{ background-image:url("https://cdn3d.iconscout.com/3d/premium/thumb/user-verified-9665167-7876910.png"); }
.i2{ background-image:url("https://cdn3d.iconscout.com/3d/premium/thumb/link-7864304-6286378.png"); }
.i3{ background-image:url("https://cdn3d.iconscout.com/3d/premium/thumb/credit-card-9618222-7797976.png"); }
.i4{ background-image:url("https://cdn3d.iconscout.com/3d/premium/thumb/shield-security-9746827-7956763.png"); }

@keyframes floatIcon {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-5px); }
}
@keyframes pulseAura {
  0%,100% { opacity:.45; transform:scale(.96); }
  50%     { opacity:.75; transform:scale(1.04); }
}

/* SVG-рельса под шагами */
.steps-rail {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-6px;
  width:88%;
  height:120px;
  pointer-events:none;
  display:block;
}

.steps-rail .rail {
  fill:none;
  stroke:rgba(2,6,23,.10);
  stroke-width:4;
  stroke-linecap:round;
}

.steps-rail .dash {
  fill:none;
  stroke:#d62976;
  stroke-width:4;
  stroke-linecap:round;
  stroke-dasharray:12 12;
  stroke-dashoffset:240;
  animation:dashRun 4.8s linear infinite;
}

@keyframes dashRun { to { stroke-dashoffset:0; } }

@media (max-width:560px) {
  .steps-rail{ display:none; }
}

/* Блок с графиком роста */
.growth-box {
  max-width:480px;
  margin:18px auto 6px;
}

.chart-hint {
  font-size:13px;
  color:#6b7280;
  margin-top:6px;
}

/* AI-подсказки (текст с печатью) */
.ai-tips {
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top:12px;
  padding:12px 16px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 24px rgba(16,24,40,.06),0 0 0 1px rgba(16,24,40,.06);
}

.ai-avatar {
  font-size:20px;
}

.ai-text {
  font-weight:800;
  color:#1f2937;
  white-space:nowrap;
  overflow:hidden;
  border-right:2px solid #1f2937;
}

.typing {
  animation:caret 1.1s steps(1) infinite;
}

@keyframes caret {
  50% { border-color:transparent; }
}

/* Адаптив для AI-подсказок */
@media (max-width:640px) {
  .ai-tips {
    max-width:100%;
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .ai-text {
    white-space:normal;
    border-right:none;
  }
}

@media (max-width:480px) {
  .ai-tips {
    margin-top:10px;
    padding:10px 12px;
    border-radius:12px;
  }
  .ai-text {
    font-size:13px;
  }
}

/* =====================================================
   7. REVIEWS (ОТЗЫВЫ)
   ===================================================== */

/* =========================
   REVIEWS — Light Glass Style
   ========================= */

.reviews-section {
    padding: 32px 16px 0;
}

.reviews-section .section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 18px;
}

/* Сетка -->
------------------------ */
.reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* Карточка -->
------------------------ */
.review-card {
    position: relative;
    padding: 16px 16px 14px;
    border-radius: 18px;
    
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.28)
    );
    border: 1px solid rgba(148,163,184,0.35);
    backdrop-filter: blur(14px);

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.10),
        0 1px 2px rgba(0,0,0,0.05);

    color: #1f2937;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

/* Блик сверху */
.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.55),
        transparent 55%
    );
    opacity: .7;
    pointer-events: none;
}

.review-card > * { 
    position: relative; 
    z-index: 1; 
}

/* Hover-анимация */
@media (hover: hover) and (pointer: fine) {
    .review-card:hover {
        transform: translateY(-3px);
        box-shadow:
            0 20px 40px rgba(15,23,42,0.18),
            0 2px 4px rgba(0,0,0,0.07);
        border-color: rgba(129,140,248,0.4);
        background: linear-gradient(
            135deg,
            rgba(255,255,255,0.80),
            rgba(255,255,255,0.35)
        );
    }
}

/* Шапка отзыва --> */
.rc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Аватар */
.rc-head img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;

    box-shadow:
        0 0 0 2px rgba(255,255,255,0.8),
        0 0 0 3px rgba(15,23,42,0.15);
}

/* Имя/подпись */
.rc-head b {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    display: block;
}

.rc-head small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #0a6025
}

/* Щиток проверено */
.rc-head i[data-lucide="shield-check"] {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    color: #22c55e;
}

/* Звезды */
.stars {
    margin-left: auto;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;

    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Текст */
.review-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #374151;
    margin-bottom: 10px;
}

/* Footer */
.rc-foot {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.rc-foot time {
    font-variant-numeric: tabular-nums;
}

/* Мобильная адаптация -->
------------------------ */
@media (max-width: 640px) {
    .reviews-section {
        padding: 26px 12px 0;
    }

    .reviews-grid {
        gap: 12px;
    }

    .review-card {
        padding: 14px 12px 12px;
        border-radius: 16px;
    }

    .rc-head img {
        width: 36px;
        height: 36px;
    }

    .review-card p {
        font-size: 12px;
    }
}


/* =========================
   PAYMENT SECTION 
   ========================= */



.pay-bubble {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;          /* важное — режем логотип по кругу */
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.pay-bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;       /* логотип аккуратно впишется внутрь */
    display: block;
}


/* Обёртка секции */
.pay-section {
    padding: 32px 16px 0;
}

.pay-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Текстовая часть */
.pay-text {
    text-align: left;
    margin-bottom: 14px;
}

.pay-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.pay-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

/* Лента логотипов */
.pay-strip {
    margin-top: 10px;
    padding: 14px 16px 12px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,0.02),
        rgba(148,163,184,0.10)
    );
    border: 1px solid rgba(148,163,184,0.25);
    backdrop-filter: blur(14px);
}

/* Контейнер пузырей */
.pay-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Пузырь */
.pay-bubble {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
    opacity: 0.95;
}

.pay-bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

/* Hover-анимация на десктопе */
@media (hover: hover) and (pointer: fine) {
    .pay-bubble:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 14px 32px rgba(15,23,42,0.20);
        opacity: 1;
    }
}

/* Примечание под логотипами */
.pay-note {
    margin-top: 12px;
    font-size: 12px;
    color: #9ca3af;
}

/* Мобильная адаптация */
@media (max-width: 640px) {
    .pay-strip {
        padding: 12px 10px 10px;
    }

    .pay-bubbles {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        scroll-snap-type: x mandatory;
    }

    .pay-bubble {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
}





/* =====================================================
   9. FAQ (ВОПРОСЫ)
   ===================================================== */
<!-- ===== CSS для V2 ===== -->
 .section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.clean-title {
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.clean-sub {
  color: #6b7280;
  font-size: 15px;
}

.divider-gradient {
  width: 80px;
  height: 3px;
  margin: 10px auto 14px;
  background: linear-gradient(90deg, #d8d8d8, #3b82f6, #d8d8d8);
  border-radius: 10px;
  opacity: 0.6;
}

.faq-v2 {
  padding: 60px 20px;
}

.faq-v2 .section-title {
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #6b7280;
}
.clean-title {
  font-weight: 800 !important;
  letter-spacing: -1px;
}
.clean-sub {
  color: #6b7280;
  font-size: 15px;
}

.faq-types-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-type-card {
  background: radial-gradient(circle at top left, #e0e7ff, #f9fafb);
  border-radius: 24px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  position: relative;
  overflow: hidden;
  transform: translateY(0) translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.faq-type-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(129,140,248,0.35), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.faq-type-card:hover {
  transform: translateY(-6px) translateZ(12px);
  box-shadow: 0 28px 60px rgba(15,23,42,0.24);
}

.faq-type-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  z-index: 1;
}

.faq-type-emoji {
  font-size: 40px;
  filter: drop-shadow(0 10px 20px rgba(15,23,42,0.35));
}

.faq-type-header h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.faq-type-header p {
  font-size: 13px;
  color: #4b5563;
}

/* Аккордеон в карточках */
.faq-type-card .faq-accordion {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-type-card .faq-item {
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.35);
  overflow: hidden;
}

.faq-type-card .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.faq-type-card .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  font-size: 13px;
  color: #4b5563;
  transition: max-height 0.24s ease, padding-bottom 0.24s ease;
}

.faq-type-card .faq-item.active .faq-answer {
  max-height: 180px;
  padding-bottom: 10px;
}

.faq-type-card .faq-toggle-icon {
  margin-left: auto;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq-type-card .faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Адаптив */
@media (max-width: 900px) {
  .faq-types-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   10. ОБЩИЕ АНИМАЦИИ / РЕСПОНСИВ ДЛЯ СТАРОГО HERO (если остался)
   ===================================================== */

/* Анимация появления блоков (class="animate-up") */
.animate-up {
  opacity:0;
  transform:translateY(30px);
  animation:fadeUp .8s ease forwards;
}
.delay-1 { animation-delay:.2s; }
.delay-2 { animation-delay:.4s; }
.delay-3 { animation-delay:.6s; }
.delay-4 { animation-delay:.8s; }

@keyframes fadeUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-slide { transition:none; }
}

/* Ниже — адаптив для старого варианта hero-слайдера.
   Если его полностью убрал из верстки — эти стили можно удалить. */

@media (max-width:900px) {
  .hero-slide--split {
    grid-template-columns:1fr;
    gap:18px;
  }
  .split-media { max-width:300px; }
}

@media (max-width:780px) {
  .split-media {
    max-width:220px;
    border-radius:22px;
  }
}

@media (max-width:720px) {
  .hero-slider {
    padding:100px 14px 84px;
  }
  .slide-card {
    padding:14px 14px;
    border-radius:14px;
  }
  .hero-button {
    padding:12px 22px;
    font-size:15px;
  }
  .hero-slide-inner {
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
  }
  .hero-slide .slide-card { text-align:center; }
  .slide-photo {
    max-width:420px;
    margin:0 auto;
    border-radius:22px;
  }
  .slider-arrows {
    inset:auto 0 46px 0;
    padding:0 18px;
  }
}

@media (max-width:600px) {
  .slider-nav { bottom:14px; }
  .slider-progress { width:120px; }
}

@media (max-width:480px) {
  .split-media {
    max-width:180px;
    border-radius:18px;
  }
  .slider-arrow {
    width:32px;
    height:32px;
    opacity:.85;
  }
}
