:root {
    --bg-dark: #060627;
    --bg-card: #0a0a14;
    --blue: #0a4dff;
    --blue-glow: #0a4dff;
    --blue-light: #2a6eff;
    --blue-dark: #0038cc;
    --orange: #ff4d0a;
    --orange-glow: #ff4d0a;
    --orange-light: #ff6e2a;
    --orange-dark: #cc3a00;
    --text: #eef2ff;
    --text-dim: #8a8fa8;
    --border: rgba(10, 77, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Jura', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 3, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 12px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 66px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: scale(0.9);
}

.logo.animated {
    animation: logoReveal 0.5s ease-out forwards;
}

.logo__img {
    width: 45px;
    height: 45px;
}

.logo__text {
    font-family: 'Days One', sans-serif;
    font-size: 1.15rem;
}

.logo-gradient {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav__link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    position: relative;
}

.nav__link:hover {
    color: var(--orange-light);
    text-shadow: 0 0 8px var(--orange-glow);
}

.header__contacts {
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateX(20px);
}

.header__contacts.animated {
    animation: contactsSlideIn 0.4s ease-out forwards;
}

.header__call, .header__tg {
    width: 38px;
    height: 38px;
    background: rgba(10, 77, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border: 1px solid var(--border);
}

.header__call:hover, .header__tg:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--orange-glow);
}

.call-icon, .tg-icon {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.call-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23eef2ff' stroke-width='2'%3E%3Cpath d='M3 5a2 2 0 0 1 2-2h3.28a1 1 0 0 1 .948.684l1.498 4.493a1 1 0 0 1-.502 1.21l-2.257 1.13a11.042 11.042 0 0 0 5.516 5.516l1.13-2.257a1 1 0 0 1 1.21-.502l4.493 1.498a1 1 0 0 1 .684.949V19a2 2 0 0 1-2 2h-2C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}

.tg-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23eef2ff' stroke-width='2'%3E%3Cpath d='M21.5 4.5L2 12.5l6 2 3 6 2.5-3.5L19 20l2.5-15.5z'/%3E%3Cpath d='M10 14.5L15 19l6-14-12 7-3 3z'/%3E%3C/svg%3E");
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
}

.burger.animated {
    animation: burgerPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--orange);
    transition: 0.2s;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    70% {
        transform: scale(0.95) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes contactsSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes burgerPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/background1.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
    z-index: -2;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(3,3,10,0.1), rgba(3,3,10,0.1));
    z-index: -1;
}

.hero__glow-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
    animation: lineMove 8s linear infinite;
}

.glow-line:nth-child(1) { top: 15%; width: 100%; animation-delay: 0s; opacity: 0.5; }
.glow-line:nth-child(2) { top: 40%; width: 70%; left: 15%; animation-delay: 2s; opacity: 0.3; }
.glow-line:nth-child(3) { top: 71%; width: 85%; left: 7%; animation-delay: 4s; opacity: 0.4; }
.glow-line:nth-child(4) { top: 85%; width: 60%; left: 20%; animation-delay: 6s; opacity: 0.3; }

@keyframes lineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: rgba(10, 77, 255, 0.2);
    border: 1px solid var(--blue);
    border-radius: 40px;
    padding: 15px 55px;
    font-size: 1.3rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(10,77,255,0.3);
}

.hero__title {
    font-family: 'Days One', sans-serif;
    font-size: 5rem;
    margin-bottom: 16px;
}

.title-gradient-orange {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__desc {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-dim);
}

.hero__btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 20px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(10,77,255,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--orange-glow);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--orange-glow);
}

.btn-block {
    display: block;
    text-align: center;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.6;
}

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

.section-title {
    font-family: 'Days One', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about {
    padding: 10px 0;
    background: linear-gradient(180deg, var(--bg-dark), #030318);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about__item {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.2s;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about__item.visible {
    opacity: 1;
    transform: translateX(0);
}

.about__item:nth-child(even) {
    transform: translateX(40px);
}

.about__item:nth-child(even).visible {
    transform: translateX(0);
}

.about__item:hover {
    border-color: var(--orange);
    transform: translateY(-5px) !important;
    box-shadow: 0 0 25px rgba(255,77,10,0.2);
}

.about__icon {
    margin-bottom: 16px;
    color: var(--blue-light);
}

.about__icon svg {
    filter: drop-shadow(0 0 8px var(--blue-glow));
}

.about__item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--orange-light);
}

.about__item p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.prices {
    padding: 40px 0;
    position: relative;
}

.prices::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 250px;
    background-image: url('../img/flag.webp');
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.prices__table {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(10,77,255,0.15);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.prices__table.visible {
    opacity: 1;
    transform: scale(1);
}

.price__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(10, 77, 255, 0.15);
    text-align: center;
}

.price__header {
    background: rgba(10, 77, 255, 0.15);
    font-weight: 700;
    color: var(--orange-light);
    border-bottom: 1px solid var(--blue);
}

.price__value {
    font-weight: 700;
    color: var(--blue-light);
    font-size: 1.1rem;
}

.prices__info {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.prices__info.visible {
    opacity: 1;
    transform: translateY(0);
}

.birthday {
    padding: 40px 0;
    background: url('../img/back.webp') center/cover no-repeat;
    position: relative;
}

.birthday::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 10, 0.92);
    z-index: 0;
}

.birthday .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .birthday {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.birthday__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.tariff {
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    transition: 0.2s;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.2s, box-shadow 0.2s;
}

.tariff.visible {
    opacity: 1;
    transform: translateY(0);
}

.tariff:hover {
    border-color: var(--orange);
    transform: translateY(-3px) !important;
    box-shadow: 0 0 25px rgba(255,77,10,0.2);
}

.tariff__name {
    font-family: 'Days One', sans-serif;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.tariff__price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange-light);
    margin: 10px 0;
}

.tariff__hours {
    font-size: 0.85rem;
    color: var(--blue-light);
    margin-bottom: 8px;
}

.tariff__extra {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.tariff__desc {
    list-style: none;
    margin-top: 12px;
}

.tariff__desc li {
    font-size: 0.75rem;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.tariff__desc li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.tariff-vip {
    border: 2px solid var(--orange);
    box-shadow: 0 0 40px rgba(255,77,10,0.6), 0 0 20px rgba(10,77,255,0.4);
    background: linear-gradient(135deg, rgba(10,10,20,0.95), rgba(255,77,10,0.15));
}

.tariff.premium-glow {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--blue);
    box-shadow: 0 0 15px rgba(10, 77, 255, 0.4), 0 0 5px rgba(255, 77, 10, 0.3);
    background: linear-gradient(145deg, rgba(10, 10, 20, 0.9), rgba(10, 77, 255, 0.1));
}

.tariff.premium-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 77, 10, 0.15), transparent 60%);
    animation: subtlePulse 4s infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes subtlePulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.birthday__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.btn-modal {
    padding: 14px 32px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(4px);
    border: 1.5px solid var(--blue);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50px;
}

.btn-modal:hover {
    background: var(--blue);
    border-color: var(--orange-light);
    box-shadow: 0 0 25px var(--blue-glow);
    transform: translateY(-3px);
    color: white;
}

.btn-icon {
    font-size: 1.3rem;
}

.contacts {
    padding: 40px 0;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts__info {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contacts__info.visible {
    opacity: 1;
    transform: translateX(0);
}

.contacts__map {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contacts__map.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact__block {
    margin-bottom: 24px;
}

.contact__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 6px;
}

.contact__value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact__link {
    color: var(--blue-light);
    text-decoration: none;
}

.contact__link:hover {
    text-decoration: underline;
}

.contact__socials {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 77, 255, 0.15);
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px currentColor;
}

.social-btn--tg:hover {
    background: #2AABEE;
    border-color: #2AABEE;
    color: #2AABEE;
}

.social-btn--wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #25D366;
}

.social-btn--ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
    color: #d6249f;
}

.social-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.tg-white { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69.01-.03.01-.14-.05-.2-.06-.06-.15-.04-.22-.02-.09.02-1.56.99-4.39 2.9-.42.29-.8.43-1.13.42-.37-.01-1.09-.21-1.62-.38-.65-.21-1.17-.32-1.12-.68.02-.19.28-.38.76-.58 2.99-1.3 4.98-2.16 5.97-2.58 2.84-1.18 3.43-1.39 3.82-1.39.08 0 .27.02.39.12.1.08.13.2.14.28.01.08.02.26 0 .4z'/%3E%3C/svg%3E"); }
.wa-white { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.04 2C6.58 2 2.14 6.44 2.14 11.9c0 1.74.46 3.44 1.33 4.94L2.05 22l5.33-1.39c1.44.79 3.07 1.2 4.76 1.2 5.46 0 9.9-4.44 9.9-9.9 0-5.46-4.44-9.91-9.9-9.91zM12 19.72c-1.48 0-2.93-.38-4.2-1.1l-.3-.18-3.16.82.84-3.08-.19-.31c-.79-1.26-1.21-2.72-1.21-4.24 0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath d='M17.33 14.42c-.2-.1-1.17-.58-1.35-.64-.18-.07-.31-.1-.44.1-.13.2-.51.64-.62.77-.11.13-.22.15-.42.05-.2-.1-.84-.31-1.6-.99-.59-.53-.99-1.18-1.11-1.38-.11-.2-.01-.31.09-.41.09-.09.2-.24.31-.36.1-.12.13-.2.2-.34.07-.14.03-.26-.02-.36-.05-.1-.44-1.06-.6-1.45-.16-.38-.32-.33-.44-.33-.11 0-.24-.01-.37-.01-.13 0-.34.05-.52.24-.18.19-.68.66-.68 1.62 0 .96.7 1.89.8 2.02.1.13 1.38 2.1 3.34 2.94 1.96.84 1.96.56 2.31.53.35-.04 1.13-.46 1.29-.91.16-.45.16-.83.11-.91-.05-.08-.18-.13-.38-.23z'/%3E%3C/svg%3E"); }
.ig-white { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4c0 3.2-2.6 5.8-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8C2 4.6 4.6 2 7.8 2zm-.2 2C5.6 4 4 5.6 4 7.6v8.8C4 18.4 5.6 20 7.6 20h8.8c2 0 3.6-1.6 3.6-3.6V7.6C20 5.6 18.4 4 16.4 4H7.6zm9.65 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E"); }

.contacts__buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.faq {
    padding: 40px 0;
    position: relative;
    background: #050510;
}

.faq::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('../img/hlem.webp');
    background-size: 100% 100%;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

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

.faq__item {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 16px;
    padding: 20px;
    border-left: 3px solid var(--blue);
    transition: 0.2s;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-left-color 0.2s, box-shadow 0.2s;
}

.faq__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq__item:hover {
    border-left-color: var(--orange);
    box-shadow: 0 0 20px rgba(255,77,10,0.1);
}

.faq__question {
    font-weight: 700;
    font-size: 1rem;
    color: var(--orange-light);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq__answer {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.footer {
    background: linear-gradient(rgba(2,2,8,0.75), rgba(2,2,8,0.75)), url('../img/background-footer.webp');
    background-size: cover;
    background-position: center;
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer__col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__col.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer__logo {
    font-family: 'Days One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-gradient {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer__col p, .footer__col a {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.footer__col a:hover {
    color: var(--orange);
}

.footer__col h4 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.footer__bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 18, 0.9);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.modal__container {
    position: relative;
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(10, 77, 255, 0.3), 0 0 20px rgba(255, 77, 10, 0.2);
    z-index: 10;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    overflow: hidden;
}

.modal.active .modal__container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(4px);
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--orange-glow);
}

.modal__content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 85vh;
    overflow-y: auto;
}

.modal__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    display: block;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.gallery {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.gallery__slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 10px;
    border-radius: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery__slides::-webkit-scrollbar {
    display: none;
}

.gallery__image {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    max-height: 70vh;
    background: #050510;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid var(--blue);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    font-size: 24px;
    transition: 0.2s;
    z-index: 15;
}

.gallery__nav:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 20px var(--orange-glow);
}

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

.gallery__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.3);
    border: 1px solid var(--border);
    transition: 0.2s;
    cursor: pointer;
}

.gallery__dot.active {
    background: var(--orange);
    width: 28px;
    box-shadow: 0 0 12px var(--orange-glow);
    border-color: var(--orange);
}

.car-runner {
    position: absolute;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    z-index: 200;
    pointer-events: none;
}

.car-runner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--orange)) drop-shadow(0 0 5px var(--blue));
}

.car-runner.animate {
    animation: carDrive 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes carDrive {
    0% {
        left: -180px;
    }
    100% {
        left: calc(100% + 80px);
    }
}

@media (min-width: 769px) {
    .logo, .header__contacts, .burger {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

@media (max-width: 1000px) {
    .hero__title { font-size: 3.5rem; }
    .about__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero__bg {
        background-image: url('../img/background2.webp');
    }
    .hero {
        min-height: 88vh;
    }
    .hero__container {
        padding-top: 60px;
    }
    .hero__title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .hero__desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .hero__badge {
        margin-bottom: 20px;
        font-size: 1rem;
        padding: 5px 40px
    }
    .hero__scroll {
        bottom: 15px;
        display: none;
    }
    .nav {
        position: fixed;
        top: 66px;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(3,3,10,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 40px 30px;
        transition: 0.3s;
        gap: 20px;
        border-right: 1px solid var(--border);
    }
    .nav.active { left: 0; }
    .burger {
        display: flex;
    }
    .hero__title { font-size: 3rem; }
    .hero__desc { font-size: 1.3rem; }
    .hero__btns { flex-direction: column; align-items: center; gap: 12px; }
    .about__grid { grid-template-columns: 1fr; gap: 16px; }
    .about__item { padding: 18px; }
    .contacts__grid { grid-template-columns: 1fr; }
    .faq__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .price__row { padding: 10px 16px; font-size: 0.9rem; }
    .birthday__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tariff { padding: 12px; }
    .tariff__name { font-size: 0.9rem; }
    .tariff__price { font-size: 1.1rem; margin: 5px 0; }
    .tariff__hours { font-size: 0.8rem; }
    .tariff__extra { font-size: 0.8rem; }
    .tariff__desc li { font-size: 0.65rem; padding: 2px 0 2px 14px; }
    .tariff-vip {
        grid-column: span 1;
        justify-self: center;
        width: 60%;
    }
    .birthday__grid .tariff-vip:last-child {
        grid-column: span 2;
        justify-self: center;
        max-width: 100%;
    }
    .birthday__actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-modal {
        width: 80%;
        justify-content: center;
    }
    .modal__container {
        width: 95%;
    }
    .gallery__nav {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .birthday__grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
    }
    .tariff { padding: 10px; }
    .tariff__name { font-size: 1.2rem; }
    .tariff__price { font-size: 1.15rem; }
    .tariff__desc li { font-size: 0.8rem; }
    .tariff-vip {
        grid-column: span 1;
        justify-self: center;
        width: 65%;
    }
    .birthday__grid .tariff-vip:last-child {
        grid-column: span 2;
        justify-self: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 8px; }
    .hero__title { font-size: 2.7rem; }
    .section-title { font-size: 1.6rem; margin-bottom: 32px; }
    .price__row { font-size: 0.8rem; padding: 8px 12px; }
    .contacts__buttons { flex-direction: column; }
    .birthday__grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .tariff { padding: 12px; }
    .tariff__name { font-size: 1.2rem; }
    .tariff__price { font-size: 1.15rem; }
    .tariff__hours { font-size: 0.8rem; }
    .tariff__extra { font-size: 0.8rem; }
    .tariff__desc { display: block; }
    .tariff__desc li { font-size: 0.8rem; padding: 3px 0 3px 14px; }
    .tariff-vip {
        grid-column: span 1;
        justify-self: center;
        width: 70%;
    }
    .birthday__grid .tariff-vip:last-child {
        grid-column: span 2;
        justify-self: center;
        max-width: 100%;
    }
    .glow-line:nth-child(2){
        top: 43%;
    }
    .glow-line:nth-child(3){
        top: 79%;
    }
}

@media (min-width: 769px) {
    .birthday__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .tariff-vip {
        grid-column: span 1;
        justify-self: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tariff-vip:last-child {
        grid-column: 2 / 3;
        width: 100%;
    }
}