/* =================================
   AUDIT PRO MONTRÉAL - STYLES CSS
   Palette: Пурпурный #4B145B, Неоновый лайм #C6FF00, Розовый #FF9AA2
   ================================= */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Предотвращение горизонтальной прокрутки */
*, *::before, *::after {
    max-width: 100%;
}

img, video, iframe, object, embed {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background-color: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Main Content */
.main-content {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4B145B, #6B1B7B);
    color: white;
    box-shadow: 0 4px 15px rgba(75, 20, 91, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 20, 91, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    color: #2A2A2A;
    box-shadow: 0 4px 15px rgba(198, 255, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 255, 0, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2A2A2A;
}

.title-accent {
    background: linear-gradient(135deg, #4B145B, #FF9AA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4B145B, #6B1B7B);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-accept, .cookie-decline {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #C6FF00;
    color: #2A2A2A;
}

.cookie-decline {
    background: rgba(255, 154, 162, 0.2);
    color: white;
    border: 2px solid #FF9AA2;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2A2A2A;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4B145B, #FF9AA2);
    transition: width 0.3s ease;
}

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

.nav-phone {
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    color: #2A2A2A;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 255, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #4B145B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #4B145B 0%, #6B1B7B 50%, #FF9AA2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #C6FF00;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #FF9AA2;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    color: #2A2A2A;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(198, 255, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4B145B;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4B145B, #FF9AA2);
    border-radius: 50%;
    color: white;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: #2A2A2A;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #4B145B 0%, #6B1B7B 100%);
    color: white;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.services .section-title,
.services .section-subtitle {
    color: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    overflow-x: hidden;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1 1 300px;
    min-width: 250px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border: 2px solid #C6FF00;
    transform: none;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #C6FF00;
    color: #2A2A2A;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

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

.service-content h3 {
    margin-bottom: 1rem;
    color: #C6FF00;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-badge {
    background: rgba(198, 255, 0, 0.2);
    color: #C6FF00;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9AA2;
    margin-top: 1rem;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4B145B, #C6FF00);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B145B, #FF9AA2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.advantage-card h4 {
    margin-bottom: 1rem;
    color: #2A2A2A;
}

.advantage-card p {
    color: #666;
    margin: 0;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4B145B, #C6FF00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2A2A2A;
}

.step-content p {
    margin: 0;
    color: #666;
}

/* Trust Section */
.trust {
    background: linear-gradient(135deg, #4B145B 0%, #6B1B7B 100%);
    color: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trust-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #C6FF00;
    margin-bottom: 0.5rem;
}

.trust-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.trust-testimonials h3 {
    margin-bottom: 2rem;
    color: #C6FF00;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    color: #FF9AA2;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-benefits {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4B145B, #FF9AA2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
    color: #2A2A2A;
}

.benefit-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(198, 255, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2A2A2A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C6FF00;
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.1);
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4B145B;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    cursor: pointer;
    color: #666;
}

.checkbox-group label a {
    color: #4B145B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.checkbox-group label a:hover {
    border-bottom-color: #4B145B;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #C6FF00;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C6FF00;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-badge {
    background: rgba(198, 255, 0, 0.2);
    color: #C6FF00;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    color: #FF9AA2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #C6FF00;
}

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

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Merci Page */
.merci-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #4B145B 0%, #6B1B7B 50%, #FF9AA2 100%);
    color: white;
    padding: 120px 0 80px;
}

.merci-content {
    text-align: center;
    margin-bottom: 4rem;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: checkmark 1s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(45deg); }
    50% { transform: scale(1.2) rotate(45deg); }
    100% { transform: scale(1) rotate(45deg); }
}

.checkmark-circle {
    stroke: #C6FF00;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 2s ease-in-out forwards;
}

.checkmark-check {
    stroke: #C6FF00;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 1s ease-in-out 1s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

.merci-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #C6FF00;
}

.merci-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.merci-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: #C6FF00;
}

.info-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.team-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #C6FF00;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 1rem;
}

.avatar-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    color: #C6FF00;
}

.member-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.member-experience {
    font-size: 0.9rem;
    color: #FF9AA2;
    font-weight: 600;
}

.merci-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-contact h3 {
    margin-bottom: 1rem;
    color: #C6FF00;
}

.emergency-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF9AA2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #C6FF00;
}

.contact-icon {
    font-size: 1.2rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #4B145B;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #4B145B;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #C6FF00;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #2A2A2A;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

.cookie-types {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.cookie-types h3 {
    color: #4B145B;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #2A2A2A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    .mobile-menu-toggle:checked ~ .nav .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .contact-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        flex: none;
        width: 100%;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-popup {
        right: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
    }
    
    .merci-text h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 1.5rem;
        flex: none;
        width: 100%;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .merci-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    /* Дополнительная защита от горизонтальной прокрутки на маленьких экранах */
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Убедимся, что все широкие элементы помещаются */
    .hero-content,
    .about-content,
    .services-grid,
    .advantages-grid,
    .process-steps,
    .trust-stats,
    .contact-content,
    .footer-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Дополнительная защита для всех элементов */
    * {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Специальные правила для изображений и медиа */
    img, video, iframe, object, embed,
    .hero-img, .about-img, .service-img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
    
    /* Защита для текстовых элементов */
    h1, h2, h3, h4, h5, h6, p, div, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #C6FF00;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .hero-shapes {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
} 