@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Iceberg&display=swap');

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #0F1419;
    color: #c1f1ff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header {
    width: 100%;
    padding: 1em 2em;
    margin: 0;
    position: absolute;
    background-color: transparent;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
}

.logo_name {
    font-size: 1.5em;
    font-family: "Iceberg", sans-serif;
    font-weight: 400;
    color: #00d4ff;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-family: "Regular", sans-serif;
    font-weight: 200;
    text-decoration: none;
    color: #A9C9D2;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3em 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #24A7CB, #00d4ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(36, 167, 203, 0.6);
}

.nav-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.phone {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "IceBerg", sans-serif;
    font-weight: 400;
    color: #00d4ff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone:hover {
    color: #24A7CB;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

.header-icons {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    /* Расстояние между иконками */
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 998;
    /* Убедитесь, что иконки всегда поверх всего */
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(15, 20, 25, 0.95);
    /* Цвет фона для Telegram */
    color: white;
    border-radius: 10px;
    padding: 0.625rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 87.5px;
    min-width: 87.5px;
    width: 100%;
}

.icon-container:hover {
    transform: scale(1.1);
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    /* Наследует цвет из родительского элемента */
}

.telegram .icon {
    stroke: white;
    /* Цвет линий для Telegram */
}

.whatsapp .icon {
    background-color: #25D366;
    /* Цвет фона для WhatsApp */
    stroke: white;
    /* Цвет линий для WhatsApp */
}

.viber .icon {
    background-color: #665CAC;
    /* Цвет фона для Viber - фиолетовый */
    stroke: white;
    /* Цвет линий для Viber */
}

.telegram span,
.whatsapp span,
.viber span {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.telegram-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ===== СОВРЕМЕННЫЙ ДИЗАЙН HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 6em 2em 2em;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    height: 1800px;
    background-image: url("/img/haze2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
}

.hero-content,
.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 500px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 48px;
    text-transform: uppercase;
    color: #00d4ff;
    margin: 0 0 1em 0;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

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

.hero-text p {
    margin-bottom: 2em;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #A9C9D2;
    line-height: 1.6;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2.5em;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(36, 167, 203, 0.5);
    border-radius: 8px;
    color: #00d4ff;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    box-sizing: border-box;
    height: fit-content;
}

.hero-button:hover {
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.4) 0%, rgba(0, 212, 255, 0.3) 100%);
    border-color: rgba(36, 167, 203, 0.8);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 167, 203, 0.3);
}

/* ===== СОВРЕМЕННЫЙ БЛОК ИНФОРМАЦИИ О ДОСТАВКЕ ===== */
.delivery-info-card {
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    padding: 0.75em 1.2em;
    background: rgba(15, 20, 25, 0.6);
    border: 1.5px solid rgba(36, 167, 203, 0.3);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.delivery-info-card:hover {
    background: rgba(15, 20, 25, 0.8);
    border-color: rgba(36, 167, 203, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 167, 203, 0.2);
}

.delivery-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-info-card:hover .img-car {
    transform: scale(1.08);
    filter: drop-shadow(0 3px 12px rgba(36, 167, 203, 0.6));
}

.delivery-info-card__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1em;
    line-height: 1.2;
}

.delivery-info-card__label {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.delivery-info-card:hover .delivery-info-card__label {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.delivery-info-card__time {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #A9C9D2;
    transition: all 0.3s ease;
}

.delivery-info-card:hover .delivery-info-card__time {
    color: #c1f1ff;
}

.image-button {
    background-image: url('/img/button.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    padding: 1em 2em;
    margin-left: 1em;
    color: #24A7CB;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background-color: #0F1419;
    clip-path: polygon(
        8.5px 0%,
        calc(100% - 8.5px) 0%,
        100% 8.5px,
        100% calc(100% - 8.5px),
        calc(100% - 8.5px) 100%,
        10px 100%,
        0% calc(100% - 8.5px),
        0% 8.5px
    );
    width: 230px;
    height: 60px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    filter: none;
}

.image-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 167, 203, 0.3), transparent);
    transition: left 0.5s ease;
}

.image-button:hover {
    transform: translateY(-3px) scale(1.02);
    color: #00d4ff;
    box-shadow: none;
    filter: none;
}

.image-button:hover::before {
    left: 100%;
}

.image-button:active {
    transform: translateY(-1px) scale(1);
}

.img-car {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 3px 8px rgba(36, 167, 203, 0.4));
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 1;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.hero-image {
    max-width: 400px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(36, 167, 203, 0.2));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero_balloon {
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

.hero .btn {
    background: #00f6ff;
    color: #000;
    padding: 1em 2em;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1em;
}

.delivery-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    padding: 0 2em 4em;
    margin-top: -1em;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: visible;
}

.delivery-info::before {
    content: "";
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1600px;
    height: 1000px;
    background-image: url("/img/haze2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 0;
    opacity: 0.12;
    filter: blur(2px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 50% at center, black 30%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at center, black 30%, transparent 60%);
}

/* ===== СОВРЕМЕННЫЙ ДИЗАЙН КАРТОЧЕК ДОСТАВКИ ===== */
.delivery-card {
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    border: 2px solid rgba(36, 167, 203, 0.3);
    border-radius: 16px;
    padding: 1.2em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.delivery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(36, 167, 203, 0.6);
    box-shadow: 0 12px 40px rgba(36, 167, 203, 0.2);
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-card__title {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.6em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.delivery-card:hover .delivery-card__title {
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.delivery-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2em;
    margin: 0.3em 0 0.6em 0;
}

.delivery-card__price-value {
    font-family: "Exo 2", sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #00d4ff;
    line-height: 1;
    transition: all 0.3s ease;
}

.delivery-card:hover .delivery-card__price-value {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.delivery-card__price-currency {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #24A7CB;
}

.delivery-card__description {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: #A9C9D2;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
}


.catalog {
    padding: 2em;
    text-align: center;
}

.catalog h2 {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    color: #24A7CB;
    text-shadow: 2px 2px 9px rgba(0, 234, 255, 0.25);
    position: relative;
    display: inline-block;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 2px 2px 9px rgba(0, 234, 255, 0.25), 0 0 20px rgba(36, 167, 203, 0.3);
    }
    50% {
        text-shadow: 2px 2px 9px rgba(0, 234, 255, 0.5), 0 0 30px rgba(36, 167, 203, 0.6);
    }
}

.catalog-filters {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-button {
    background: url('/img/button.png');
    background-size: 100% 100%;
    background-color: #0F1419;
    background-blend-mode: normal;
    border: none;
    color: #24A7CB;
    padding: 0.8em 1.5em;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 185px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    filter: none;
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(36, 167, 203, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.filter-button:hover {
    color: #00d4ff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: none;
    filter: none;
}

.filter-button:hover::before {
    width: 300px;
    height: 300px;
}

.filter-button.active {
    color: #00d4ff;
    transform: scale(1.05);
    box-shadow: none;
    filter: none;
}


.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.7em;
    margin-top: 25px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1em;
    justify-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
        gap: 0.7em;
        justify-items: center;
        justify-content: center;
    }
}

/* Старые стили для обратной совместимости */
.product-card {
    background-image: url(/img/catalog.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0F1419;
    background-blend-mode: normal;

    width: 100%;
    max-width: 220px;
    padding: 1em 1em 1em 0;
    text-align: center;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    font-family: "Exo 2", sans-serif;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== СОВРЕМЕННЫЕ КАРТОЧКИ КАТАЛОГА ===== */
.catalog-card {
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    border: 2px solid rgba(36, 167, 203, 0.3);
    border-radius: 16px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 167, 203, 0.6);
}

.catalog-card:hover::before {
    opacity: 1;
}

.catalog-card__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    width: 100%;
}

.catalog-card__img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(36, 167, 203, 0.4));
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-card__img {
    transform: scale(1.08);
}

.catalog-card__content {
    flex: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.catalog-card__category {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #24A7CB;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-card__title {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #00d4ff;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.catalog-card__title--hit {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.catalog-card:hover .catalog-card__title {
    color: #00d4ff;
    transform: scale(1.05);
}

.catalog-card__prices {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-top: 0.3em;
    width: 100%;
}

.catalog-card__price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    padding: 0.6em;
    background: rgba(36, 167, 203, 0.08);
    border: 1px solid rgba(36, 167, 203, 0.2);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    text-align: center;
    overflow-wrap: normal;
    word-wrap: normal;
}

.catalog-card__price-item--single {
    background: rgba(36, 167, 203, 0.1);
}

.catalog-card__price-value {
    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    word-break: keep-all;
    unicode-bidi: embed;
}

.catalog-card__price-currency {
    font-family: "Exo 2", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #24A7CB;
    white-space: nowrap;
    display: inline;
    margin-left: 0.2em;
    unicode-bidi: embed;
}

.catalog-card__price-note {
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #A9C9D2;
    margin-top: 0.2em;
}

.catalog-card__button {
    display: inline-block;
    width: 100%;
    padding: 0.7em 1em;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(36, 167, 203, 0.5);
    border-radius: 8px;
    color: #00d4ff;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.catalog-card__button:hover {
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.4) 0%, rgba(0, 212, 255, 0.3) 100%);
    border-color: rgba(36, 167, 203, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

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

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    filter: brightness(1.1);
}

.product-card:hover .product-card h3 {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.product-card-inner {
    display: flex;
    align-items: center;
}

.balloon-img {
    width: 90px;
    height: auto;
}

.product-info {
    text-align: left;
}

.product-subtitle {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #24A7CB;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    color: #00d4ff;
    text-decoration: underline;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.product-card:hover h3 {
    color: #00d4ff;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
    transform: scale(1.05);
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.product-price span {
    font-size: 12px;
    font-weight: normal;
    display: block;
}

.product-card .image-button {
    background-size: contain;
    font-size: 16px;
    width: 170px;
}

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

.promo-section {
    padding: 4em 2em;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.95) 0%, rgba(8, 19, 30, 0.98) 100%);
}

.promo-section__header {
    margin-bottom: 3em;
}

.promo-section__title {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 42px;
    text-transform: uppercase;
    color: #24A7CB;
    margin-bottom: 0.5em;
    position: relative;
    display: inline-block;
}

.promo-section__subtitle {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    color: #A9C9D2;
    font-weight: 300;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: stretch;
}

.promo-card {
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    border: 2px solid rgba(36, 167, 203, 0.3);
    border-radius: 16px;
    padding: 2em 1.5em;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.promo-card::before {
.promo-card--bundle {
    padding: 1.2em 1em;
}

.promo-card--bundle .promo-card__visual {
    min-height: 80px;
    padding: 0.3em 0;
}

.promo-card--bundle .promo-card__cylinder-img {
    width: 90px;
}

.promo-card--bundle .promo-card__info {
    margin-top: 0.3em;
    gap: 0.3em;
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(36, 167, 203, 0.6);
    box-shadow: 0 12px 40px rgba(36, 167, 203, 0.2);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #24A7CB 0%, #00d4ff 100%);
    color: #0F1419;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6em 1.4em;
    border-radius: 25px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(36, 167, 203, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.promo-card--exchange .promo-card__badge {
    background: linear-gradient(135deg, #00d4ff 0%, #24A7CB 100%);
}

.promo-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.promo-card__content--exchange {
    flex-direction: row;
    align-items: center;
    gap: 2.5em;
}

.promo-card__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    padding: 1em 0;
}

.promo-card__cylinders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.promo-card__cylinders--three {
    gap: 0.8em;
}

.promo-card__cylinders--two {
    gap: 1em;
}

.promo-card__cylinders--stacked {
    position: relative;
    justify-content: center;
    gap: 0.4em;
}

.promo-card__cylinders--stacked .promo-card__cylinder-img:nth-child(1) {
    transform: translateX(-22px);
}

.promo-card__cylinders--stacked .promo-card__cylinder-img:nth-child(2) {
    transform: translateX(0);
}

.promo-card__cylinders--stacked .promo-card__cylinder-img:nth-child(3) {
    transform: translateX(22px);
}

.promo-card__cylinder-img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(36, 167, 203, 0.4));
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card__cylinder-img {
    transform: scale(1.1);
}

.promo-card__info {
    text-align: center;
}

.promo-card__info--exchange {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    padding-top: 1.5em;
}

.promo-card__title {
    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.promo-card__description {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: #A9C9D2;
    margin-bottom: 1.2em;
    font-weight: 300;
}

.promo-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2em;
    margin: 1em 0;
}

.promo-card__price-value {
    font-family: "Exo 2", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #00d4ff;
    line-height: 1;
}

.promo-card__price-currency {
    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #24A7CB;
}

.promo-card__price--buyout .promo-card__price-value {
    font-size: 30px;
}

.promo-card__button {
    display: inline-block;
    width: 100%;
    padding: 1em 2em;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(36, 167, 203, 0.5);
    border-radius: 8px;
    color: #00d4ff;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.promo-card__button:hover {
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.4) 0%, rgba(0, 212, 255, 0.3) 100%);
    border-color: rgba(36, 167, 203, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

/* Стили для карточки обмена */
.promo-card--exchange {
    grid-column: span 1;
}

.promo-card--wide {
    grid-column: 1 / -1;
}

.promo-card__exchange-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
    padding: 1.5em 0;
}

.promo-card__exchange-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    flex: 1;
}

.promo-card__exchange-img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(36, 167, 203, 0.4));
}

.promo-card__title--exchange {
    margin-bottom: 0.2em;
    font-size: 32px;
    line-height: 1.3;
}

.promo-card__visual--exchange {
    flex: 1;
    display: flex;
    justify-content: center;
}

.promo-card__exchange-lead {
    font-family: "Exo 2", sans-serif;
    font-size: 18px;
    color: #A9C9D2;
}

.promo-card__exchange-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.promo-card__exchange-benefits li {
    font-size: 14px;
    color: #E6F7FF;
    opacity: 0.9;
    padding-left: 1.4em;
    position: relative;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.promo-card__exchange-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background: #24A7CB;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.promo-card__exchange-cylinders {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.promo-card__exchange-cylinders .promo-card__exchange-img--second {
    margin-left: -18px;
}

.promo-card__exchange-label {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #A9C9D2;
    text-align: center;
    line-height: 1.3;
}

.promo-card__exchange-arrow {
    font-size: 36px;
    font-weight: bold;
    color: #24A7CB;
    flex-shrink: 0;
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.promo-card__exchange-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(36, 167, 203, 0.3), transparent);
    margin: 1em 0;
}

.promo-card__exchange-alternative {
    text-align: center;
    padding: 1.2em;
    background: rgba(36, 167, 203, 0.08);
    border: 1px solid rgba(36, 167, 203, 0.2);
    border-radius: 8px;
    width: min(340px, 100%);
}

.promo-card__exchange-alternative--inline {
    display: flex;
    align-items: center;
    gap: 1em;
    text-align: left;
}

.promo-card__exchange-text {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: #A9C9D2;
    margin-bottom: 0.5em;
    font-weight: 300;
}

.promo-card__exchange-visual {
    max-width: 420px;
    width: 100%;
    padding: 0.8em 0;
    gap: 1em;
}

/* Адаптивность */
@media (max-width: 991px) {
    .promo-card--wide {
        grid-column: span 1;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .promo-section {
        padding: 3em 1em;
    }
    
    .promo-section__title {
        font-size: 32px;
    }

    .promo-card__content--exchange {
        flex-direction: column;
    }

    .promo-card__info--exchange {
        text-align: left;
        align-items: flex-start;
        width: 100%;
        padding-top: 2.5em;
    }

    .promo-card__exchange-benefits li {
        padding-left: 1.4em;
    }

    .promo-card__exchange-benefits li::before {
        display: block;
    }

    .promo-card__exchange-alternative--inline {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .promo-card__visual--exchange {
        width: 100%;
    }

    .promo-card__exchange-visual {
        max-width: 100%;
        padding: 0.5em 0;
    }
}

@media (max-width: 768px) {
    .promo-card__exchange-visual {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.8em;
        align-items: center;
        justify-content: space-between;
    }

    .promo-card__exchange-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .promo-card__exchange-arrow {
        transform: none;
        margin: 0 0.4em;
    }

    .promo-card__exchange-img {
        width: 70px;
    }

    .promo-card__title--exchange {
        font-size: 26px;
        text-align: left;
    }

    .promo-card__exchange-lead {
        text-align: left;
        font-size: 15px;
    }

    .promo-card__exchange-benefits {
        align-items: flex-start;
    }

    .promo-card__exchange-benefits li {
        text-align: left;
    }

    .promo-card__exchange-alternative--inline {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .promo-card__exchange-alternative--inline .promo-card__price {
        margin: 0;
    }

    .promo-card__price--buyout .promo-card__price-value {
        font-size: 26px;
    }

    .promo-card__button {
        margin-top: 1.5em;
    }

    .promo-card__badge {
        top: 12px;
        right: 12px;
    }

    .promo-card__cylinders--three {
        gap: 0.3em;
    }

    .promo-card__cylinders--two {
        gap: 0.4em;
    }

    .promo-card__cylinders--three .promo-card__cylinder-img {
        width: 85px;
    }

    .promo-card__cylinders--two .promo-card__cylinder-img {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .promo-card__exchange-visual {
        gap: 0.6em;
    }

    .promo-card__exchange-img {
        width: 60px;
    }

    .promo-card__exchange-arrow {
        margin: 0 0.25em;
    }

    .promo-card__exchange-lead {
        font-size: 14px;
    }

    .promo-card__exchange-alternative--inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4em;
    }

    .promo-card__price--buyout .promo-card__price-value {
        font-size: 24px;
    }
}

/* ===== СОВРЕМЕННЫЙ ДИЗАЙН СЕКЦИИ FEATURES ===== */
.features {
    padding: 4em 2em;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: visible;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1600px;
    height: 1000px;
    background-image: url("/img/haze2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 0.1;
    filter: blur(2px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 50% at center, black 30%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at center, black 30%, transparent 60%);
}

.features-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
    gap: 3em;
    position: relative;
    z-index: 2;
}

.feature-text {
    flex: 1;
    font-family: "Exo 2", sans-serif;
    color: #A9C9D2;
}

.feature-title {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 42px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 1em;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 2px 2px 9px rgba(0, 234, 255, 0.25);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 2px 2px 9px rgba(0, 234, 255, 0.5);
    }
}

.feature-description {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A9C9D2;
    line-height: 1.6;
    margin-bottom: 1em;
}

.feature-effect {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #c1f1ff;
    line-height: 1.6;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    flex: 1;
    max-width: 600px;
}

/* ===== СОВРЕМЕННЫЕ КАРТОЧКИ FEATURES ===== */
.feature-card {
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    border: 2px solid rgba(36, 167, 203, 0.3);
    border-radius: 16px;
    padding: 1.5em 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-height: 100px;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 167, 203, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(36, 167, 203, 0.6);
    box-shadow: 0 12px 40px rgba(36, 167, 203, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.feature-card__text {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    color: #00d4ff;
    line-height: 1.4;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.feature-card:hover .feature-card__text {
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

.reservation {
    display: flex;
    justify-content: center;
    padding: 3em 1em;
}

.reservation-box {
    display: flex;
    gap: 2em;
    background-image: url('/img/reservation.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #0F1419;
    background-blend-mode: normal;
    padding: 3em;
    border-radius: 20px;
    max-width: 850px;
    width: 100%;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    color: #A9C9D2;
    
}

.reservation-left {
    flex: 1;
}

.reservation-left h2 {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 1em;
}

.cyan {
    color: #24A7CB;
}

.reservation-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reservation-right label {
    margin-bottom: 0.5em;
    font-size: 0.95em;
    color: #c1f1ff;
}

.reservation-right input {
    padding: 1em;
    background: #A9C9D2;
    border: 2px solid #24A7CB;
    border-radius: 6px;
    font-size: 1em;
    margin-bottom: 1em;
    width: 300px;
}

.btn-reserve {
    background: url('/img/button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #0F1419;
    background-blend-mode: normal;
    padding: 1em 2em;
    color: #24A7CB;
    font-weight: bold;
    font-size: 1em;
    border: none;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    filter: none;
}

.faq {
    padding: 2em;
    background: #08131e;
    align-items: center;
    text-align: left;
}

.faq h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #24A7CB;
    text-shadow: 2px 2px 9px rgba(0, 234, 255, 0.25);
}

.accordion {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    background: url('/img/accordion2.png') center/100% 100% no-repeat;
    background-color: #0F1419;
    background-blend-mode: normal;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #A9C9D2;
    padding: 0 1.5em;
    height: 80px;
    border: none;
    cursor: pointer;
}


.accordion-btn .arrow {
    width: 32px;
    height: 32px;
    background: url('/img/arrow.png') no-repeat center/contain;
    transition: transform 0.3s ease;
}

.accordion-btn.active .arrow {
    transform: rotate(90deg);
}

.accordion-panel {
    display: none;
    padding: 3em 1.5em 1.5em;
    margin-top: -25px;
    width: 100%;
    background: url('/img/accordion4.png') center/100% 100% no-repeat;
    background-color: #0F1419;
    background-blend-mode: normal;

    /* ВАЖНО: блок сам подстраивается под высоту текста */
    height: auto;       /* можно вообще не писать, это значение по умолчанию */
    min-height: 90px;   /* чтобы короткие ответы не были меньше исходного размера */
    box-sizing: border-box;
    font-size: 14px;
}

.text-block {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.box h2 {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #24A7CB;
    text-shadow: 2px 2px 9px rgba(0, 234, 255, 0.25);
    margin-bottom: 15px;
    text-align: center;
}

.short-text {
    font-family: "Exo 2", sans-serif;
    color: #A9C9D2;
}

.fade-text {
    position: relative;
    max-height: 150px;
    overflow: hidden;
}

.fade-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(15,20,25,0) 0%, rgba(15,20,25,1) 100%);
}

.more-text {
    display: none;
}

.read-more-btn {
    margin-top: 1em;
    background: url('/img/button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #0F1419;
    background-blend-mode: normal;
    padding: 1em 2em;
    color: #24A7CB;
    font-weight: bold;
    font-size: 1em;
    border: none;
    cursor: pointer;
    width: 220px;
    box-shadow: none;
    outline: none;
    filter: none;
}

.read-more-btn.active {
    color: #00d4ff;
}

.fade-text.expanded {
    max-height: none; 
}

.fade-text.expanded::after {
    display: none; 
}

.custom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 3em;
    color: #cce7f1;
    font-family: Arial, sans-serif;
    background-color: #08131e;
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
}

.footer-left {
    gap: 10px;
}

.footer-logo {
    width: 40px;
    height: auto;
}

.footer-center {
    flex-direction: row;
    text-align: left;
    gap: 2em;
    margin: 0 20px
}

.footer-center p {
    text-align: left;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    color: #A9C9D2;
}

.footer-center a {
    font-family: "Exo 2", sans-serif;
    font-weight: 300;
    color: #A9C9D2;
    text-decoration: underline;
}

.footer-right {
    gap: 15px;
}

.phone {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.telegram img {
    width: 32px;
    height: 32px;
}

/* ====== МОДАЛКА БРОНИРОВАНИЯ (ОБНОВЛЕНО) ====== */

.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none; /* скрыта по умолчанию */
}

.reservation-modal.is-open {
    display: block;
}

/* тёмный фон всей страницы под попапом */
.reservation-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

/* внешний контейнер попапа */
.reservation-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 850px;              /* как .reservation-box */
    padding: 0;                     /* всё пространство отдаём форме */

    background-color: #0f1419;      /* чёрная подложка под прозрачной картинкой */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);

    display: flex;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
}

/* сама коробка формы внутри попапа */
.reservation-box--modal {
    margin: 0;
    max-width: 850px;               /* синхронизировано с секцией */
    width: 100%;
}

/* крестик закрытия — по правому краю попапа, по центру по вертикали */
.reservation-modal__close {
    position: absolute;
    top: 0%;
    right: -40px;                   /* вынесен чуть за правый край */
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #24A7CB;                 /* фирменный голубой */
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
}

/* чтобы на очень узких экранах крестик не уезжал слишком далеко */
@media (max-width: 600px) {
    .reservation-modal__close {
        right: -20px;
        font-size: 24px;
    }

    .reservation-modal__content {
        max-width: 95%;
    }
    
    .header-icons {
        gap: 0.625rem;
        padding: 1rem;
    }

    .icon-container {
        min-width: 68.75px;
        max-width: 68.75px;
    }
}

/* блокируем прокрутку страницы, когда модалка открыта */
body.modal-open {
    overflow: hidden;
}

.input-error {
    margin-top: 4px;
    font-size: 12px;
    color: #ff5b5b;
    min-height: 16px; /* чтобы не прыгала верстка, когда ошибки нет */
}

.input-error.hidden {
    display: none;
}

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

.input-error + .btn-reserve {
    margin-top: 8px;
}

/* подсветка невалидного поля */
.input-invalid {
    border: 1px solid #ff5b5b !important;
}

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

@media (max-width: 1024px) {
    .header {
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 930px) {
    .hero-content {
        gap: 0.1em;
    }
}

@media (max-width: 899px) {
    .header {
        justify-content: flex-start;
        gap: 15px;
    }

    .desktop-logo {
        margin-right: auto;
    }

    .phone {
        order: 2;
    }

    .burger {
        order: 3;
    }

    .hero-text h1 {
        text-align: center;
    }

    .hero-text p {
        text-align: center;
    }

    .hero::before {
        top: 50%;
    }
}


@media (max-width: 820px) {
    .features {
        padding: 3em 1.5em;
    }

    .features-content {
        flex-direction: column;
        gap: 2em;
    }

    .feature-text {
        text-align: center; 
        margin-bottom: 0;
    }

    .feature-title {
        font-size: 36px;
    }

    .feature-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 30px;
    }

    .logo_name {
        font-size: 18px;
    }

    .phone {
        font-size: 18px;
    }

    .telegram-icon img {
        width: 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .delivery-info {
        flex-direction: column;
        align-items: center;
    }

    .reservation-box {
        padding: 2em 1em;
        gap: 1em;
    }

    .reservation-right input {
        width: 90%;
    }

    .accordion {
        width: 100%;
    }

    .custom-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5em;
    }

    .footer-center {
        flex-direction: column;
        gap: 1em;
    }

    .footer-center p {
        text-align: center;
    }

    .footer-center a {
            text-align: center;
    }
    .accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left; /* на всякий случай */
}

.accordion-text {
    flex: 1;              /* занимает всё место до стрелки */
    text-align: left;     /* все строки внутри по левому краю */
    margin-right: 1em;    /* небольшой отступ от стрелки */
}
}

@media (max-width: 560px) {
    .reservation-box {
        flex-direction: column;
    }

    .reservation-left h2 {
        text-align: center;
        margin-bottom: 10px
    }

    .read-more-btn {
        display: block;
        margin: 1em auto 0;
    }
}

@media (max-width: 480px) {
    .hero::before {
        top: 45%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-btn {
        flex-direction: column;
        gap: 0.8em;
        align-items: center;
        width: 100%;
    }

    .delivery-info-card {
        width: auto;
        max-width: 240px;
        justify-content: center;
        padding: 0.5em 0.9em;
        gap: 0.5em;
    }

    .delivery-info-card__text {
        align-items: center;
        text-align: center;
        gap: 0.05em;
    }

    .delivery-info-card__label {
        font-size: 11px;
    }

    .delivery-info-card__time {
        font-size: 12px;
    }

    .img-car {
        width: 36px;
        height: 36px;
    }

    .catalog h2,
    .faq h2,
    .feature-title {
        font-size: 28px;
    }

    .product-card {
        max-width: 90%;
    }

    .features {
        padding: 2em 1em;
    }

    .features-content {
        gap: 1.5em;
    }

    .feature-title {
        font-size: 28px;
        margin-bottom: 0.8em;
    }

    .feature-description,
    .feature-effect {
        font-size: 14px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1em;
        max-width: 100%;
    }

    .feature-card {
        min-height: 90px;
        padding: 1.2em 1em;
    }

    .feature-card__text {
        font-size: 16px;
    }

    .reservation-right input {
        width: 100%;
    }

    .accordion-btn {
        font-size: 14px;
        background: url('/img/accordion4.png') center/100% 100% no-repeat;
    }
.accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left; /* на всякий случай */
}

.accordion-text {
    flex: 1;              /* занимает всё место до стрелки */
    text-align: left;     /* все строки внутри по левому краю */
    margin-right: 1em;    /* небольшой отступ от стрелки */
}
    .accordion-panel {
        font-size: 14px;
        padding: 3em 1.5em 1.5em;
        background: url('/img/accordion4.png') center/100% 100% no-repeat;
    }

    .box h2 {
        font-size: 24px;
    }

    .short-text {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .header {
        padding: 1em;
    }

    .logo_name {
        font-size: 14px;
    }

    .phone {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .accordion-btn {
        font-size: 14px;
    }

    .accordion-panel {
        font-size: 12px;
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}

.burger span {
    display: block;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
}

@media (max-width: 899px) {
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: #08131e;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 200px;
        display: none;
        border: 1px solid #00d4ff;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

/* ===== ИКОНКИ — ЛЕДЯНОЕ ОФОРМЛЕНИЕ ===== */

.icon-container {
    background-color: rgba(15, 20, 25, 0.95); /* тёмный фон, как у модалки */
    color: #24A7CB;                          /* фирменный ледяной голубой */
    border: 1px solid rgba(36, 167, 203, 0.35); /* лёгкое светящееся обрамление */
    box-shadow: 0 0 15px rgba(36, 167, 203, 0.45);
}

/* при наведении — чуть ярче */
.icon-container:hover {
    box-shadow: 0 0 22px rgba(36, 167, 203, 0.75);
}

/* перекрашиваем SVG иконки */
.icon-container svg {
    width: 45px;
    height: 45px;
}

/* Viber - фиолетовый фон */
.icon-container.viber svg rect {
    fill: #665CAC !important;
    stroke: none !important;
}

/* Telegram - синий фон и оригинальные цвета путей */
.icon-container.telegram svg rect {
    fill: #37aee2 !important;
    stroke: none !important;
}

/* Сохраняем оригинальные цвета путей Telegram для эффекта объема */
.icon-container.telegram svg path:nth-of-type(1) {
    fill: #c8daea !important;
}

.icon-container.telegram svg path:nth-of-type(2) {
    fill: #a9c9dd !important;
}

.icon-container.telegram svg path:nth-of-type(3) {
    fill: #f6fbfe !important;
}

/* WhatsApp - зеленый фон и оригинальные цвета путей */
.icon-container.whatsapp svg rect {
    fill: #25D366 !important;
    stroke: none !important;
}

/* Сохраняем оригинальные цвета путей WhatsApp */
.icon-container.whatsapp svg path:nth-of-type(1) {
    fill: #25D366 !important;
    stroke: #ffffff !important;
    stroke-width: 26 !important;
}

.icon-container.whatsapp svg path:nth-of-type(2) {
    fill: #ffffff !important;
}

/* Viber - белые пути для контраста */
.icon-container.viber svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}
.icon-container.phone img {
    width: 45px;
    height: 45px;
    display: block;
    object-fit: contain;
    filter: hue-rotate(-120deg) saturate(1.3);
}

/* если какие-то иконки используют stroke вместо fill */
.icon {
    fill: #24A7CB;
    stroke: #24A7CB;
}

/* ===== ЭФФЕКТ НАЛЕДИ ДЛЯ ИКОНКИ ===== */
.icon-container {
    position: relative;
    overflow: hidden; /* важно для внутреннего инея */
    background: rgba(15, 20, 25, 0.95);
    color: #24A7CB;
    border-radius: 10px; /* или 50% для круга */

    border: 1px solid rgba(180, 240, 255, 0.55);
    box-shadow:
        inset 0 0 12px rgba(180, 240, 255, 0.65),   /* внутренний ледяной свет */
        0 0 14px rgba(36, 167, 203, 0.45);          /* внешнее свечение */

    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* ИНЕЙ — через псевдоэлемент */
.icon-container::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: 
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.08) 0px,
            rgba(255,255,255,0.08) 1px,
            rgba(255,255,255,0.02) 3px,
            rgba(255,255,255,0.02) 6px
        );

    opacity: 0.25; /* лёгкая "ледяная пыль" */
}

/* Ховер — усиливаем эффект */
.icon-container:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow:
        inset 0 0 16px rgba(200, 255, 255, 0.85),
        0 0 22px rgba(36, 167, 203, 0.85);
}

.icon-container:hover::before {
    opacity: 0.35;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ ДЛЯ ПРИВЛЕКАТЕЛЬНОСТИ ===== */

/* Старые стили карточек удалены - используются delivery-card */

/* Улучшенные аккордеоны */
.accordion-btn {
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    transform: translateX(5px);
}

/* Пульсирующий эффект для важных элементов */
@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* Улучшенные цены в карточках */
.product-price {
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

/* Градиентные подчеркивания для заголовков */
.box h2 {
    position: relative;
    display: inline-block;
}

.box h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #24A7CB, #00d4ff, transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Улучшенная кнопка "Читать полностью" */
.read-more-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 167, 203, 0.3), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    color: #00d4ff;
    box-shadow: none;
    filter: none;
}

.read-more-btn:hover::before {
    left: 100%;
}

/* Плавное появление секций при скролле - ОТКЛЮЧЕНО для производительности */
section {
    /* animation: fadeInSection 0.8s ease-out; */
}

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

/* Улучшенный логотип */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.logo_name {
    transition: all 0.3s ease;
}

.logo:hover .logo_name {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    color: #00d4ff;
}

/* Улучшенные иконки социальных сетей */
.telegram-icon img {
    transition: all 0.3s ease;
}

.telegram-icon:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(36, 167, 203, 0.6));
}
/* Отключаем фон на мобильных */
@media (max-width: 768px) {
    .hero::before {
        display: none !important;
    }
}

/* Отключаем фон на мобильных */
@media (max-width: 768px) {
    .hero::before {
        display: none !important;
    }
}
