/* AuditExpert Canada - Styles CSS Complets */
/* Palette: Indigo #1C1F4A, Lime #C6FF00, Mint #00F9B8 */

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    background: linear-gradient(135deg, #1C1F4A 0%, #2D3561 50%, #1C1F4A 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: rgba(28, 31, 74, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 255, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #E5E5E5;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #C6FF00;
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, #C6FF00, #00F9B8) !important;
    color: #1C1F4A !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(198, 255, 0, 0.3);
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #C6FF00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MAIN ===== */
.main {
    margin-top: 80px;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(198, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 249, 184, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8, #E5E5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(229, 229, 229, 0.9);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(198, 255, 0, 0.1);
    color: #C6FF00;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ===== BOUTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    color: #1C1F4A;
    box-shadow: 0 6px 20px rgba(198, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #E5E5E5;
    border: 2px solid #00F9B8;
}

.btn-secondary:hover {
    background: #00F9B8;
    color: #1C1F4A;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #C6FF00;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== À PROPOS ===== */
.about {
    background: rgba(45, 53, 97, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about h2::after {
    margin: 15px 0;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(229, 229, 229, 0.9);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00F9B8;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== AVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: rgba(28, 31, 74, 0.6);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(198, 255, 0, 0.05), rgba(0, 249, 184, 0.05));
    transition: left 0.5s ease;
    z-index: -1;
}

.advantage-card:hover::before {
    left: 0;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(198, 255, 0, 0.3);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-card h3 {
    color: #C6FF00;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== SERVICES ===== */
.services {
    background: rgba(45, 53, 97, 0.2);
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(229, 229, 229, 0.8);
    margin-bottom: 50px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: rgba(28, 31, 74, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(198, 255, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border: 2px solid #C6FF00;
    box-shadow: 0 0 30px rgba(198, 255, 0, 0.2);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    color: #1C1F4A;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.service-header h3 {
    color: #C6FF00;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-price {
    color: #00F9B8;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-features {
    padding: 30px;
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(229, 229, 229, 0.9);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00F9B8;
    font-weight: bold;
}

.service-duration {
    padding: 0 30px 30px;
    color: #C6FF00;
    font-weight: 500;
    font-style: italic;
}

/* ===== PROCESSUS ===== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(28, 31, 74, 0.4);
    border-radius: 15px;
    border-left: 4px solid #C6FF00;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(28, 31, 74, 0.6);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    color: #1C1F4A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #C6FF00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ===== FORMULAIRE COMMANDE - NOUVEAU DESIGN ===== */
.contact-form {
    background: linear-gradient(135deg, rgba(28, 31, 74, 0.95) 0%, rgba(45, 53, 97, 0.85) 100%);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(198, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 249, 184, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(198, 255, 0, 0.3);
}

.form-header p {
    color: rgba(229, 229, 229, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Formulaire Principal */
.order-form {
    background: rgba(28, 31, 74, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(198, 255, 0, 0.2);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C6FF00, #00F9B8, #C6FF00);
    animation: glow-border 3s ease-in-out infinite;
}

@keyframes glow-border {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Champs de saisie */
.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.input-group {
    position: relative;
}

.input-group label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 10px;
    z-index: 3;
}

.input-group input {
    width: 100%;
    padding: 25px 20px;
    background: rgba(28, 31, 74, 0.6);
    border: 2px solid rgba(198, 255, 0, 0.3);
    border-radius: 15px;
    color: #E5E5E5;
    font-size: 1.1rem;
    font-weight: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.input-group input:focus {
    outline: none;
    border-color: #C6FF00;
    background: rgba(28, 31, 74, 0.8);
    box-shadow: 0 0 30px rgba(198, 255, 0, 0.2),
                inset 0 0 20px rgba(0, 249, 184, 0.1);
    transform: translateY(-2px);
}

.input-group input::placeholder {
    color: rgba(229, 229, 229, 0.5);
    transition: all 0.3s ease;
}

.input-group input:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}

/* Sélection des prix */
.price-selection {
    margin-bottom: 50px;
}

.price-selection h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #C6FF00;
    margin-bottom: 30px;
    position: relative;
}

.price-selection h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C6FF00, #00F9B8);
    border-radius: 2px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price-option {
    position: relative;
    cursor: pointer;
}

.price-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.price-card {
    background: rgba(28, 31, 74, 0.4);
    border: 2px solid rgba(198, 255, 0, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8, #C6FF00);
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.price-option:hover .price-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 249, 184, 0.2);
}

.price-option input[type="radio"]:checked + .price-card {
    border-color: transparent;
    background: rgba(28, 31, 74, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(198, 255, 0, 0.3);
}

.price-option input[type="radio"]:checked + .price-card::before {
    opacity: 1;
    animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-header h4 {
    font-size: 1.3rem;
    color: #C6FF00;
    font-weight: 600;
}

.price-header .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00F9B8;
    text-shadow: 0 0 10px rgba(0, 249, 184, 0.5);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features span {
    color: rgba(229, 229, 229, 0.8);
    font-size: 0.95rem;
    padding-left: 8px;
    position: relative;
}

.price-features span::before {
    content: '✓';
    position: absolute;
    left: -15px;
    color: #00F9B8;
    font-weight: 600;
}

/* Новые чекбоксы с нуля */
.form-agreements {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(45, 53, 97, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(198, 255, 0, 0.1);
}

.checkbox-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper:last-child {
    margin-bottom: 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #C6FF00;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-wrapper label {
    color: #E5E5E5;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.checkbox-wrapper label a {
    color: #00F9B8;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-wrapper label a:hover {
    color: #C6FF00;
}

/* Bouton de soumission */
.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    color: #1C1F4A;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 20px auto 0;
    min-width: 280px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 255, 0, 0.4);
    background: linear-gradient(45deg, #00F9B8, #C6FF00);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(198, 255, 0, 0.3);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(28, 31, 74, 0.6);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(198, 255, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(198, 255, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(229, 229, 229, 0.9);
}

.testimonial-author {
    margin-bottom: 15px;
}

.testimonial-author strong {
    color: #C6FF00;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(229, 229, 229, 0.7);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #C6FF00;
    font-size: 1.2rem;
}

/* ===== CONTACT ===== */
.contact {
    background: rgba(45, 53, 97, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    color: #C6FF00;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(198, 255, 0, 0.1);
}

.contact-item strong {
    color: #00F9B8;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #E5E5E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #C6FF00;
}

.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== PAGE MERCI ===== */
.thank-you-page {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Animations SVG */
.success-animation, .error-animation {
    margin-bottom: 40px;
}

.checkmark, .error-mark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    stroke-width: 3;
    stroke: #C6FF00;
    stroke-miterlimit: 10;
    animation: checkmark-animation 1s ease-in-out;
}

.checkmark-circle, .error-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke: #C6FF00;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.error-cross {
    stroke: #ff4757;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-animation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.next-steps, .contact-alternatives {
    background: rgba(28, 31, 74, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h3, .contact-alternatives h3 {
    color: #C6FF00;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps li::before {
    content: attr(data-emoji);
    position: absolute;
    left: 0;
}

.contact-direct {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 15px 25px;
    background: rgba(198, 255, 0, 0.1);
    color: #C6FF00;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(198, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(198, 255, 0, 0.2);
    transform: translateY(-2px);
}

.cta-section {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section équipe */
.team-section {
    margin-top: 80px;
    padding: 50px 0;
    border-top: 1px solid rgba(198, 255, 0, 0.2);
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-header h2 {
    color: #C6FF00;
    margin-bottom: 10px;
}

.team-subtitle {
    color: rgba(229, 229, 229, 0.8);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    background: rgba(28, 31, 74, 0.4);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(28, 31, 74, 0.6);
    transform: translateY(-5px);
}

.team-member h4 {
    color: #00F9B8;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.team-commitment {
    background: rgba(28, 31, 74, 0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commitment-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(28, 31, 74, 0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 255, 0, 0.3);
}

.contact-card h3 {
    color: #C6FF00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card a {
    color: #00F9B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: #C6FF00;
}

/* ===== PAGES LÉGALES ===== */
.legal-page {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-title {
    font-size: 2.5rem;
    color: #C6FF00;
    margin-bottom: 15px;
}

.legal-date {
    color: rgba(229, 229, 229, 0.7);
    font-style: italic;
}

.legal-content {
    background: rgba(28, 31, 74, 0.4);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(198, 255, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #C6FF00;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 2px solid rgba(198, 255, 0, 0.3);
    padding-bottom: 10px;
}

.legal-section h2::after {
    display: none;
}

.legal-section h3 {
    color: #00F9B8;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(229, 229, 229, 0.9);
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    color: rgba(229, 229, 229, 0.8);
}

.contact-info {
    background: rgba(45, 53, 97, 0.3);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #C6FF00;
    margin-top: 20px;
}

.contact-info a {
    color: #00F9B8;
    text-decoration: none;
}

.contact-info a:hover {
    color: #C6FF00;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(28, 31, 74, 0.8);
    border-top: 1px solid rgba(198, 255, 0, 0.2);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #C6FF00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(229, 229, 229, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 8px 0;
}

.footer-section a {
    color: rgba(229, 229, 229, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C6FF00;
}

.legal-links a {
    color: #00F9B8;
}

.legal-links a:hover {
    color: #C6FF00;
}

.footer-bottom {
    border-top: 1px solid rgba(198, 255, 0, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    color: rgba(229, 229, 229, 0.6);
    margin-bottom: 8px;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(28, 31, 74, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(198, 255, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.cookie-content h3 {
    color: #C6FF00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cookie-content p {
    color: rgba(229, 229, 229, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-accept {
    background: linear-gradient(45deg, #C6FF00, #00F9B8);
    color: #1C1F4A;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 255, 0, 0.3);
}

.btn-decline {
    background: transparent;
    color: #E5E5E5;
    border: 1px solid rgba(229, 229, 229, 0.3);
}

.btn-decline:hover {
    background: rgba(229, 229, 229, 0.1);
}

.btn-info {
    color: #00F9B8;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-info:hover {
    color: #C6FF00;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(28, 31, 74, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .mobile-menu-toggle:checked + .mobile-menu-btn + .nav-links {
        left: 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 h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Formulaire - Tablet */
    .form-header h2 {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 30px;
        margin: 0 15px;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .form-agreements {
        padding: 20px;
    }
    
    .submit-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        min-width: 260px;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .submit-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Formulaire - Mobile */
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .order-form {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .input-group input {
        padding: 20px 15px;
        font-size: 16px; /* Предотвращает зум на iOS */
    }
    
    .price-selection h3 {
        font-size: 1.5rem;
    }
    
    .price-grid {
        gap: 15px;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .price-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .price-header h4 {
        font-size: 1.2rem;
    }
    
    .price-header .price {
        font-size: 1.3rem;
    }
    
    .form-agreements {
        padding: 15px;
    }
    
    .checkbox-wrapper label {
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 240px;
        gap: 8px;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-direct {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-footer {
        flex-direction: column;
        align-items: center;
    }
} 