/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FDFDFD;
    background-color: #1C1B2F;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    color: #1C1B2F;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 248, 5, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FDFDFD;
    border-color: #FDFDFD;
}

.btn-outline:hover {
    background: #FDFDFD;
    color: #1C1B2F;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    background: rgba(28, 27, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(201, 248, 5, 0.3));
}

.logo-link:hover .logo-text {
    filter: drop-shadow(0 0 20px rgba(201, 248, 5, 0.5));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FDFDFD;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #C9F805;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-label span {
    width: 25px;
    height: 3px;
    background: #FDFDFD;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Fix for anchor links being hidden behind fixed header */
section {
    scroll-margin-top: 100px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C1B2F 0%, #2A2847 50%, #1C1B2F 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 248, 5, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(23, 242, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(253, 253, 253, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(253, 253, 253, 0.8);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2A2847 0%, #1C1B2F 100%);
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-text {
    /* padding-right убран для предотвращения горизонтальной прокрутки */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #FDFDFD;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text > p {
    font-size: 1.15rem;
    color: #B8B8B8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 248, 5, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.feature h4 {
    margin-bottom: 0.8rem;
    color: #C9F805;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature p {
    color: #B8B8B8;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1C1B2F 0%, #2A2847 100%);
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
}

.services-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.services-img:hover {
    transform: scale(1.02);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 248, 5, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #C9F805;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #17F2C8;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #2A2847 0%, #1C1B2F 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 248, 5, 0.2);
}

.pricing-card.featured {
    border: 2px solid #C9F805;
    box-shadow: 0 10px 30px rgba(201, 248, 5, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    color: #1C1B2F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #C9F805;
    margin: 1rem 0;
}

.price-period {
    color: rgba(253, 253, 253, 0.7);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #17F2C8;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1C1B2F 0%, #2A2847 100%);
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonials-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonials-img:hover {
    transform: scale(1.02);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 242, 200, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #C9F805;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(253, 253, 253, 0.7);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2A2847 0%, #1C1B2F 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #C9F805;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #aa4444;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C9F805;
    box-shadow: 0 0 10px rgba(201, 248, 5, 0.3);
}

/* Простые чекбоксы */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 10px;
    color: #FDFDFD;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #C9F805;
}

.checkbox-label a {
    color: #17F2C8;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #C9F805;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    color: #C9F805;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #C9F805;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(253, 253, 253, 0.8);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #1C1B2F 0%, #2A2847 100%);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 248, 5, 0.2);
}

.faq-item h3 {
    color: #C9F805;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: rgba(253, 253, 253, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1C1B2F 0%, #0F0E1A 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #C9F805;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(253, 253, 253, 0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(253, 253, 253, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #17F2C8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: rgba(253, 253, 253, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #C9F805;
    transform: translateY(-2px);
}

.contact-info .contact-item p {
    color: #FDFDFD;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(253, 253, 253, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(28, 27, 47, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content h3 {
    color: #C9F805;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-content p {
    color: #FDFDFD;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #C9F805 0%, #17F2C8 100%);
    color: #1C1B2F;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 248, 5, 0.4);
}

.cookie-policy {
    color: #17F2C8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cookie-policy:hover {
    background: rgba(23, 242, 200, 0.1);
}

/* Error Message */
.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.error-message p {
    color: #ff6b6b;
    margin: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text {
        font-size: 1.6rem;
    }

    /* Адаптация секции "À Propos de Nous" для планшетов */
    .about-content {
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .about-text > p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .about-features {
        gap: 1.8rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .feature {
        padding: 1.5rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature h4 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .feature p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

    .about-img {
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(28, 27, 47, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    .mobile-menu-toggle:checked + .mobile-menu-label + .nav-menu {
        transform: translateX(0);
        max-height: 400px;
    }

    .mobile-menu-label {
        display: flex;
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Исправленная мобильная адаптация для секции "À Propos de Nous" */
    .about {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        order: 2;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-image {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .about-img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .about-features {
        gap: 1.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .feature {
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        text-align: center;
    }

    .feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(201, 248, 5, 0.2);
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        align-self: center;
    }

    .feature h4 {
        color: #C9F805;
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #B8B8B8;
        margin: 0;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #FDFDFD;
    }

    .about-text > p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #B8B8B8;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-buttons {
        justify-content: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        padding: 2rem 0;
        scroll-margin-top: 100px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Исправленные стили для очень маленьких экранов */
    .about {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }

    .about-content {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text > p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .about-img {
        max-width: 300px;
        border-radius: 12px;
    }

    .about-features {
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .feature {
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .feature h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .pricing-card,
    .testimonial-card,
    .service-card {
        padding: 1.5rem;
    }

    .form {
        padding: 1.5rem;
    }

    /* Адаптация чекбоксов для мобильных */
    .checkbox-label {
        font-size: 0.9rem;
        gap: 8px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* Дополнительный медиа-запрос для очень маленьких экранов */
@media (max-width: 320px) {
    .checkbox-label {
        font-size: 0.85rem;
        gap: 6px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth animations for page load */
.hero-content,
.service-card,
.pricing-card,
.testimonial-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
input:focus,
select:focus,
button:focus,
a:focus {
    outline: 2px solid #C9F805;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .pricing-card,
    .testimonial-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
} 