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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255,107,107,0.5); }
    50% { text-shadow: 0 0 40px rgba(255,107,107,0.8); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(20,20,40,0.95) 100%),
                url('https://images.unsplash.com/photo-1561715276-a2d087060f1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,107,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.8s ease;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo span {
    font-size: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    transition: width 0.3s;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 85vh;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,107,107,0.3);
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,107,0.5);
    animation: none;
}

/* Секция преимуществ */
.features {
    padding: 100px 0;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
}

.section-title span {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,107,0.5);
    box-shadow: 0 10px 30px rgba(255,107,107,0.1);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Секция лояльности */
.loyalty {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.loyalty::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 968px) {
    .loyalty-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-list {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 80px;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.benefit-text p {
    color: rgba(255,255,255,0.7);
}

.forms-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 0.8s ease;
}

.form-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.3);
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

.balance-display {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.balance-display p {
    margin: 10px 0;
    font-size: 18px;
}

.balance-display .points {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Меню */
.menu {
    padding: 100px 0;
    background: #0f0f0f;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.6s ease backwards;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,107,0.5);
    box-shadow: 0 10px 30px rgba(255,107,107,0.1);
}

.menu-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-item-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Отзывы */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

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

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.review-name {
    font-weight: 600;
}

.review-stars {
    color: #ffd700;
    margin-top: 5px;
}

/* Футер */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 10px 0;
    color: rgba(255,255,255,0.7);
}

.footer-social a {
    display: inline-block;
    margin-right: 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 24px;
}

.footer-social a:hover {
    color: #ff8e53;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.5s ease;
    border: 1px solid rgba(255,107,107,0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.close:hover {
    color: #ff6b6b;
    transform: rotate(90deg);
}

/* Скролл бар */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8e53;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number {
        font-size: 32px;
        min-width: 60px;
    }
    
    .form-card {
        padding: 25px;
    }

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