/* Variables */
:root {
    /* Couleurs principales */
    --primary-color: #FF6B35;      /* Orange vif */
    --primary-dark: #E65A2B;       /* Orange foncé */
    --secondary-color: #D4B483;    /* Beige */
    --dark-color: #121212;         /* Noir profond */
    --darker-color: #0A0A0A;       /* Noir plus foncé */
    --light-color: #F5F5F5;        /* Blanc cassé */
    --gray-color: #2D2D2D;         /* Gris foncé */
    --light-gray: #3D3D3D;         /* Gris clair */
    
    /* Typographie */
    --font-main: 'Poppins', sans-serif;
    
    /* Espacements */
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section de marque (Brand) */
.brand-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo .logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-logo .logo:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.brand-logo .logo-accent {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-left: 0.5rem;
}

.brand-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand-menu .nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.brand-menu .nav-links > li > a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0.8rem;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.brand-menu .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-menu .nav-links a:hover {
    color: var(--primary-color);
}

.brand-menu .nav-links a:hover::before,
.brand-menu .nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.brand-menu .nav-links a.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Boutons d'authentification */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-buttons .btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: auto;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.hamburger span:nth-child(1) {
    transform-origin: top left;
}

.hamburger span:nth-child(3) {
    transform-origin: bottom left;
}

/* Animation du bouton burger actif */
.hamburger.active span:first-child {
    transform: translateY(10.5px) rotate(45deg);
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(180deg);
    background: var(--secondary-color);
}

.hamburger.active span:last-child {
    transform: translateY(-10.5px) rotate(-45deg);
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

/* Menu mobile */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .brand-menu {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        padding: 140px 2rem 60px;
        margin: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    }
    
    .nav-links > li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
        transition-delay: calc(var(--item-index) * 0.1s);
    }
    
    .nav-links.active > li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links > li > a {
        display: block;
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .nav-links > li > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
        transition: width 0.3s ease;
        z-index: -1;
    }
    
    .nav-links > li > a:hover::before {
        width: 100%;
    }
    
    .nav-links > li > a:hover {
        color: var(--primary-color);
        padding-left: 3.5rem;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .nav-links > li > a.active {
        color: var(--primary-color);
        background: rgba(255, 107, 53, 0.1);
        border-left: 3px solid var(--primary-color);
    }
    
    /* Boutons d'authentification mobile */
    .nav-links .auth-link {
        margin-top: 3rem;
        padding: 2.5rem;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        width: 100%;
        max-width: 600px;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-links .auth-link a {
        margin: 0.8rem auto;
        max-width: 280px;
        text-align: center;
        border-radius: 25px;
        padding: 1rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .nav-links .auth-link a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }
    
    /* Overlay de fond pour le menu mobile */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        backdrop-filter: blur(5px);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Animation d'entrée des éléments du menu */
    .nav-links > li:nth-child(1) { --item-index: 1; }
    .nav-links > li:nth-child(2) { --item-index: 2; }
    .nav-links > li:nth-child(3) { --item-index: 3; }
    .nav-links > li:nth-child(4) { --item-index: 4; }
    .nav-links > li:nth-child(5) { --item-index: 5; }
    
    /* Scrollbar personnalisée pour le menu mobile */
    .nav-links::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-links::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    }
    
    /* Masquer les boutons d'authentification desktop en mobile */
    .auth-buttons {
        display: none;
    }
    
    /* Styles pour le body quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .header {
        z-index: 1002;
    }
    
    /* Animation d'entrée du menu */
    .nav-links {
        transform: translateX(100%);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    /* Effet de parallaxe pour l'overlay */
    .mobile-overlay {
        transform: translateZ(0);
        will-change: opacity;
    }
    
    /* Amélioration de l'accessibilité */
    .hamburger:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    .nav-links a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: -2px;
        border-radius: 4px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brand-section {
        gap: 2rem;
    }
    
    .brand-menu .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .brand-section {
        gap: 1.5rem;
    }
    
    .brand-menu .nav-links {
        gap: 1.5rem;
    }
    
    .brand-menu .nav-links > li > a {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .brand-section {
        gap: 1rem;
    }
    
    .brand-logo .logo {
        font-size: 2rem;
    }
    
    .brand-logo .logo-accent {
        width: 40px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .brand-section {
        gap: 0.5rem;
    }
    
    .brand-logo .logo {
        font-size: 1.8rem;
    }
    
    .brand-logo .logo-accent {
        width: 35px;
        height: 2px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

.hero .hero-image {
    display: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.8;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Taches orange subtiles uniquement - pas de ligne à droite */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--dark-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.features .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.feature-card p {
    color: #aaa;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    border: 4px solid var(--dark-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

.step-card:hover .step-number {
    transform: translateX(-50%) rotate(0deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-color);
}

/* Animation de pulsation pour les numéros */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.8);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }
}

.step-number {
    animation: pulse-glow 3s ease-in-out infinite;
}

.step-card:hover .step-number {
    animation: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    font-weight: 600;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    text-align: center;
    background: var(--dark-color);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section avec fond orange */
.cta-orange {
    background: var(--primary-color) !important;
    color: var(--dark-color) !important;
}

.cta-orange h2 {
    color: var(--dark-color) !important;
}

.cta-orange .cta-description {
    color: var(--dark-color) !important;
}

.cta-orange .cta-features .cta-feature {
    color: var(--dark-color) !important;
}

.cta-orange .cta-features .cta-feature i {
    color: var(--dark-color) !important;
}

.cta-orange .btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.cta-orange .btn-outline:hover {
    background: var(--dark-color);
    color: var(--primary-color);
}

/* Bouton "Voir nos tarifs" avec fond noir */
.cta-orange .btn-primary {
    background: var(--dark-color) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--dark-color) !important;
    transition: all 0.3s ease;
}

.cta-orange .btn-primary:hover {
    background: transparent !important;
    color: var(--dark-color) !important;
    border-color: var(--dark-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
}

.cta-feature i {
    color: var(--dark-color);
    font-size: 1.2rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-divider {
    height: 1px;
    background: var(--primary-color);
    margin: 0;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Design pour Hero */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}