/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0E27;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Базовые стили для изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    opacity: 0.8;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FF6B9D;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 107, 157, 0.3);
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.main-content {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #2D1B3D 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/vkZ6Vv.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.7) 50%, rgba(45, 27, 61, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #F8B500 50%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stars Animation */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 107, 157, 0.5);
}

.btn:active {
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    text-align: center;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.6);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF6B9D;
}

.card p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FF6B9D;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #E0E0E0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B9D;
}

.checkbox-group a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.step {
    text-align: center;
    padding: 30px;
    position: relative;
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FF6B9D;
}

.step p {
    color: #E0E0E0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.5);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FF6B9D;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 107, 157, 0.3);
    font-family: serif;
}

.testimonial p {
    color: #E0E0E0;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #FF6B9D;
    font-weight: bold;
}

.stars-rating {
    color: #F8B500;
    font-size: 20px;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 107, 157, 0.05);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FF6B9D;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(255, 107, 157, 0.1);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #E0E0E0;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #FF6B9D;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    font-size: 32px;
    color: #FF6B9D;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #FF6B9D;
}

.contact-item-content p {
    color: #E0E0E0;
    margin: 0;
    line-height: 1.6;
}

.contact-item-content a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item-content a:hover {
    opacity: 0.8;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 157, 0.3);
    background: rgba(255, 107, 157, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.main-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #FF6B9D;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section p {
    color: #E0E0E0;
    margin-bottom: 10px;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    color: #E0E0E0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border-top: 2px solid rgba(255, 107, 157, 0.5);
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(255, 107, 157, 0.2);
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #E0E0E0;
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.btn-reject:hover {
    background: rgba(255, 107, 157, 0.2);
    color: #FFFFFF;
}

/* Policy Pages */
.policy-page {
    padding: 100px 20px 80px;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%) 1;
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.policy-container a,
.content-block a,
.thank-you-content a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.policy-container a:hover,
.content-block a:hover,
.thank-you-content a:hover {
    opacity: 0.8;
}

.policy-container h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-container h2 {
    font-size: clamp(22px, 3vw, 28px);
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FF6B9D;
}

.policy-container p {
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-container ul {
    color: #E0E0E0;
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
}

.policy-contact h3 {
    color: #FF6B9D;
    margin-bottom: 15px;
}

.policy-contact p {
    margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    padding: 50px;
}

.thank-you-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content p {
    color: #E0E0E0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Extra Pages (About, Blog, Tips) */
.content-page {
    padding: 100px 20px 80px;
    min-height: calc(100vh - 200px);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.content-block h1 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF6B9D 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block p {
    color: #E0E0E0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-section,
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .policy-container,
    .content-block {
        padding: 30px 20px;
    }
    
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
        font-size: 13px;
        margin-bottom: 0;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cookie {
        flex: 1;
        width: 100%;
        max-width: none;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .features-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Smooth scroll animations - секции видимы по умолчанию */
.section {
    opacity: 1;
    transform: translateY(0);
}

