/* ================================================================
   ЧЕКБОКС СОГЛАСИЯ
   ================================================================ */

.cs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px 4px;
    margin: 4px 0 8px;
    font-family: inherit;
    position: relative;
}

.cs-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ── КАСТОМНЫЙ ЧЕКБОКС ── */
.cs-checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    margin-top: 1px;
}

.cs-checkbox-label input[type="checkbox"]:checked + .cs-checkbox-custom {
    background: linear-gradient(135deg, #FFB830, #FF8C00);
    border-color: #FFB830;
    box-shadow: 0 0 20px rgba(255, 184, 48, 0.15);
}

.cs-checkbox-label input[type="checkbox"]:checked + .cs-checkbox-custom::after {
    content: "✓";
    color: #08040C;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

/* ── ТЕКСТ ── */
.cs-checkbox-text {
    font-size: 12px;
    color: rgba(212, 200, 232, 0.5);
    line-height: 1.5;
    user-select: none;
}

.cs-checkbox-text a {
    color: #FFB830;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cs-checkbox-text a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ── АКТИВАЦИЯ КНОПКИ ── */
.cs-checkbox-label input[type="checkbox"]:checked ~ .cs-checkbox-text {
    color: rgba(212, 200, 232, 0.7);
}

/* ── ОШИБКА (если не отмечено) ── */
.cs-checkbox-label.error .cs-checkbox-custom {
    border-color: #FF3B3B;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.15);
}

.cs-checkbox-label.error .cs-checkbox-text {
    color: #FF3B3B;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 600px) {
    .cs-checkbox-text {
        font-size: 11px;
    }
    .cs-checkbox-custom {
        width: 20px;
        height: 20px;
    }
}












/* ================================================================
   ЗАВИСИМЫЙ ЧЕКБОКС С ПОДСКАЗКОЙ ПРИ НАВЕДЕНИИ
   ================================================================ */

.cfg-dependent {
  position: relative;
  cursor: not-allowed;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.cfg-dependent.active {
  cursor: pointer;
  opacity: 1;
}

.cfg-dependent.active .cfg-tooltip {
  display: none;
}

/* ── ПОДСКАЗКА ── */
.cfg-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 4, 12, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 184, 48, 0.15);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold, #FFB830);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 100;
  pointer-events: none;
  font-family: var(--f-body, 'Montserrat', sans-serif);
}

.cfg-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255, 184, 48, 0.15);
}

.cfg-dependent:not(.active):hover .cfg-tooltip {
  display: block;
  animation: tooltipFade 0.25s ease;
}

@keyframes tooltipFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── АДАПТИВ ДЛЯ МОБИЛОК (тап вместо ховера) ── */
@media (max-width: 768px) {
  .cfg-tooltip {
    white-space: normal;
    max-width: 280px;
    text-align: center;
    font-size: 10px;
    padding: 6px 12px;
    bottom: calc(100% + 8px);
  }
}

/* ── СТИЛЬ ДЛЯ ЗАБЛОКИРОВАННОГО ЧЕКБОКСА ── */
.cfg-dependent input:disabled ~ .cfg-box {
  opacity: 0.4;
  border-color: rgba(255, 255, 255, 0.08);
}

.cfg-dependent.active input:disabled ~ .cfg-box {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18);
}

.cfg-dependent input:disabled ~ .cfg-label {
  opacity: 0.6;
}

.cfg-dependent.active input:disabled ~ .cfg-label {
  opacity: 1;
}






/* ================================================================
   ПОДСВЕТКА ПРИ ПРОКРУТКЕ К САЙТУ
   ================================================================ */

.cfg-item.highlight-pulse {
  animation: highlightPulse 1.2s ease 3;
  border-color: var(--gold, #FFB830) !important;
  background: rgba(255, 184, 48, 0.08) !important;
  box-shadow: 0 0 30px rgba(255, 184, 48, 0.15) !important;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 184, 48, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 184, 48, 0.3);
    transform: scale(1.02);
  }
}

/* ── АДАПТИВ ДЛЯ МОБИЛОК ── */
@media (max-width: 600px) {
  .cfg-item.highlight-pulse {
    animation: highlightPulseMobile 1s ease 3;
  }

  @keyframes highlightPulseMobile {
    0%, 100% {
      box-shadow: 0 0 20px rgba(255, 184, 48, 0.15);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 40px rgba(255, 184, 48, 0.25);
      transform: scale(1.03);
    }
  }
}








/* ================================================================
   АВАТАРЫ С ИНИЦИАЛАМИ
   ================================================================ */

.avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.08);
  user-select: none;
  transition: transform 0.25s, border-color 0.25s;
}

.avatar-initials:hover {
  transform: scale(1.05);
  border-color: rgba(255, 184, 48, 0.3);
}

/* ── ЦВЕТА ── */
.avatar-initials.gold { background: #FFB830; color: #08040C; }
.avatar-initials.purple { background: #A855F7; color: #fff; }
.avatar-initials.green { background: #00E68A; color: #08040C; }
.avatar-initials.orange { background: #FF8C00; color: #fff; }
.avatar-initials.blue { background: #3B82F6; color: #fff; }
.avatar-initials.pink { background: #EC4899; color: #fff; }
.avatar-initials.amber { background: #F59E0B; color: #08040C; }
.avatar-initials.red { background: #EF4444; color: #fff; }

/* ── РАЗМЕРЫ ── */
.avatar-initials.sm { width: 36px; height: 36px; font-size: 14px; }
.avatar-initials.md { width: 52px; height: 52px; font-size: 20px; }
.avatar-initials.lg { width: 72px; height: 72px; font-size: 28px; }
.avatar-initials.xl { width: 96px; height: 96px; font-size: 38px; }








/* ================================================================
   БЕЙДЖ ПАКЕТА НА АВАТАРЕ
   ================================================================ */

.avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.avatar-wrapper .avatar-initials {
  width: 100%;
  height: 100%;
}

/* ── ИНДИКАТОР ПАКЕТА (маленький кружок внизу справа) ── */
.avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid var(--dark, #08040C);
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08040C;
  background: var(--gold);
}

/* ── ЦВЕТА ДЛЯ РАЗНЫХ ПАКЕТОВ ── */
.avatar-badge.base { background: #6B7280; color: #fff; }      /* Серый */
.avatar-badge.standard { background: #3B82F6; color: #fff; }  /* Синий */
.avatar-badge.premium { background: #FFB830; color: #08040C; } /* Золотой */
.avatar-badge.full { background: #A855F7; color: #fff; }      /* Фиолетовый */

/* ── ИКОНКИ ВМЕСТО БУКВ (опционально) ── */
.avatar-badge .icon { font-size: 7px; }













/* ================================================================
   ПОЛОСКА ЗАГРУЗКИ (РАБОТАЕТ С ЦИФРАМИ)
   ================================================================ */

.process-wrapper {
    position: relative;
    max-width: var(--container-narrow, 600px);
    margin: 0 auto;
    padding: 10px 0;
}

/* ── КОНТЕЙНЕР ЛИНИИ ── */
.process-line {
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: rgba(255, 184, 48, 0.06);
    z-index: 0;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ── КОГДА ЛИНИЯ ВИДНА ── */
.process-line.visible {
    opacity: 1;
}

/* ── ЗОЛОТАЯ ЗАЛИВКА (ПОЛОСКА) ── */
.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #FFB830, rgba(255, 184, 48, 0.15));
    border-radius: 2px;
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 20px rgba(255, 184, 48, 0.05);
}

.process-line.filled::after {
    height: 100%;
}

/* ===== ДЕСКТОП (горизонтальная полоска) ===== */
@media (min-width: 1024px) {
    .process-line {
        position: absolute;
        left: 5%;
        right: 5%;
        top: 28px;
        bottom: auto;
        width: auto;
        height: 3px;
        background: rgba(255, 184, 48, 0.06);
    }

    .process-line::after {
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, #FFB830, rgba(255, 184, 48, 0.15));
        transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .process-line.filled::after {
        width: 100%;
        height: 100%;
    }
}

/* ===== МОБИЛКИ И ПЛАНШЕТЫ ===== */
@media (max-width: 1023px) {
    .process-line {
        left: 20px;
        top: 24px;
        bottom: 24px;
    }
}

.process-list {
    position: relative;
    display: flex;
    flex-direction: column;
    *gap: 26px;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

/* ── ЛИНИЯ (ПСЕВДОЭЛЕМЕНТ) ── */
.process-list::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 184, 48, 0.06));
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    border-radius: 2px;
}

/* ── КОГДА ЛИНИЯ ВИДНА ── */
.process-list.animated::before {
    opacity: 1;
    transform: scaleY(1);
}

/* ===== ДЕСКТОП (горизонтальная) ===== */
@media (min-width: 1024px) {
    .process-list {
        flex-direction: row;
        justify-content: space-between;
        *gap: 18px;
        align-items: flex-start;
        max-width: none;
        padding-top: 10px;
    }

    .process-list::before {
        left: 5%;
        right: 5%;
        top: 72px;
        bottom: auto;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), rgba(255, 184, 48, 0.06));
        transform: scaleX(0);
        transform-origin: left center;
    }

    .process-list.animated::before {
        transform: scaleX(1);
    }
}




/* ================================================================
   КАРТОЧКИ ОТЗЫВОВ (ИСПРАВЛЕННЫЕ)
   ================================================================ */

/* ================================================================
   РАЗМЫТЫЕ КРАЯ У КОНТЕЙНЕРА С КАРТОЧКАМИ
   ================================================================ */

.reviews-scroll-horizontal {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 4px 16px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  margin: 8px 0 4px;

  /* ===== РАЗМЫТЫЕ КРАЯ ===== */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}

/* ── СКРОЛЛБАР ── */
.reviews-scroll-horizontal::-webkit-scrollbar {
  height: 4px;
}

.reviews-scroll-horizontal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.reviews-scroll-horizontal::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.reviews-scroll-horizontal::-webkit-scrollbar {
  height: 4px;
}

.reviews-scroll-horizontal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.reviews-scroll-horizontal::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ── КАРТОЧКА ── */
.review-card-big {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(20, 16, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
  height: 300px;
}

.review-card-big::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.08), rgba(255, 184, 48, 0.01), rgba(255, 184, 48, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.review-card-big:hover {
  transform: translateY(-4px);
}

/* ── ШАПКА ── */
.review-card-big__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-card-big__avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.review-card-big__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 184, 48, 0.12);
}

.review-card-big__info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-card-big__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.review-card-big__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 12px;
  border-radius: 99px;
  background: rgba(255, 184, 48, 0.12);
  border: 1px solid rgba(255, 184, 48, 0.08);
  color: var(--gold);
  margin-top: 2px;
  max-width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── ЗВЁЗДЫ ── */
.review-card-big__stars {
  display: flex;
  gap: 3px;
  margin-top: 3px;
  margin-left: 7px;
}

.review-card-big__stars i {
  color: #FFB830;
  font-size: 11px;
}

/* ── ТЕКСТ ── */
.review-card-big__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(212, 200, 232, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-bottom: 12px;
  margin-top: 5px;
}

/* ── ФУТЕР ── */
.review-card-big__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.review-card-big__source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.review-card-big__more {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  opacity: 0.7;
}

.review-card-big__more:hover {
  opacity: 1;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 1024px) {
  .review-card-big {
    min-width: 260px;
    max-width: 290px;
    min-height: 230px;
    padding: 18px 18px 14px;
  }
}

@media (max-width: 600px) {
  .review-card-big {
    min-width: 240px;
    max-width: 270px;
    min-height: 200px;
    padding: 16px 16px 14px;
  }

  .review-card-big__avatar {
    width: 44px;
    height: 44px;
  }

  .review-card-big__name {
    font-size: 14px;
  }

  .review-card-big__badge {
    font-size: 7px;
        padding: 1px 7px;
        margin-left: 4px;
  }

  .review-card-big__stars i {
    font-size: 10px;
  }

  .review-card-big__text {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  .review-card-big__footer {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .review-card-big {
    *min-width: 200px;
    *max-width: 220px;
    min-height: 180px;
    padding: 14px 14px 12px;
  }

  .review-card-big__avatar {
    width: 38px;
    height: 38px;
  }

  .review-card-big__name {
    font-size: 13px;
            margin-left: 6px;
  }

  .review-card-big__text {
    font-size: 11px;
    -webkit-line-clamp: 3;
  }

  .review-card-big__footer {
    font-size: 9px;
  }
}
















/* ===== ШАГИ ===== */
.proc-step {
    position: relative;
    z-index: 1;
    padding-left: 60px;
    padding-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.proc-step:last-child {
    padding-bottom: 0;
}

.proc-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Цифра ── */
.proc-step .pnum {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display, 'Oswald', sans-serif);
    font-size: 18px;
    font-weight: 700;
    background: var(--dark);
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 6px rgba(255, 184, 48, 0.05), 0 0 22px rgba(255, 184, 48, 0.1);
    z-index: 5;
    transform: scale(0.6);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s ease,
                border-color 0.6s ease;
}

.proc-step.visible .pnum {
    transform: scale(1);
}

.proc-step:last-child.visible .pnum {
    box-shadow: 0 0 0 8px rgba(255, 184, 48, 0.08), 0 0 40px rgba(255, 184, 48, 0.2);
    animation: finalPulse 2s ease-in-out infinite 1s;
}

@keyframes finalPulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(255, 184, 48, 0.08), 0 0 40px rgba(255, 184, 48, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(255, 184, 48, 0.05), 0 0 60px rgba(255, 184, 48, 0.3);
        transform: scale(1.05);
    }
}

/* ── Текст ── */
.proc-step .pbody {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.proc-step.visible .pbody {
    opacity: 1;
    transform: translateX(0);
}

.proc-step .pbody .ptitle {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.proc-step .pbody .pdesc {
    font-size: 13px;
    color: var(--text-dim, rgba(212, 200, 232, 0.6));
    line-height: 1.6;
}

.proc-step:last-child .pbody.pfinal {
    border: 1px solid rgba(0, 230, 138, 0.2);
    background: rgba(0, 230, 138, 0.04);
    border-radius: 12px;
    padding: 14px 18px;
}

.proc-step:last-child .pbody .ptitle.pfinal {
    color: var(--green, #00E68A);
}

/* ================================================================
   ДЕСКТОП (горизонтальная линия)
   ================================================================ */
@media (min-width: 1024px) {
    .process-wrapper {
        max-width: none;
        padding-top: 10px;
    }

    .process-list {
        display: flex;
        justify-content: space-between;
        *gap: 18px;
        position: relative;
        padding-top: 50px;
    }

    /* ── Единая линия — горизонтальная ── */
    .process-line {
        position: absolute;
        left: 5%;
        right: 5%;
        top: 82px;
        bottom: auto;
        width: auto;
        height: 3px;
        background: rgba(255, 184, 48, 0.06);
        display: none;
    }

    .process-line-fill {
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, var(--gold), rgba(255, 184, 48, 0.15));
        transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .process-line-head {
        top: 50% !important;
        left: 0;
        transform: translate(-50%, -50%);
        transition: left 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        width: 18px;
        height: 18px;
        display: none;
    }

    .process-line-head.show {
        left: 100% !important;
    }

    .process-line-head.final {
        left: 100% !important;
        animation: headFinalPulseDesktop 2s ease-in-out infinite;
    }

    @keyframes headFinalPulseDesktop {
        0%, 100% {
            box-shadow: 0 0 30px rgba(255, 184, 48, 0.5), 0 0 80px rgba(255, 184, 48, 0.15);
            transform: translate(-50%, -50%) scale(1);
        }
        50% {
            box-shadow: 0 0 50px rgba(255, 184, 48, 0.8), 0 0 120px rgba(255, 184, 48, 0.2);
            transform: translate(-50%, -50%) scale(1.2);
        }
    }

    .process-line-fade {
        right: -2px;
        left: auto;
        top: 0;
        bottom: auto;
        width: 40px;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 184, 48, 0.2), transparent);
    }

    /* ── Шаги на десктопе ── */
    .proc-step {
        flex: 1;
        padding-left: 0;
        padding-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .proc-step .pnum {
        position: relative;
        margin-bottom: 16px;
        flex-shrink: 0;
        top: auto;
        left: auto;
    }

    .proc-step .pbody {
        text-align: center;
        transform: translateY(-10px);
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
                    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
    }

    .proc-step.visible .pbody {
        opacity: 1;
        transform: translateY(0);
    }

    .proc-step .pbody .pdesc {
        font-size: 12px;
    }

    .proc-step:last-child .pbody.pfinal {
        width: 100%;
    }
}

/* ================================================================
   МОБИЛЬНАЯ КОРРЕКЦИЯ
   ================================================================ */
@media (max-width: 600px) {
    .proc-step {
        padding-left: 56px;
        padding-bottom: 24px;
    }

    .proc-step .pnum {
        width: 40px;
        height: 40px;
        font-size: 15px;
        top: 2px;
    }

    .proc-step .pbody .ptitle {
        font-size: 14px;
    }

    .proc-step .pbody .pdesc {
        font-size: 12px;
    }

    .process-line {
        left: 20px;
        top: 24px;
        bottom: 24px;
    }

    .process-line-head {
        width: 14px;
        height: 14px;
    }
}

/* ================================================================
   КОНФЕТТИ (исправленные)
   ================================================================ */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -20px;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

.confetti-piece .confetti-inner {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    animation: confettiRotate linear infinite;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(110vh) rotate(720deg);
    }
}

@keyframes confettiRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.confetti-piece.circle .confetti-inner {
    border-radius: 50%;
}

.confetti-piece.rectangle .confetti-inner {
    border-radius: 2px;
    width: 8px;
    height: 14px;
}

.confetti-piece.triangle .confetti-inner {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid currentColor;
    background: transparent !important;
}

.confetti-piece.star .confetti-inner {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
    background: currentColor !important;
}

@media (max-width: 600px) {
    .confetti-piece {
        width: 6px;
        height: 6px;
    }
    .confetti-piece.rectangle .confetti-inner {
        width: 5px;
        height: 10px;
    }
    .confetti-piece.triangle .confetti-inner {
        border-left-width: 5px;
        border-right-width: 5px;
        border-bottom-width: 10px;
    }
}




*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== ЦВЕТ ВЫДЕЛЕНИЯ ТЕКСТА (ЗОЛОТОЙ) ===== */
::selection {
    background: #FFB830;
    color: #08040C;
}

::-moz-selection {
    background: #FFB830;
    color: #08040C;
}

html,
body,
div,
section,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
button,
li {
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

:root {
  --gold: #FFB830;
  --gold2: #FF8C00;
  --red: #FF3B3B;
  --purple: #A855F7;
  --green: #00E68A;
  --dark: #08040C;
  --dark2: #0C0813;
  --card: #141020;
  --text: #D4C8E8;
  --text-dim: rgba(212, 200, 232, 0.6);
  --white: #fff;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(255, 184, 48, 0.22);
  --f-body: 'Montserrat', sans-serif;
  --f-display: 'Oswald', sans-serif;
  --gap-3xs: 4px;
  --gap-2xs: 8px;
  --gap-xs: 12px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --container-px: 22px;
  --section-py: 52px;
  --head-gap: 34px;
  --container-max: 1180px;
  --container-narrow: 600px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 30px;
  --shadow-card: 0 10px 32px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 0 30px rgba(255, 184, 48, 0.18);
}

@media (min-width: 1024px) {
  :root {
    --container-px: 48px;
    --section-py: 88px;
    --head-gap: 46px;
  }
}

body {
  
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 184, 48, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(0, 230, 138, 0.04) 0%, transparent 40%), #08040C;
  color: var(--white);
  font-family: var(--f-body);
  *overflow-x: hidden;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom, 0px); 
  position: relative;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold), var(--gold2));
  border-radius: 999px;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  right: 2px;
  width: 4px;
  *height: 100vh;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(255, 184, 48, 0.9), transparent);
  box-shadow: 0 0 12px rgba(255, 184, 48, 0.7), 0 0 28px rgba(255, 184, 48, 0.3);
  opacity: 0.35;
  z-index: 999999;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background-image: url(/asfalt-light.png);
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.accent {
  color: var(--gold);
}

.accent2 {
  color: var(--red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ag-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.ag1 {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.40), transparent 70%);
  opacity: 0.30;
  animation: driftA 50s ease-in-out infinite;
}

.ag2 {
  width: 560px;
  height: 560px;
  top: 28%;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.30), transparent 70%);
  opacity: 0.26;
  animation: driftB 62s ease-in-out infinite;
}

.ag3 {
  width: 520px;
  height: 520px;
  bottom: -200px;
  left: 18%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.26), transparent 70%);
  opacity: 0.22;
  animation: driftC 68s ease-in-out infinite;
}

.ag4 {
  width: 380px;
  height: 380px;
  top: 60%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.22), transparent 70%);
  opacity: 0.18;
  animation: driftA 40s ease-in-out infinite reverse;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(70px, 90px) scale(1.12);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-80px, 60px) scale(0.9);
  }
}

@keyframes driftC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -70px) scale(1.08);
  }
}

.ember {
  position: absolute;
  bottom: -30px;
  left: var(--x, 50%);
  width: var(--s, 4px);
  height: var(--s, 4px);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px 2px rgba(255, 184, 48, 0.65);
  opacity: 0;
  animation: emberRise var(--dur, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes emberRise {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  6% {
    opacity: 0.85;
  }
  55% {
    transform: translate(var(--dx, 18px), -58vh);
    opacity: 0.45;
  }
  100% {
    transform: translate(calc(var(--dx, 18px) * -1), -112vh);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ember,
  .ag-blob,
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.ambient-divider {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: visible;
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.ambient-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 48, 0.75), transparent);
  box-shadow: 0 0 18px rgba(255, 184, 48, 0.45), 0 0 40px rgba(255, 184, 48, 0.18);
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) var(--container-px);
}

.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
}

.wrap-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: var(--head-gap);
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.sec-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-sub {
  font-size: 15px;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 10px;
  right: 10px;
  z-index: 600;
  padding-top: max(14px, calc(env(safe-area-inset-top, 0px) + 10px));
  padding-bottom: 14px;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  transition: background 0.35s, border-color 0.35s;
  *background: rgba(8, 4, 12, 0.4);
    backdrop-filter: blur(12px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-radius:0px 0px 24px 24px;
}

.site-header.scrolled {
  *background: rgba(8, 4, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.06);
}

body {
  padding-top: calc(env(safe-area-inset-top, 0px) + 68px);
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  
}

.sh-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sh-logo {
  display: flex;
  align-items: end;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.sh-logo-emoji {
  *font-size: 22px;
  filter: drop-shadow(0 0 10px rgba(255, 184, 48, 0.4));
  margin-bottom: -2px;
}

.sh-logo-text {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

.sh-logo-text .accent {
  font-weight: 700;
}

.sh-nav {
  display: none;
}

.sh-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-phone {
  display: none;
}

.sh-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 184, 48, 0.25);
  transition: transform 0.25s;
}

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

.sh-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sh-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .sh-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
  }
  .sh-nav a:hover {
    color: #fff;
  }
  .sh-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s;
  }
  .sh-nav a:hover::after {
    width: 100%;
  }
  .sh-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
  }
  .sh-call-icon {
    display: none;
  }
}

@keyframes heroIn {
  0% {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatFork {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-16px) rotate(-5deg);
  }
}

@keyframes pulseGold {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.18;
  }
}

.hero {
  position: relative;
  padding: 48px var(--container-px) 64px;
  overflow: hidden;
  opacity: 0;
  animation: heroIn 1.4s cubic-bezier(0.22, 0.9, 0.24, 1) forwards;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-bg1 {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.16), transparent 70%);
  top: -140px;
  right: -140px;
  animation: pulseGold 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-bg2 {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.09), transparent 70%);
  bottom: -90px;
  left: -90px;
  animation: pulseGold 12s ease-in-out infinite 3s;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 184, 48, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulseGold 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(42px, 12vw, 84px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-brand2 {
  display: block;
  color: #fff;
}

.hero-brand {
  background: linear-gradient(135deg, #FFB830, #FF8C00, #FF3B3B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-tagline {
  font-size: clamp(15px, 3vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 520px;
  font-weight: 500;
}

.hero-tagline strong {
  color: var(--gold);
}

.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-phone {
  font-size: clamp(19px, 4vw, 24px);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.4px;
}

.hero-phone:hover {
  text-shadow: 0 0 20px rgba(255, 184, 48, 0.5);
}

.hero-contact-sub {
  font-size: 12px;
  color: var(--text-dim);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
  flex: 1;
  min-width: 170px;
}

.hb-primary {
  background: linear-gradient(135deg, #FFB830, #FF8C00);
  color: #08040C;
  box-shadow: 0 0 26px rgba(255, 184, 48, 0.35), 0 0 54px rgba(255, 140, 0, 0.12);
}

.hb-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.015);
}

.hero-emoji {
  display: none;
  font-size: clamp(64px, 16vw, 210px);
  text-align: center;
  animation: floatFork 5s ease-in-out infinite;
  line-height: 1;
  margin: 14px 0;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.hf {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 16, 32, 0.82), rgba(10, 8, 18, 0.85));
  border: 1px solid rgba(255, 184, 48, 0.15);
}

.hf-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 184, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.hf-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .hero {
    padding: 56px var(--container-px) 80px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: stretch;
  }
  .hero-tagline {
    margin-left: 0;
  }
  .hero-emoji {
    display: block;
    margin: 0;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
    width: 100%;
  }
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 26px;
    margin-right: -60px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.stat-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.12), transparent 70%);
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  flex-grow: 1;
}

.stat-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: auto;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 20px;
  }
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.pain-card {
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pain-card.p1::before {
  background: var(--gold);
}
.pain-card.p2::before {
  background: var(--red);
}
.pain-card.p3::before {
  background: var(--purple);
}
.pain-card.p4::before {
  background: var(--green);
}

.pain-card.p1,
.pain-card.p2,
.pain-card.p3,
.pain-card.p4 {
  border-left-color: transparent;
}

.pain-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.4;
}

.pain-card.p1::after {
  background: rgba(255, 184, 48, 0.12);
}
.pain-card.p2::after {
  background: rgba(255, 59, 59, 0.12);
}
.pain-card.p3::after {
  background: rgba(168, 85, 247, 0.12);
}
.pain-card.p4::after {
  background: rgba(0, 230, 138, 0.08);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
  position: relative;
  z-index: 1;
}

.pi1 {
  background: rgba(255, 184, 48, 0.12);
  color: var(--gold);
}
.pi2 {
  background: rgba(255, 59, 59, 0.12);
  color: var(--red);
}
.pi3 {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
}
.pi4 {
  background: rgba(0, 230, 138, 0.1);
  color: var(--green);
}

.pain-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.pain-desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.pain-stat {
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.pain-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  margin: 28px auto 0;
  max-width: 480px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(0, 230, 138, 0.06);
  border: 1px solid rgba(0, 230, 138, 0.22);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.45;
}

.pain-footer i {
  flex-shrink: 0;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .pain-list {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.service-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  margin: 0 auto var(--gap-lg);
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.7), rgba(10, 8, 18, 0.75));
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 18px rgba(255, 184, 48, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}

@keyframes borderReveal {
  0% {
    background-position: 220% 0;
  }
  100% {
    background-position: -220% 0;
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 16px 18px;
  border-radius: var(--r-lg);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(24, 18, 36, 0.78), rgba(12, 8, 20, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 48, 0.3);
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%, transparent 100%);
  background-size: 220% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderReveal 9s linear infinite;
}

.package-card.pc-premium {
  background: linear-gradient(180deg, rgba(30, 20, 10, 0.82), rgba(18, 12, 6, 0.86) 45%, rgba(255, 184, 48, 0.14) 100%);
  border-color: rgba(255, 184, 48, 0.3);
}

.package-card.pc-full {
  background: linear-gradient(180deg, rgba(20, 10, 28, 0.82), rgba(12, 6, 18, 0.86) 55%, rgba(168, 85, 247, 0.1) 100%);
  border-color: rgba(168, 85, 247, 0.28);
}

.pc-badge-slot {
  height: 22px;
  margin-bottom: -19px;
  display: flex;
  justify-content: flex-end;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pc-badge.gold {
  background: linear-gradient(90deg, rgba(255, 184, 48, 0.95), rgba(255, 140, 0, 0.95));
  color: #08040C;
  box-shadow: 0 2px 10px rgba(255, 184, 48, 0.3);
}

.pc-badge.pur {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.95), rgba(120, 50, 200, 0.95));
  color: #fff;
}

.pc-title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pc-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}

.pc-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(220, 210, 240, 0.86);
  font-size: 11.5px;
  line-height: 1.45;
}

.pc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.pc-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pc-price {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.pc-price.alt {
  color: var(--purple);
}

.pc-old {
  position: relative;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  text-decoration: line-through;
}

.pc-arrow {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.pc-arrow.pur {
  color: var(--purple);
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    gap: 20px;
  }
  .package-card {
    padding: 26px 20px 22px;
  }
  .pc-title {
    font-size: 15px;
  }
  .pc-list li {
    font-size: 12.5px;
  }
  .pc-price {
    font-size: 21px;
  }
}

.config-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--gap-lg);
  font-size: 13px;
  color: var(--text-dim);
}

.config-layout {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.price-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cfg-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cfg-item:hover {
  border-color: rgba(255, 184, 48, 0.25);
}

.cfg-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.cfg-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 11px;
  transition: 0.2s;
}

.cfg-item input:checked~.cfg-box {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: transparent;
  color: #08040C;
}

.cfg-item input:checked~.cfg-label {
  color: #fff;
}

.cfg-item:has(input:checked) {
  border-color: var(--border-gold);
  background: rgba(255, 184, 48, 0.05);
}

.cfg-label {
  flex: 1;
  font-size: 13px;
  color: rgba(220, 210, 240, 0.86);
  line-height: 1.4;
}

.cfg-price {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.config-summary {
  position: relative;
  border-radius: var(--r-lg);
  padding: 22px;
  background: linear-gradient(180deg, rgba(22, 16, 34, 0.85), rgba(12, 8, 22, 0.9));
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.cs-head {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.cs-head-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.cs-empty {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  padding: 18px 0;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
}

.cs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.cs-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-list b {
  color: var(--gold);
  white-space: nowrap;
}

.cs-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-total span {
  font-size: 13px;
  color: var(--text-dim);
}

.cs-total strong {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--gold);
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-form input,
.cs-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  resize: none;
}

.cs-form input::placeholder,
.cs-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.cs-form input:focus,
.cs-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.cs-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  border-radius: var(--r-sm);
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s, opacity 0.2s;
  margin-top: 4px;
}

.cs-submit:hover {
  transform: translateY(-2px);
}

.cs-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.cs-note {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  text-align: center;
  margin-top: 2px;
}

.cs-state {
  display: none;
  text-align: center;
  padding: 18px 4px;
}

.cs-state.show {
  display: block;
}

.cs-state-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.cs-state-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.cs-state-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cs-wa-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .config-layout {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: flex-start;
  }
  .config-summary {
    position: sticky;
    top: 96px;
    
  }
}

.process-list {
  position: relative;
  display: flex;
  flex-direction: column;
  *gap: 26px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(255, 184, 48, 0.06));
}

.proc-step {
  display: flex;
  gap: 18px;
  position: relative;
}

.pnum {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--f-display);
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 184, 48, 0.05), 0 0 22px rgba(255, 184, 48, 0.22);
}

.pnum.pn5 {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  box-shadow: 0 0 0 6px rgba(255, 184, 48, 0.08), 0 0 30px rgba(255, 184, 48, 0.4);
}

.pbody {
  flex: 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
}

.pbody.pfinal {
  border: 1px solid rgba(0, 230, 138, 0.35);
  background: rgba(0, 230, 138, 0.04);
}

.ptitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ptitle.pfinal {
  color: var(--green);
}

.pdesc {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .process-list {
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
  }
  .process-list::before {
    left: 5%;
    right: 5%;
    top: 72px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 184, 48, 0.06));
  }
  .proc-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 16px;
  }
  .pbody {
    padding: 18px 16px;
    width: 100%;
  }
  .pdesc {
    font-size: 12px;
  }
}

.guar-hero {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 0 40px rgba(255, 184, 48, 0.1);
  position: relative;
  overflow: hidden;
}

.guar-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.14), transparent 70%);
}

.gh-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.gh-icon {
  font-size: 42px;
  flex-shrink: 0;
}

.gh-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.gh-sub {
  font-size: 13px;
  color: var(--text);
}

.gh-inner {
  background: rgba(255, 184, 48, 0.05);
  border-radius: var(--r-sm);
  padding: 16px;
  position: relative;
  z-index: 1;
}

.gh-inner-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--gold);
}

.gh-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gh-list li {
  font-size: 12.5px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.gh-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.gh-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 184, 48, 0.12);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.sla-card {
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
}

.sla-card.highlight {
  border-color: rgba(255, 184, 48, 0.3);
  background: rgba(255, 184, 48, 0.045);
}

.sla-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.sla-val {
  font-size: 19px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.sla-label {
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
}

.urgent-card {
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  background: rgba(255, 184, 48, 0.045);
}

.uc-icon {
  color: var(--gold);
  font-size: 26px;
  flex-shrink: 0;
}

.uc-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.uc-sub {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 6px;
}

.uc-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

@media (min-width: 1024px) {
  .guarantees-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .guarantees-grid>div {
    display: flex;
    flex-direction: column;
  }
  .guar-hero {
    margin-bottom: 0;
    flex: 1;
  }
  .sla-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.floating-contact-wrap {
  position: relative;
  height: 0;
}

.floating-contact-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 24px);
  max-width: 420px;
  padding: 10px;
  border-radius: 24px;
  *background: rgba(12, 8, 22, 0.85);
  border: 1px solid rgba(255, 184, 48, 0.15);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 48, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 550;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.45s ease;
}

.floating-contact-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fcb-call {
  flex: 1;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #08040C;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 8px 24px rgba(255, 184, 48, 0.25);
  transition: transform 0.28s;
  white-space: nowrap;
  overflow: hidden;
}

.fcb-call:hover {
  transform: translateY(-2px);
}

.fcb-social {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 21px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s;
  flex-shrink: 0;
}

.fcb-social:hover {
  transform: translateY(-2px);
}

.fcb-social.tg {
  color: #29A9EB;
}
.fcb-social.wa {
  color: #25D366;
}

@media (min-width: 1024px) {
  .floating-contact-bar {
    display: none;
  }
}

.fcb-compact {
  display: none;
}

@media (max-width: 479px) {
  .fcb-full {
    display: none;
  }
  .fcb-compact {
    display: flex;
  }
}

@keyframes emptyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-20deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.reviews-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 42px 24px 34px;
  text-align: center;
  background: linear-gradient(145deg, rgba(22, 16, 38, 0.8), rgba(12, 8, 22, 0.85));
  border: 1px solid rgba(255, 184, 48, 0.13);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}

.reviews-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 184, 48, 0.08) 0%, transparent 65%);
}

.re-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.12), transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(30px);
}

.re-icon {
  font-size: 58px;
  display: block;
  margin-bottom: 16px;
  animation: emptyFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.re-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.re-star {
  font-size: 21px;
  opacity: 0.25;
  color: var(--gold);
}

.re-star.filled {
  opacity: 1;
  animation: starPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.re-star:nth-child(1) {
  animation-delay: 0.1s;
}
.re-star:nth-child(2) {
  animation-delay: 0.2s;
}
.re-star:nth-child(3) {
  animation-delay: 0.3s;
}

.re-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.re-sub {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.re-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 48, 0.5), transparent);
  margin: 0 auto 20px;
  border-radius: 999px;
}

.re-side-title {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.re-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.re-platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: 0.25s;
}

.re-platform:hover {
  border-color: rgba(255, 184, 48, 0.3);
  transform: translateY(-2px);
}

.re-platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.rp-yandex {
  background: rgba(255, 59, 59, 0.12);
}
.rp-2gis {
  background: rgba(0, 200, 100, 0.1);
}
.rp-google {
  background: rgba(66, 133, 244, 0.1);
}

.re-platform-text {
  flex: 1;
  text-align: left;
}

.re-platform-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.re-platform-sub {
  font-size: 11px;
  color: var(--text);
}

.re-platform-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.re-cta {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.1), rgba(255, 140, 0, 0.05));
  border: 1px solid rgba(255, 184, 48, 0.18);
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.re-cta strong {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .reviews-card {
    max-width: none;
    padding: 50px 56px;
    text-align: left;
  }
  .reviews-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .re-main {
    text-align: left;
  }
  .re-icon {
    margin: 0 0 18px;
  }
  .re-stars {
    justify-content: flex-start;
    margin-bottom: 18px;
  }
  .re-title {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .re-sub {
    font-size: 14px;
    margin-bottom: 0;
  }
  .re-divider {
    display: none;
  }
  .re-cta {
    margin-top: 24px;
  }
  .re-side {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 44px;
  }
  .re-side-title {
    text-align: left;
  }
}

.cases-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: var(--container-narrow);
  margin: 0 auto;
  transition: max-height 0.6s cubic-bezier(0.22, 0.9, 0.24, 1);
  overflow: hidden;
}

.cases-list.collapsed {
  max-height: 560px;
  position: relative;
}

.cases-list.collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
  z-index: 2;
}

.cases-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: var(--container-narrow);
  margin: 18px auto 0;
  padding: 16px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.09), rgba(255, 140, 0, 0.045));
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--f-body);
}

.cases-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.16), rgba(255, 140, 0, 0.08));
  transform: translateY(-2px);
}

.cases-toggle-btn i {
  transition: transform 0.4s ease;
}

.cases-toggle-btn.open i {
  transform: rotate(180deg);
}

.case-card-full {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 14, 32, 0.82), rgba(10, 7, 18, 0.88));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.case-card-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.case-num-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 184, 48, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  z-index: 2;
}

.case-header {
  padding: 18px 18px 14px 54px;
}

.case-emoji-big {
  font-size: 30px;
  margin-bottom: 6px;
  display: block;
}

.case-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.case-type {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.case-done {
  padding: 0 18px 16px;
}

.case-done-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 9px;
}

.case-done-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-done-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}

.case-done-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.case-metrics {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-metric {
  padding: 15px 8px;
  text-align: center;
  background: rgba(10, 7, 18, 0.9);
}

.case-metric:first-child {
  border-radius: 0 0 0 var(--r-lg);
}
.case-metric:last-child {
  border-radius: 0 0 var(--r-lg) 0;
}

.cm-label {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 6px;
}

.cm-value {
  font-family: var(--f-display);
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 700;
  line-height: 1;
}

.cm-sub {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 4px;
  line-height: 1.3;
}

.cmv-gold {
  color: var(--gold);
}
.cmv-red {
  color: var(--red);
}
.cmv-green {
  color: var(--green);
}

@media (min-width: 1024px) {
  .cases-list {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
  }
  .cases-list.collapsed {
    max-height: 520px;
  }
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid var(--border);
}

.why-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 48, 0.1);
  color: var(--gold);
  font-size: 17px;
}

.why-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}

@media (min-width: 1024px) {
  .why-grid {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.about-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

.ab-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.ab-logo {
  font-size: 44px;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.15), rgba(255, 140, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.ab-name {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ab-role {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}

.ab-badge {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(255, 184, 48, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.ab-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
}

.ab-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.afi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.afi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.afi-icon.g {
  background: rgba(255, 184, 48, 0.1);
  color: var(--gold);
}
.afi-icon.r {
  background: rgba(255, 59, 59, 0.1);
  color: var(--red);
}
.afi-icon.p {
  background: rgba(168, 85, 247, 0.1);
  color: var(--purple);
}

.afi-text {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.as-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 10px;
  text-align: center;
}

.asn {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.asn.g {
  color: var(--gold);
}
.asn.r {
  color: var(--red);
}
.asn.p {
  color: var(--purple);
}

.ast {
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
}

.as-desc {
  display: none;
}

@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 28px;
    align-items: stretch;
  }
  .about-card {
    max-width: none;
    margin: 0;
  }
  .about-stats {
    max-width: none;
    margin: 0;
    height: 100%;
  }
  .as-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: left;
    padding: 22px 26px;
  }
  .as-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .asn {
    margin-bottom: 0;
  }
  .as-desc {
    display: block;
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.65;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--r-sm);
  overflow: hidden;
}

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-qi {
  color: var(--gold);
  font-size: 13px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item[open] .faq-qi {
  transform: rotate(180deg);
}

.faq-a {
  padding: 10px 16px 10px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-a {
  animation: faqIn 0.3s ease;
}

@media (min-width: 1024px) {
  .faq-list {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: start;
  }
}

.contact-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 14px;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--container-narrow);
  margin: 0 auto;
  width: 100%;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: 0.3s;
  border: 1.5px solid;
  text-align: center;
  min-height: 64px;
  width: 100%;
}

.cc-gold {
  border-color: rgba(255, 184, 48, 0.22);
  background: rgba(255, 184, 48, 0.035);
}
.cc-red {
  border-color: rgba(255, 59, 59, 0.22);
  background: rgba(255, 59, 59, 0.035);
}
.cc-green {
  border-color: rgba(0, 230, 138, 0.22);
  background: rgba(0, 230, 138, 0.035);
}
.cc-blue {
  border-color: rgba(45, 140, 255, 0.22);
  background: rgba(45, 140, 255, 0.035);
}

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

.cc-gold:hover {
  border-color: var(--gold);
}
.cc-red:hover {
  border-color: var(--red);
}
.cc-green:hover {
  border-color: var(--green);
}
.cc-blue:hover {
  border-color: #2d8cff;
}

.contact-btn .ci-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #fff;
}

.ci-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040c !important;
}
.ci-red {
  background: linear-gradient(135deg, #ff6b6b, #ff3b3b);
}
.ci-green {
  background: linear-gradient(135deg, var(--green), #00b36b);
}
.ci-blue {
  background: linear-gradient(135deg, #4fa8ff, #2d8cff);
}

.cb-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.cb-val {
  display: none;
  font-size: 11px;
  font-weight: 700;
}

.clv-gold {
  color: var(--gold);
}
.clv-red {
  color: #ff8a8a;
}
.clv-green {
  color: var(--green);
}
.clv-blue {
  color: #6fb6ff;
}

.sched-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.sched-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 138, 0.08);
  border: 1px solid rgba(0, 230, 138, 0.25);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.sched-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
}

.sched-row:last-child {
  border-bottom: none;
}

.sched-row span {
  color: var(--text);
}

.sched-row strong {
  color: #fff;
  font-weight: 800;
}

.sched-row.dim strong {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.sched-foot {
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 2px;
}

.sched-foot i {
  color: var(--gold);
  margin-right: 5px;
}

@media (min-width: 1024px) {
  .contact-layout {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 36px;
    align-items: center;
  }
  .contact-row {
    max-width: none;
    margin: 0;
  }
  .contact-btn {
    padding: 22px 14px;
    min-height: 100px;
    gap: 6px;
  }
  .contact-btn .ci-box {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .cb-label {
    font-size: 12.5px;
  }
  .cb-val {
    display: block;
    font-size: 11px;
    font-weight: 700;
  }
  .sched-box {
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .contact-btn {
    min-height: 72px;
    padding: 14px 6px;
  }
  .contact-btn .ci-box {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .cb-label {
    font-size: 11px;
  }
  .cb-val {
    display: none;
  }
}

.footer-legal {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(20, 16, 32, 0.7), rgba(10, 8, 18, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text,
.footer-copy {
  font-size: 12px;
  line-height: 1.7;
  color: #AEB7C5;
}

.footer-text a {
  color: var(--gold);
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.06);
}

.footer-hl {
  color: #fff;
  font-weight: 700;
}

/* ===== НИЖНЯЯ ЧАСТЬ ФУТЕРА (с отступами) ===== */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 0 20px;
}

/* На больших экранах (≥1024px) — отступы 160px и поднимаем футер */
@media (min-width: 1024px) {
  .footer-bottom {
    padding: 0 160px;
    margin-bottom: 14px;
  }
}

/* На планшетах (768–1023px) — умеренные отступы */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-bottom {
    padding: 0 60px;
    margin-top: 8px;
  }
}

/* На мобилках (≤600px) — отступы минимальные, всё в столбик */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 0 12px;
    margin-top: 6px;
  }
  .footer-bottom__center {
    font-size: 10px;
    gap: 4px;
  }
}

.footer-bottom__left {
  font-size: 12px;
  color: #7F8A9A;
}

.footer-bottom__center {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom__right {
  font-size: 12px;
}

.footer-made__link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--f-display);
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.footer-made__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-made__year {
  color: rgba(255, 255, 255, 0.15);
}

.mini-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 9999;
  padding: 20px;
}

.mini-modal:target {
  opacity: 1;
  visibility: visible;
}

@keyframes modalIn {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.mmd {
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 12, 28, 0.97), rgba(10, 6, 18, 0.99));
  border: 1px solid rgba(255, 184, 48, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 184, 48, 0.05);
  animation: modalIn 0.25s ease;
}

.mini-modal.active {
  opacity: 1;
  visibility: visible;
  display: flex !important;
}

.mini-modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  display: none !important;
}

.mm-addons-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 184, 48, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 16px 0 10px;
}

.mm-addons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.mm-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: 0.2s;
}

.mm-addon:hover {
  border-color: rgba(255, 184, 48, 0.25);
  background: rgba(255, 184, 48, 0.04);
}

.mm-addon input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 184, 48, 0.35);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}

.mm-addon input[type=checkbox]:checked {
  background: #FFB830;
  border-color: #FFB830;
}

.mm-addon input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #08040C;
  line-height: 18px;
  text-align: center;
}

.mm-addon-label {
  flex: 1;
  font-size: 13px;
  color: #C8B8E8;
  line-height: 1.3;
}

.mm-addon-price {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 184, 48, 0.8);
  white-space: nowrap;
}

.mm-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 184, 48, 0.06);
  border: 1px solid rgba(255, 184, 48, 0.2);
  margin-bottom: 14px;
}

.mm-total-label {
  font-size: 13px;
  color: rgba(232, 224, 240, 0.6);
}

.mm-total-value {
  font-size: 18px;
  font-weight: 800;
  color: #FFB830;
}

.mm-btn-order {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  transition: 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mm-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 184, 48, 0.3);
}

.mm-btn-order.pur {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
}

.mmh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mmtitle {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.mmclose {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  color: #9FB4CC;
  font-size: 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.2s;
}

.mmclose:hover {
  color: #fff;
  border-color: rgba(255, 184, 48, 0.3);
  background: rgba(255, 184, 48, 0.08);
}

.mmb {
  padding: 22px;
}

.mmemoji {
  font-size: 64px;
  text-align: center;
  margin-bottom: 14px;
}

.mmdesc {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mmlist {
  margin: 0 0 16px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mmlist li {
  color: #C8B8E8;
  font-size: 13px;
  line-height: 1.4;
}

.mmpricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
}

.mmpricebox.pur {
  border-color: rgba(168, 85, 247, 0.2);
}

.mmplabel {
  color: #B8C7D9;
  font-size: 13px;
}

.mmprice {
  color: var(--gold);
  font-size: 26px;
  font-weight: 900;
}

.mmprice.pur {
  color: var(--purple);
}

.mmbtn {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  transition: 0.25s;
}

.mmbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 184, 48, 0.3);
}

.mmbtn.alt {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
}

.mm-order-form {
  display: none;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mm-order-form.show {
  display: flex;
}

.mm-order-form .mm-form-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mm-order-summary {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin-bottom: 4px;
}

.mm-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mm-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.mm-summary-list li span {
  flex: 1;
}

.mm-summary-list li b {
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
}

.mm-summary-list li:first-child {
  font-size: 13px;
  color: #fff;
}
.mm-summary-list li:first-child b {
  color: var(--gold);
}

.mm-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.mm-summary-total b {
  color: var(--gold);
}

.mm-order-form input,
.mm-order-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  resize: none;
  box-sizing: border-box;
}

.mm-order-form input::placeholder,
.mm-order-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.mm-order-form input:focus,
.mm-order-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.mm-order-form input.input-error,
.mm-order-form textarea.input-error {
  border-color: #f87171;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.mm-submit-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-md);
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040C;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s;
}

.mm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 184, 48, 0.3);
}

.mm-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.mm-submit-btn.pur {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
}
.mm-submit-btn.pur:hover {
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.mm-form-success {
  display: none;
  text-align: center;
  padding: 16px 0 6px;
}

.mm-form-success.show {
  display: block;
}

.mm-form-success .icon {
  font-size: 38px;
  margin-bottom: 8px;
}

.mm-form-success p {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.mm-form-success small {
  font-size: 12px;
  color: var(--text-dim);
}

.mm-form-error {
  display: none;
  text-align: center;
  padding: 14px 0 6px;
}

.mm-form-error.show {
  display: block;
}

.mm-form-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 414px) {
  .mini-modal {
    align-items: flex-start;
    padding: 10px 0;
  }
  .mmd {
    max-height: 92vh;
    overflow-y: auto;
    scrollbar-width: none;
  }
}

.promo-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 10px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(20, 16, 32, 0.7), rgba(10, 7, 18, 0.8));
  border: 1px solid rgba(255, 184, 48, 0.12);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.promo-countdown::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-md);
  padding: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 48, 0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.promo-countdown__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  white-space: nowrap;
}

.promo-countdown__label .icon {
  font-size: 13px;
}

.promo-countdown__timer {
  display: flex;
  align-items: center;
  gap: 2px;
}

.promo-countdown__unit {
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.promo-countdown__unit span {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  min-width: 22px;
  text-align: center;
}

.promo-countdown__unit small {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.3);
}

.promo-countdown__divider {
  color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 300;
  padding: 0 1px;
}

.promo-countdown__slots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.promo-countdown__slots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 184, 48, 0.4);
  animation: pulseGold 2s ease-in-out infinite;
}

.promo-countdown__slots-text {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.promo-countdown__slots-number {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 1px;
}

.promo-countdown__slots-number.urgent {
  animation: pulseGold 2s ease-in-out infinite;
}

@media (max-width: 640px) {
  .promo-countdown {
    padding: 8px 14px;
    gap: 8px 14px;
    margin-bottom: 20px;
  }
  .promo-countdown__label {
    font-size: 9px;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
  }
  .promo-countdown__label .icon {
    font-size: 11px;
  }
  .promo-countdown__unit span {
    font-size: 15px;
    min-width: 18px;
  }
  .promo-countdown__unit small {
    font-size: 7px;
  }
  .promo-countdown__slots {
    padding-left: 10px;
    border-left: none;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: center;
  }
  .promo-countdown__slots-text {
    font-size: 9px;
  }
  .promo-countdown__slots-number {
    font-size: 14px;
  }
  .promo-countdown__divider {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .promo-countdown {
    padding: 12px 28px;
    gap: 16px 28px;
  }
  .promo-countdown__unit span {
    font-size: 20px;
    min-width: 26px;
  }
  .promo-countdown__slots-number {
    font-size: 18px;
  }
}

.slots-left {
  font-size: 0.9rem;
  color: #c0392b;
  margin-top: 8px;
  margin-bottom: 0;
}

.slots-left strong {
  font-size: 1.1em;
}

input.input-error {
  border-color: #e63946 !important;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

@media (max-width: 640px) {
  .pc-badge-slot {
    display: none !important;
  }
}

.sched-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.sched-status.weekday {
  background: rgba(0, 230, 138, 0.08);
  border: 1px solid rgba(0, 230, 138, 0.25);
  color: var(--green);
}

.sched-status.weekday .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-status.weekend {
  background: rgba(255, 184, 48, 0.08);
  border: 1px solid rgba(255, 184, 48, 0.25);
  color: var(--gold);
}

.sched-status.weekend .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 184, 48, 0.6);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-status .status-text {
  font-size: 11.5px;
  font-weight: 700;
}

.cases-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 184, 109, 0.35) transparent;
  padding: 4px 0 20px;
}

.cases-scroll-wrap::-webkit-scrollbar {
  height: 5px;
}

.cases-scroll-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.cases-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(232, 184, 109, 0.35);
  border-radius: 4px;
}

.cases-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(16px, 5vw, 60px) 4px;
  width: max-content;
}

.case-card-v2 {
  width: 400px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.case-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.cc2-gallery {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.cc2-slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc2-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.cc2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.cc2-nav:hover {
  background: rgba(232, 184, 109, 0.6);
}

.cc2-prev {
  left: 10px;
}
.cc2-next {
  right: 10px;
}

.cc2-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.cc2-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cc2-dot.active {
  background: var(--gold, #e8b86d);
  transform: scale(1.3);
}

.cc2-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.cc2-client-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.cc2-client-type {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.cc2-services-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

.cc2-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cc2-services-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.cc2-services-list li i {
  color: var(--gold, #e8b86d);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.cc2-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cc2-meta-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.cc2-meta-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.cc2-meta-val.gold {
  color: var(--gold, #e8b86d);
}

.cc2-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold, #e8b86d);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cc2-link:hover {
  opacity: 0.7;
}

.cc2-link i {
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .case-card-v2 {
    width: 320px;
  }
  .cc2-gallery {
    height: 185px;
  }
  .cc2-body {
    padding: 18px 18px 16px;
    gap: 14px;
  }
  .cc2-client-name {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .ember {
    display: none !important;
  }
}

.ase-hidden {
  display: none;
}

.ase-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid rgba(255, 184, 48, 0.35);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.ase-toggle-btn:hover {
  background: rgba(255, 184, 48, 0.08);
  border-color: rgba(255, 184, 48, 0.6);
}

.ase-btn-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ase-toggle-btn[aria-expanded="true"] .ase-btn-arrow {
  transform: rotate(180deg);
}

.about-starteda-grid.ase-open {
  display: grid;
  animation: aseFadeIn 0.35s ease both;
}

@keyframes aseFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  max-width: 560px;
  width: auto;
  min-width: 320px;
  background: linear-gradient(145deg, rgba(18, 12, 28, 0.97), rgba(10, 6, 18, 0.99));
  border: 1px solid rgba(255, 184, 48, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 184, 48, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30%;
  right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFB830, transparent);
  border-radius: 999px;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-consent__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-consent__content {
  flex: 1;
  min-width: 0;
}

.cookie-consent__text {
  font-size: 13px;
  color: rgba(212, 200, 232, 0.75);
  line-height: 1.5;
}

.cookie-consent__text a {
  color: #FFB830;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-consent__text a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.cookie-consent__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFB830, #FF8C00);
  color: #08040C;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(255, 184, 48, 0.25);
  white-space: nowrap;
}

.cookie-consent__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 184, 48, 0.35);
}

.cookie-consent__btn i {
  font-size: 12px;
}

@media (max-width: 768px) and (min-width: 481px) {
  .cookie-consent {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    width: 420px;
    max-width: calc(100% - 40px);
    min-width: unset;
    padding: 12px 16px;
    border-radius: 14px;
  }
  .cookie-consent.show {
    transform: translateX(-50%) translateY(0);
  }
  .cookie-consent__inner {
    flex-direction: row;
    gap: 10px;
  }
  .cookie-consent__icon {
    font-size: 18px;
  }
  .cookie-consent__text {
    font-size: 12px;
  }
  .cookie-consent__btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    width: 340px;
    max-width: calc(100% - 32px);
    min-width: unset;
    padding: 12px 16px;
    border-radius: 14px;
  }
  .cookie-consent.show {
    transform: translateX(-50%) translateY(0);
  }
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .cookie-consent__icon {
    display: none !important;
  }
  .cookie-consent__text {
    font-size: 11px;
    text-align: left;
  }
  .cookie-consent__text a {
    white-space: nowrap;
  }
  .cookie-consent__btn {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 11px;
    max-width: 110px;
    width: auto;
  }
}

@media (max-width: 360px) {
  .cookie-consent {
    width: 300px;
    max-width: calc(100% - 24px);
    padding: 10px 12px;
    bottom: 12px;
  }
  .cookie-consent__text {
    font-size: 10px;
  }
  .cookie-consent__btn {
    padding: 6px 12px;
    font-size: 10px;
    max-width: 90px;
  }
  .cookie-consent__text a {
    white-space: normal;
  }
}

/* ===== ССЫЛКА НА БЛОГ В ФУТЕРЕ ===== */
.footer-blog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 8px 0 4px;
}

.footer-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.08), rgba(255, 140, 0, 0.04));
  border: 1px solid rgba(255, 184, 48, 0.15);
  color: var(--gold);
  font-family: var(--f-display, 'Oswald', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-blog-link:hover {
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.15), rgba(255, 140, 0, 0.08));
  border-color: rgba(255, 184, 48, 0.35);
  transform: translateX(4px);
  box-shadow: 0 0 24px rgba(255, 184, 48, 0.06);
}

.footer-blog-icon {
  font-size: 16px;
  line-height: 1;
}

.footer-blog-arrow {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.footer-blog-link:hover .footer-blog-arrow {
  transform: translateX(4px);
}

.footer-blog-desc {
  font-size: 12px;
  color: rgba(212, 200, 232, 0.35);
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .footer-blog-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-blog-desc {
    font-size: 11px;
    padding-left: 4px;
  }
  .footer-blog-link {
    font-size: 13px;
    padding: 6px 14px 6px 12px;
  }
}



.site-header.scrolled {
  *background: rgba(8, 4, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.06);
}

.site-header.header-hidden {
  transform: translateY(-100%) !important;
}

@media (min-width: 1024px) {
  .site-header {
    padding-left: var(--container-px, 48px);
    padding-right: var(--container-px, 48px);
  }
  .site-header.header-hidden {
    transform: translateY(0) !important;
  }
  .sh-nav {
    display: flex !important;
  }
  .sh-phone {
    display: none;
  }
  .sh-call-icon {
    display: none !important;
  }
  body {
    padding-top: calc(env(safe-area-inset-top, 0px) + 68px) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px); 
  }
}

@media (max-width: 1023px) {
  .site-header {
    padding-left: var(--container-px, 22px);
    padding-right: var(--container-px, 22px);
  }
  .sh-nav {
    display: none !important;
  }
  .sh-phone {
    display: none !important;
  }
  .sh-call-icon {
    display: flex !important;
  }
  body {
    padding-top: calc(env(safe-area-inset-top, 0px) + 68px) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px); 
  }
}

@media (max-width: 480px) {
  .sh-logo-text {
    font-size: 16px;
  }
  .sh-logo-emoji {
    *font-size: 18px;
    margin-bottom: -3px;
  }
  .sh-btn {
    font-size: 11px;
    padding: 0 12px;
    height: 34px;
  }
}


/* ===== ДРУГИЕ ПРОЕКТЫ — КНОПКА В ФУТЕРЕ ===== */
.footer-projects-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px; /* фиксированная высота, как у других кнопок */
    padding: 0 24px 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 184, 48, 0.08), rgba(255, 140, 0, 0.04));
    border: 1px solid rgba(255, 184, 48, 0.2);
    color: var(--gold);
    font-family: var(--f-display, 'Oswald', sans-serif);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 184, 48, 0.02);
    flex-shrink: 0;
}

.footer-projects-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 184, 48, 0.3), rgba(255, 140, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s;
}

.footer-projects-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 184, 48, 0.15), rgba(255, 140, 0, 0.08));
    border-color: rgba(255, 184, 48, 0.45);
    box-shadow: 0 8px 30px rgba(255, 184, 48, 0.12), 0 0 40px rgba(255, 184, 48, 0.04);
}

.footer-projects-btn:active {
    transform: translateY(0) scale(0.98);
}

.footer-projects-btn .fp-icon {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.footer-projects-btn:hover .fp-icon {
    transform: rotate(-5deg) scale(1.1);
}

.footer-projects-btn .fp-arrow {
    font-size: 13px;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.footer-projects-btn:hover .fp-arrow {
    transform: translateX(4px);
}

.footer-projects-btn .fp-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 48, 0.15), transparent 70%);
    top: -20px;
    right: -20px;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.footer-projects-btn:hover .fp-glow {
    transform: scale(1.4) translate(10px, 10px);
}

/* ===== ЕДИНЫЙ СТИЛЬ ДЛЯ ВСЕХ КНОПОК В ФУТЕРЕ ===== */
.footer-blog-link,
.footer-projects-btn {
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 13px !important;
    flex-shrink: 0;
}

/* Адаптив для мобилок */
@media (max-width: 600px) {
    .footer-blog-link,
    .footer-projects-btn {
        height: 38px !important;
        padding: 0 16px !important;
        font-size: 11px !important;
        gap: 6px;
    }
    .footer-blog-link .footer-blog-icon,
    .footer-projects-btn .fp-icon {
        font-size: 13px;
    }
    .footer-blog-link .footer-blog-arrow,
    .footer-projects-btn .fp-arrow {
        font-size: 10px;
    }
    .footer-blog-link .footer-blog-icon {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .footer-blog-link,
    .footer-projects-btn {
        height: 34px !important;
        padding: 0 12px !important;
        font-size: 10px !important;
        gap: 4px;
        letter-spacing: 0.4px;
    }
    .footer-blog-link .footer-blog-icon,
    .footer-projects-btn .fp-icon {
        font-size: 11px;
    }
    .footer-blog-link .footer-blog-arrow,
    .footer-projects-btn .fp-arrow {
        font-size: 9px;
    }
}






















/* ===== АНИМАЦИЯ ЭМОДЗИ В МОДАЛКЕ ===== */

/* Контейнер для эмодзи — сохраняем центрирование */
.mmemoji {
    font-size: 64px;
    text-align: center;
    margin-bottom: 14px;
    display: block;
    transition: none;
    position: relative;
}

/* Анимация эмодзи при открытии модалки */
.mmemoji.animate {
    animation: emojiPop 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ===== РАЗНЫЕ ЭФФЕКТЫ ДЛЯ РАЗНЫХ ЭМОДЗИ ===== */

/* 🌐 Глобус — вращение с увеличением */
.mmemoji.animate.emoji-globe {
    animation: globeSpin 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 📲 Телефон — подпрыгивание */
.mmemoji.animate.emoji-phone {
    animation: phoneBounce 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 👑 Корона — свечение и покачивание */
.mmemoji.animate.emoji-crown {
    animation: crownGlow 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 🚀 Ракета — взлёт с возвращением */
.mmemoji.animate.emoji-rocket {
    animation: rocketLaunch 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ===== КЛЮЧЕВЫЕ КАДРЫ ===== */

/* 🚀 Ракета — взлетает и возвращается */
@keyframes rocketLaunch {
    0% {
        transform: translateY(0) scale(1) rotate(-5deg);
        opacity: 1;
    }
    20% {
        transform: translateY(-30px) scale(1.3) rotate(5deg);
        opacity: 1;
    }
    45% {
        transform: translateY(-70px) scale(1.5) rotate(-3deg);
        opacity: 1;
    }
    70% {
        transform: translateY(-100px) scale(1.4) rotate(2deg);
        opacity: 1;
    }
    85% {
        transform: translateY(-50px) scale(1.2) rotate(-2deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* 🌐 Глобус — вращение */
@keyframes globeSpin {
    0% {
        transform: rotate(0deg) scale(0.3);
        opacity: 0;
    }
    40% {
        transform: rotate(360deg) scale(1.3);
        opacity: 1;
    }
    70% {
        transform: rotate(540deg) scale(0.9);
        opacity: 1;
    }
    100% {
        transform: rotate(720deg) scale(1);
        opacity: 1;
    }
}

/* 📲 Телефон — подпрыгивание */
@keyframes phoneBounce {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    30% {
        transform: translateY(-40px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
    70% {
        transform: translateY(-30px) scale(1.15);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* 👑 Корона — свечение */
@keyframes crownGlow {
    0% {
        transform: scale(0.3) rotate(-15deg);
        opacity: 0;
        filter: blur(5px);
    }
    30% {
        transform: scale(1.4) rotate(8deg);
        opacity: 1;
        filter: blur(0);
    }
    50% {
        transform: scale(0.8) rotate(-5deg);
        filter: blur(0);
    }
    70% {
        transform: scale(1.2) rotate(3deg);
        filter: blur(0);
        text-shadow: 0 0 30px rgba(255, 184, 48, 0.8);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0);
        text-shadow: 0 0 20px rgba(255, 184, 48, 0.3);
    }
}

/* ===== ЭФФЕКТ ВСПЛЫВАНИЯ ДЛЯ ВСЕХ ЭМОДЗИ ===== */
@keyframes emojiPop {
    0% {
        transform: scale(0.2) rotate(-10deg);
        opacity: 0;
    }
    40% {
        transform: scale(1.3) rotate(5deg);
        opacity: 1;
    }
    60% {
        transform: scale(0.9) rotate(-3deg);
    }
    80% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ===== ЧАСТИЦЫ ВОКРУГ ЭМОДЗИ ===== */
.mmemoji-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.mmemoji-particles span {
    position: absolute;
    font-size: 14px;
    opacity: 0;
}

.mmemoji.animate ~ .mmemoji-particles span {
    animation: particlesFly 1.8s ease-out forwards;
}

.mmemoji-particles span:nth-child(1) { animation-delay: 0.1s; }
.mmemoji-particles span:nth-child(2) { animation-delay: 0.3s; }
.mmemoji-particles span:nth-child(3) { animation-delay: 0.5s; }
.mmemoji-particles span:nth-child(4) { animation-delay: 0.7s; }
.mmemoji-particles span:nth-child(5) { animation-delay: 0.9s; }
.mmemoji-particles span:nth-child(6) { animation-delay: 1.1s; }

@keyframes particlesFly {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0) rotate(360deg);
    }
}

/* ===== СВЕЧЕНИЕ ВОКРУГ ЭМОДЗИ ===== */
.mmemoji-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 48, 0.15), transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.5s;
}

.mmemoji.animate ~ .mmemoji-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
}

/* ===== АДАПТИВ ===== */
@media (max-width: 600px) {
    .mmemoji {
        font-size: 68px;
    }
    .mmemoji-glow {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 400px) {
    .mmemoji {
        font-size: 60px;
    }
    .mmemoji-glow {
        width: 60px;
        height: 60px;
    }
}