*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Gotham', 'Montserrat', sans-serif;
    background: #1d1d1e;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== ФИКСИРОВАННЫЙ ФОН С ТОЧКАМИ ===== */
.site-bg-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999;
    background-color: #1d1d1e;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    pointer-events: none;
}

/* Затемнение поверх точек */
.site-bg-dots::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(29, 29, 30, 0.6);
    pointer-events: none;
    z-index: -998;
}

/* ВСЁ СОДЕРЖИМОЕ ПОВЕРХ ФОНА */
.site-content {
    position: relative;
    z-index: 1;
}

@font-face {
    font-family: 'Gotham Light';
    src: url('fonts/gotham_light.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'REDOB Regular';
    src: url('fonts/REDOBtrial-REDOBRegular.woff2') format('woff2'),
         url('fonts/REDOBtrial-REDOBRegular.woff') format('woff'),
         url('fonts/REDOBtrial-REDOBRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 10px;
}

.container {
    max-width: 1554px;
    margin-left: 180px;
    margin-right: 180px;
    height: 100px;
}

::selection {
    background-color: #ff0000;
    color: #2b2b2b;
}

::-moz-selection {
    background-color: #ff0000;
    color: #0a0a0a;
}

/* ========== КНОПКИ ========== */
.btn {
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn--pay {
    font-family: 'Unbounded', sans-serif;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    padding: 12px 24px;
    color: #ff1111;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

.btn--pay:hover {
    background: rgba(0, 0, 0, 0.178);
}

.desktop-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 3px;
}


/* ========== ХЕДЕР (ПК) — ИСПРАВЛЕННАЯ ВЕРСИЯ ========== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    margin-top: 15px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* ЛОГОТИП — ПРИЖАТ К ЛЕВОМУ КРАЮ, НЕ МЕНЯЕТ РАЗМЕР */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 40px;
    flex-shrink: 0;
    /* ФИКСИРОВАННЫЙ РАЗМЕР */
    width: auto;
    min-width: fit-content;
}

.logo img {
    width: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo__name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-shrink: 0;
}

.logo__top {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.logo__bottom {
    font-size: 14px;
    font-weight: 800;
    color: #ff0000;
    white-space: nowrap;
}

/* МЕНЮ — СТРОГО ПО ЦЕНТРУ, НЕ ДВИГАЕТСЯ */
.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 270px;
    margin-bottom: 8px;
}

@import url('https://fonts.googleapis.com/css2?family=Agency+FB&display=swap');

.nav__link {
    font-family: 'Agency FB', 'Arial Narrow', 'Impact', sans-serif;
    color: rgba(255, 255, 255, 0.322);
    text-decoration: none;
    margin-right: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
    cursor: pointer;
}

.nav__link:hover {
    color: #ff0000;
}

.nav__link.active {
    color: #ffffff;
}

/* ===== КНОПКА ===== */
.btn--pay {
    position: absolute;
    right: 40px;
    margin-top: -23px;
    margin-left: 0;
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--pay {
    color: #ff0000;
    background: transparent;
    border-color: #ffffff13;
}

.btn--pay:hover {
    background: #3a3a3b7c;
    color: #ff0000;
}

/* ===== СКРЫВАЕМ НА ПК (ШИРИНА > 768px) ===== */
@media (min-width: 769px) {
    .burger {
        display: none !important;
    }
    
    .bottom-sheet {
        display: none !important;
    }
    
    .bottom-sheet-overlay {
        display: none !important;
    }
}

/* ===== АДАПТИВ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 1024px) {
    .nav__list {
        gap: 30px;
    }
    
    .nav__link {
        font-size: 13px;
        margin-right: 15px;
    }
    
    .logo img {
        width: 38px;
        height: 38px;
    }
    
    .logo__top {
        font-size: 15px;
    }
    
    .logo__bottom {
        font-size: 12px;
    }
}

/* ===== АДАПТИВ ДЛЯ ТЕЛЕФОНОВ ===== */
@media (max-width: 768px) {
    .header__container {
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .logo {
        position: relative;
        left: 0;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .logo__top {
        font-size: 14px;
    }
    
    .logo__bottom {
        font-size: 11px;
    }
    
    .nav {
        display: none;
    }
    
    .btn--pay {
        position: relative;
        right: 0;
        margin-top: 0;
    }
}

/* ===== ОВЕРЛЕЙ ===== */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ВЫЕЗЖАЮЩАЯ ПАНЕЛЬ ===== */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #121212;
    border-radius: 20px 20px 0 0;
    transition: bottom 0.3s ease;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 80vh;
}

.bottom-sheet.open {
    bottom: 0;
}

.bottom-sheet__handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin: 12px auto 0;
    cursor: pointer;
}

.bottom-sheet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-sheet__title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.bottom-sheet__close {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.bottom-sheet__close:hover {
    color: #ff0000;
}

.bottom-sheet__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.bottom-sheet__list li a {
    display: block;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.bottom-sheet__list li a:hover {
    background: rgba(255, 0, 0, 0.05);
    color: #ff0000;
}

/* ===== БУРГЕР ===== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger:hover span {
    background: #ff0000;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ff0000;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ff0000;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
}

@media (min-width: 769px) {
    .burger {
        display: none !important;
    }
    .bottom-sheet {
        display: none !important;
    }
    .bottom-sheet-overlay {
        display: none !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.connect {
    padding: 80px 0 100px;
}

@font-face {
    font-family: 'Bounded Black';
    src: url('https://ofont.ru/download/5886/bounded-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.connect__container {
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    margin-top: 1500px;
}

.connect__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 80px;
}

.connect__desc {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 1.6;
    max-width: 1100px;
    margin-left: 100px;
    margin: 0 auto 10px;
    margin-bottom: 150px;
}

/* ========== ПОПОЛНЕНИЕ 1 В 1 КАК НА СКРИНЕ ========== */
.donate {
    padding: 120px 0 10px;
}

.donate__field-input input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;  /* ← меняем с center на left */
}

.donate__field-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

.donate__container {
    max-width: 580px;
    margin: 0 auto;
    padding: 0 20px;
}

.donate__header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.donate__hash {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 42px;
    font-weight: 900;
    color: #ff0000;
}

.donate__title {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
}

.donate__content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
}

.donate__question {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.donate__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 28px;
}

.donate__field {
    margin-bottom: 24px;
}

.donate__field-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.donate__field-input input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Bounded Black', monospace;
    text-align: center;
}

.donate__field-input input:focus {
    outline: none;
    border-bottom-color: #ff0000;
}

.donate__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.donate__row-label {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

.donate__row-value {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Скидки */
.donate__discount {
    margin-bottom: 28px;
}

.donate__discount-title {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.donate__discount-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
}

.donate__discount-percent {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 18px;
    font-weight: 800;
    color: #ff0000;
    min-width: 55px;
}

.donate__discount-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Результат */
.donate__result {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 14px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.donate__result span:first-child {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.donate__result span:last-child {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 18px;
    font-weight: 800;
    color: #ff0000;
}

/* Поле для никнейма */
.donate__field {
    margin-bottom: 24px;
}

.donate__field-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.donate__field-input input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.donate__field-input input:focus {
    outline: none;
    border-bottom-color: #ff0000;
}

.donate__field-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 400;
}

/* Селект выбора сервера */
.donate__field-select select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.donate__field-select select:focus {
    outline: none;
    border-bottom-color: #ff0000;
}

.donate__field-select select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Кнопки */
.donate__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.donate__btn {
    flex: 1;
    padding: 14px 16px;
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.donate__btn--dp {
    background: #ff0000;
    color: #ffffff;
}

.donate__btn--dp:hover {
    background: #cc0000;
}

.donate__btn--rp {
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
}

.donate__btn--rp:hover {
    background: rgba(255, 0, 0, 0.1);
}

.donate__btn--pay {
    width: 100%;
    background: #ff0000;
    color: #ffffff;
}

.donate__btn--pay:hover {
    background: #cc0000;
}

/* Чекбокс */
.donate__agree {
    margin-bottom: 24px;
}

.donate__agree-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.685);
}

.donate__agree-checkbox input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #ff0000;
}

/* Текст о способах оплаты снизу */
.donate__payment-info {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 600px) {
    .donate__payment-info {
        padding: 12px 16px;
        font-size: 10px;
    }
}

/* ========== СООБЩЕНИЕ ОБ ОШИБКЕ ========== */
.donate__error-message {
    margin-top: 20px;
    padding: 14px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ff6666;
    text-align: center;
    display: none;
    letter-spacing: 0.3px;
}

.donate__error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== БЛОК УСЛУГИ ========== */
.services {
    padding: 60px 0;
}

.services__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__title {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff4d;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.services__grid {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Первая строка — верхняя граница */
.services__card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services__card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.services__card-price {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ff0000;
}

/* Адаптив */
@media (max-width: 600px) {
    .services {
        padding: 40px 0;
    }
    .services__title {
        font-size: 32px;
    }
    .services__card {
        padding: 12px 16px;
    }
    .services__card-name {
        font-size: 13px;
    }
    .services__card-price {
        font-size: 14px;
    }
}

/* ========== БЛОК СТАРТОВЫЕ НАБОРЫ ========== */
.starter-packs {
    padding: 60px 0 100px;
}

.starter-packs__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.starter-packs__title {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff4d;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.starter-packs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.starter-packs__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}

.starter-packs__card-title {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 20px;
    font-weight: 800;
    color: #ffffffec;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.starter-packs__card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.starter-packs__card-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.starter-packs__card-list li::before {
    content: "—";
    color: #ff0000;
    margin-right: 8px;
}

.starter-packs__card-price {
    font-family: 'Bounded Black', 'Unbounded', monospace;
    font-size: 22px;
    font-weight: 800;
    color: #ff0000;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.starter-packs__card-title {
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.starter-packs__card-list {
    margin-bottom: 16px;
}

.starter-packs__card-list li {
    padding: 3px 0;
}

.starter-packs__card-price {
    padding-top: 12px;
}

/* Адаптив */
@media (max-width: 900px) {
    .starter-packs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 550px) {
    .starter-packs__grid {
        grid-template-columns: 1fr;
    }
    
    .starter-packs__title {
        font-size: 32px;
    }
    
    .starter-packs__card {
        padding: 20px 16px;
    }
    
    .starter-packs__card-title {
        font-size: 18px;
    }
    
    .starter-packs__card-price {
        font-size: 20px;
    }
}

/* ========== ФУТЕР ========== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 32px 80px;
    max-width: 1950px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer__container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

/* Компания (лого + реквизиты) */
.footer__company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__logo {
    height: 32px;
    width: 120px;
    margin-bottom: 16px;
}

.footer__company p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    line-height: 1.5;
    font-weight: 400;
}

.footer__logo-wrapper .logo-icon {
    position: relative;
    width: 60px;
    height: 70px;
    overflow: hidden;
    margin-left: 200px;
}

.footer__logo-wrapper .logo-icon img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.footer__logo-wrapper .logo-img-gray {
    opacity: 1;
}

.footer__logo-wrapper .logo-img-color {
    opacity: 0;
}

.footer__logo-wrapper .logo:hover .logo-img-gray {
    opacity: 0;
}

.footer__logo-wrapper .logo:hover .logo-img-color {
    opacity: 1;
}

/* Навигация */
.footer__nav {
    margin: 0 auto;
    padding: 0 32px;
}

.footer__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 90px;
}

.footer__nav-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__nav-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer__nav-block ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 8px;
}

.footer__nav-link {
    color: rgba(255, 255, 255, 0.39);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__nav-link:hover {
    color: #ff4848;
}

/* Платежки */
.footer__payments {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer__payment-list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.footer__payment-list li {
    background: #181818;
    border-radius: 4px;
    padding: 0 12px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__payment-list li span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer__status {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.footer__status::before {
    content: "";
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #89de5d;
    border-radius: 50%;
    animation: heartbeat 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(137, 222, 93, 0.5);
}

@keyframes heartbeat {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 8px rgba(137, 222, 93, 0.3);
    }
    14% {
        transform: translateY(-50%) scale(1.4);
        box-shadow: 0 0 15px rgba(137, 222, 93, 0.7);
    }
    28% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 8px rgba(137, 222, 93, 0.3);
    }
    42% {
        transform: translateY(-50%) scale(1.4);
        box-shadow: 0 0 15px rgba(137, 222, 93, 0.7);
    }
    70% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 8px rgba(137, 222, 93, 0.3);
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 8px rgba(137, 222, 93, 0.3);
    }
}

/* Адаптив */
@media (max-width: 1280px) {
    .footer {
        padding: 32px 32px 64px;
    }
    .footer__company {
        margin-right: 96px;
    }
}

@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        gap: 32px;
        padding: 24px;
    }
    .footer__company {
        margin-right: 0;
        width: 100%;
    }
    .footer__nav {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .footer__nav > ul {
        flex-direction: column;
        gap: 24px;
    }
    .footer__nav-block {
        width: 100%;
    }
    .footer__payments {
        align-items: flex-start;
        width: 100%;
    }
    .footer__payment-list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer__status {
        padding-left: 20px;
    }
    .footer__status::before {
        right: calc(100% - 8px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 24px;
    }
    .footer__nav > ul {
        flex-direction: column;
        gap: 20px;
    }
}