/* Variables CSS */
:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #EC4899;
    --accent: #C4B5FD;
    --dark: #0F0F23;
    --dark-lighter: #1A1A2E;
    --gray: #64748B;
    --gray-light: #CBD5E1;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 20px 60px rgba(139, 92, 246, 0.3);
}

/* Light Mode Variables */
body.light-mode {
    --dark: #F8F9FA;
    --dark-lighter: #FFFFFF;
    --white: #0F0F23;
    --gray: #475569;
    --gray-light: #334155;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.hexagon-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    animation: rotate 3s linear infinite;
}

.hex-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s ease-in-out infinite;
}

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

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

.loader p {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

body.light-mode .back-to-top {
    color: var(--dark);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: whatsappShake 1s ease-in-out infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes whatsappShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

/* Mobile: Ajuster position */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none; /* Cache le tooltip sur mobile pour éviter le débordement */
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Service Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--dark-lighter);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
}

body.light-mode .modal-content {
    background: var(--white);
    color: var(--dark);
}

body.light-mode .modal-form .form-group input,
body.light-mode .modal-form .form-group select {
    background: rgba(139, 92, 246, 0.05);
    color: var(--dark);
}

body.light-mode .modal-form .form-group label {
    color: var(--gray);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

/* Choice Buttons */
.modal-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.choice-btn i {
    font-size: 3rem;
    color: var(--primary);
}

.choice-btn span {
    font-size: 1.2rem;
    font-weight: 600;
}

.choice-btn small {
    font-size: 0.9rem;
    color: var(--gray);
}

.choice-btn:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover i {
    color: #25D366;
}

/* Modal Form */
.modal-form {
    animation: slideUp 0.3s ease;
}

.modal-form.hidden {
    display: none;
}

.modal-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.modal-form .form-group label {
    color: var(--gray-light);
}

.modal-form .form-group input,
.modal-form .form-group select {
    color: var(--white);
    background: rgba(15, 15, 35, 0.6);
}

.modal-form .form-group input::placeholder,
.modal-form .form-group select option {
    color: var(--gray);
}

.modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.btn-back {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem;
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.05);
}

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-choices {
        grid-template-columns: 1fr;
    }

    .choice-btn {
        padding: 1.5rem 1rem;
    }

    .choice-btn i {
        font-size: 2.5rem;
    }
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.thank-you-content {
    background: var(--dark-lighter);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

body.light-mode .thank-you-content {
    background: var(--white);
    color: var(--dark);
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.thank-you-content h2 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

body.light-mode .thank-you-content h2 {
    color: var(--primary);
}

body.light-mode .thank-you-content p {
    color: var(--gray);
}

.thank-you-content strong {
    color: var(--primary-light);
}

body.light-mode .thank-you-content strong {
    color: var(--primary);
}

.thank-you-content .btn-primary {
    margin-top: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(20deg);
}

body.light-mode .theme-toggle {
    background: rgba(139, 92, 246, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

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

.badge, .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.hero-text h1 {
    margin: 1rem 0;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Hexagon Visual */
.hexagon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon {
    width: 400px;
    height: 400px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.circuit-pattern {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.6);
    position: relative;
}

.circuit-pattern::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.circuit-pattern::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: 
        radial-gradient(circle, var(--primary) 2px, transparent 2px),
        radial-gradient(circle, var(--primary-light) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Circuit Lines Animation */
.circuit-lines {
    position: absolute;
    inset: 30px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.circuit-line {
    position: absolute;
    background: var(--primary);
    opacity: 0.6;
    box-shadow: 0 0 10px var(--primary);
}

.line-1 {
    width: 2px;
    height: 60px;
    top: 30%;
    left: 20%;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    width: 80px;
    height: 2px;
    top: 50%;
    right: 15%;
    animation: lineGlow 3s ease-in-out 1s infinite;
}

.line-3 {
    width: 2px;
    height: 50px;
    bottom: 25%;
    right: 30%;
    animation: lineGlow 3s ease-in-out 2s infinite;
}

.circuit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 50%; right: 20%; animation-delay: 0.5s; }
.dot-3 { bottom: 30%; left: 30%; animation-delay: 1s; }
.dot-4 { top: 40%; left: 50%; animation-delay: 1.5s; }

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 5px var(--primary); }
    50% { opacity: 1; box-shadow: 0 0 20px var(--primary); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.8rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(10px); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

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

.service-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: rgba(139, 92, 246, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary);
}

.service-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.service-link:hover {
    gap: 1rem;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.portfolio-link {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
}

/* About Section */
.about {
    background: var(--dark-lighter);
}

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

.about-image {
    position: relative;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.about-image img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    z-index: 1;
    display: block;
}

.about-text h2 {
    margin: 1rem 0;
}

.about-text > p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--gray-light);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.pricing-header p {
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
}

.pricing-note a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--dark-lighter);
}

/* CTA Limited Offer */
.cta-limited-offer {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 25px;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.cta-limited-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 2;
}

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

.cta-limited-offer h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* CTA Button Urgent */
.btn-cta-urgent {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 2;
    animation: pulse-button 2s ease-in-out infinite;
}

.btn-cta-urgent:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.7), 0 0 0 10px rgba(255, 107, 107, 0.1); }
}

.btn-cta-urgent span {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.btn-cta-urgent small {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Trust indicators */
.cta-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.trust-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Light mode */
body.light-mode .cta-limited-offer {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
}

body.light-mode .countdown-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
}

body.light-mode .cta-subtitle,
body.light-mode .trust-item {
    color: var(--gray);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-limited-offer {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-limited-offer h2 {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta-urgent {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-cta-urgent span {
        font-size: 1rem;
    }
    
    .btn-cta-urgent small {
        font-size: 0.8rem;
    }
    
    .cta-trust {
        gap: 0.8rem;
        flex-direction: column;
        font-size: 0.9rem;
    }
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
    color: var(--gray-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-light);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 0.8rem;
    font-size: 0.8rem;
    background: var(--dark-lighter);
    padding: 0 0.5rem;
    color: var(--primary-light);
}

/* Améliorer la lisibilité dans la modale */
.modal-form .form-group label {
    background: transparent;
}

.modal-form .form-group input:focus + label,
.modal-form .form-group input:not(:placeholder-shown) + label,
.modal-form .form-group select:focus + label,
.modal-form .form-group select:valid + label,
.modal-form .form-group textarea:focus + label,
.modal-form .form-group textarea:not(:placeholder-shown) + label {
    background: var(--dark-lighter);
    color: var(--white);
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Service Label avec style spécial */
.service-label {
    display: block;
    position: static !important;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    top: auto !important;
    left: auto !important;
    background: transparent !important;
    padding: 0 !important;
}

body.light-mode .service-label {
    color: var(--dark) !important;
}

/* Select sans label (pour la modale) */
.select-no-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.select-no-label select {
    width: 100%;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.select-no-label select:focus {
    outline: none;
    border-color: var(--primary);
}

.select-no-label select option {
    background: var(--dark-lighter);
    color: var(--white);
}

.select-no-label select option[disabled] {
    color: var(--gray-light);
}

.modal-form .select-no-label select {
    background: rgba(15, 15, 35, 0.6);
    color: var(--white);
}

/* Force le texte du placeholder à être visible */
.modal-form .select-no-label select:invalid {
    color: var(--gray-light);
}

.modal-form .select-no-label select:valid {
    color: var(--white);
}

body.light-mode .select-no-label select {
    background: rgba(139, 92, 246, 0.05);
    color: var(--dark);
}

body.light-mode .select-no-label select option {
    background: var(--white);
    color: var(--dark);
}

/* Portfolio Section */
.portfolio {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.portfolio-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.portfolio-subtitle {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 4rem;
    font-weight: 700;
}

/* Portfolio Features */
.portfolio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.portfolio-feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.portfolio-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.portfolio-feature-item h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.portfolio-feature-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Proof */
.portfolio-proof {
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
}

.proof-text {
    color: var(--gray-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.proof-text strong {
    color: var(--primary-light);
    font-weight: 700;
}

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

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
}

.proof-stat i {
    font-size: 2rem;
    color: var(--primary);
}

.proof-stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.proof-stat small {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portfolio-cta p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Light mode */
body.light-mode .portfolio {
    background: var(--white);
}

body.light-mode .portfolio-hero h2,
body.light-mode .portfolio-feature-item h4,
body.light-mode .proof-stat span,
body.light-mode .portfolio-cta h3 {
    color: var(--dark);
}

body.light-mode .portfolio-feature-item p,
body.light-mode .proof-text,
body.light-mode .proof-stat small,
body.light-mode .portfolio-cta p {
    color: var(--gray);
}

body.light-mode .proof-stat {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .portfolio-hero h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .portfolio-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .portfolio-feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-feature-item h4 {
        font-size: 1.1rem;
    }
    
    .portfolio-feature-item p {
        font-size: 0.9rem;
    }
    
    .portfolio-proof {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }
    
    .proof-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .proof-stat {
        padding: 1rem;
    }
    
    .proof-stat i {
        font-size: 1.5rem;
    }
    
    .proof-stat span {
        font-size: 1.2rem;
    }
    
    .proof-stat small {
        font-size: 0.75rem;
    }
    
    .portfolio-cta {
        margin-top: 3rem;
    }
    
    .portfolio-cta h3 {
        font-size: 1.4rem;
    }
    
    .portfolio-cta p {
        font-size: 1rem;
    }
    
    .portfolio-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--dark);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Pattern hexagonal en arrière-plan */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Petits hexagones décoratifs */
.testimonials::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.testimonials .container {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

/* Design géométrique en arrière-plan */
.testimonial-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover::after {
    transform: scale(1.2) rotate(45deg);
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: rgba(139, 92, 246, 0.08);
}

.testimonial-card:hover::before {
    opacity: 0.6;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Petits points décoratifs */
.testimonial-card .testimonial-rating::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.08);
    border-radius: 10px;
    transform: rotate(25deg);
    bottom: -80px;
    left: -20px;
    z-index: 0;
}

/* Petit cercle décoratif */
.testimonial-card .testimonial-author::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
    z-index: 0;
}

.testimonial-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar i {
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Light mode */
body.light-mode .testimonials {
    background: var(--white);
}

body.light-mode .testimonial-card {
    background: rgba(139, 92, 246, 0.05);
}

body.light-mode .testimonial-text {
    color: var(--gray);
}

body.light-mode .author-info h4 {
    color: var(--dark);
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* Technologies Section */
.technologies {
    background: var(--dark);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.technologies::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, var(--dark-lighter) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.tech-slider {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.tech-slider::before,
.tech-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.tech-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.tech-track {
    display: flex;
    gap: 3rem;
    animation: scrollTech 40s linear infinite;
    width: max-content;
}

.tech-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTech {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.tech-logo {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-logo {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

/* Couleurs spécifiques pour chaque techno */
.tech-item:nth-child(1) .tech-logo i { color: #E34F26; } /* HTML5 */
.tech-item:nth-child(2) .tech-logo i { color: #1572B6; } /* CSS3 */
.tech-item:nth-child(3) .tech-logo i { color: #F7DF1E; } /* JavaScript */
.tech-item:nth-child(4) .tech-logo i { color: #61DAFB; } /* React */
.tech-item:nth-child(5) .tech-logo i { color: #21759B; } /* WordPress */
.tech-item:nth-child(6) .tech-logo i { color: #339933; } /* Node.js */
.tech-item:nth-child(7) .tech-logo i { color: #96BF48; } /* Shopify */
.tech-item:nth-child(8) .tech-logo i { color: #F24E1E; } /* Figma */
.tech-item:nth-child(9) .tech-logo i { color: #F05032; } /* Git */
.tech-item:nth-child(10) .tech-logo i { color: var(--white); } /* GitHub */

/* Duplication (même couleurs) */
.tech-item:nth-child(11) .tech-logo i { color: #E34F26; }
.tech-item:nth-child(12) .tech-logo i { color: #1572B6; }
.tech-item:nth-child(13) .tech-logo i { color: #F7DF1E; }
.tech-item:nth-child(14) .tech-logo i { color: #61DAFB; }
.tech-item:nth-child(15) .tech-logo i { color: #21759B; }
.tech-item:nth-child(16) .tech-logo i { color: #339933; }
.tech-item:nth-child(17) .tech-logo i { color: #96BF48; }
.tech-item:nth-child(18) .tech-logo i { color: #F24E1E; }
.tech-item:nth-child(19) .tech-logo i { color: #F05032; }
.tech-item:nth-child(20) .tech-logo i { color: var(--white); }

.tech-item span {
    color: var(--gray-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Tech Stats */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.tech-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.tech-stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-stat-item h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-stat-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Light mode */
body.light-mode .technologies {
    background: var(--white);
}

body.light-mode .technologies::before {
    background: linear-gradient(0deg, var(--dark-lighter) 0%, transparent 100%);
}

body.light-mode .tech-slider::before {
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

body.light-mode .tech-slider::after {
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

body.light-mode .tech-item {
    background: rgba(139, 92, 246, 0.05);
}

body.light-mode .tech-item span {
    color: var(--gray);
}

body.light-mode .tech-stat-item h3 {
    color: var(--dark);
}

body.light-mode .tech-stat-item p {
    color: var(--gray);
}

/* Mobile */
@media (max-width: 768px) {
    .tech-track {
        gap: 2rem;
    }
    
    .tech-item {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .tech-logo {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .tech-item span {
        font-size: 0.85rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }
    
    .tech-stat-item {
        padding: 1.5rem;
    }
    
    .tech-stat-item i {
        font-size: 2rem;
    }
    
    .tech-stat-item h3 {
        font-size: 1.5rem;
    }
    
    .tech-stat-item p {
        font-size: 0.85rem;
    }
}

/* Process Section */
.process {
    background: var(--dark-lighter);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 2rem 0 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

/* Animation des icônes */
.step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-icon::before {
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content > p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.step-details li {
    padding: 0.6rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.step-details i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Connecteurs entre les étapes (visible sur desktop) */
.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .step-connector {
        display: block;
        position: absolute;
        top: 50px;
        right: -50px;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        z-index: 1;
    }
    
    .step-connector::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: -8px;
        color: var(--primary);
        font-size: 1.2rem;
    }
    
    .process-step:last-child .step-connector {
        display: none;
    }
}

/* CTA */
.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
}

.process-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.process-cta p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.process-cta .btn-primary {
    display: inline-flex;
}

/* Light mode */
body.light-mode .process {
    background: var(--dark-lighter);
}

body.light-mode .process-step {
    background: rgba(139, 92, 246, 0.05);
}

body.light-mode .step-content h3 {
    color: var(--dark);
}

body.light-mode .step-content > p,
body.light-mode .step-details li {
    color: var(--gray);
}

body.light-mode .process-cta h3 {
    color: var(--dark);
}

body.light-mode .process-cta p {
    color: var(--gray);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 3rem 0;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 1.5rem 0 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -15px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content > p {
        font-size: 0.95rem;
    }
    
    .step-details li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .process-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .process-cta h3 {
        font-size: 1.4rem;
    }
    
    .process-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .process-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Section */
.faq {
    background: var(--dark);
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer ul li {
    color: var(--gray-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.faq-answer strong {
    color: var(--primary-light);
}

/* Slide to Unlock Button */
.slide-container {
    margin: 1.5rem 0;
    width: 100%;
}

.slide-track {
    position: relative;
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}

.slide-bg-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
}

.slide-button {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: grab;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10;
}

.slide-button:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.slide-button i {
    animation: whatsappBounce 1.5s ease-in-out infinite;
}

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

.slide-track.unlocked {
    background: #25D366;
    border-color: #25D366;
}

.slide-track.unlocked .slide-bg-text {
    opacity: 0;
}

.slide-track.unlocked .slide-button {
    left: calc(100% - 65px);
}

/* Mode clair */
body.light-mode .slide-bg-text {
    color: var(--dark);
}

/* Mobile */
@media (max-width: 576px) {
    .slide-track {
        height: 60px;
    }
    
    .slide-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slide-bg-text {
        font-size: 0.85rem;
        padding: 0 60px;
    }
    
    .slide-track.unlocked .slide-button {
        left: calc(100% - 55px);
    }
}

body.light-mode .faq {
    background: var(--white);
}

body.light-mode .faq-item {
    background: rgba(139, 92, 246, 0.05);
}

body.light-mode .faq-question {
    color: var(--dark);
}

body.light-mode .faq-answer p,
body.light-mode .faq-answer ul li {
    color: var(--gray);
}

/* Mobile */
@media (max-width: 576px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-lighter);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
}

.footer-logo i {
    color: var(--primary);
    font-size: 2rem;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Améliorer la zone tactile sur mobile */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.newsletter-form button:active {
    transform: scale(0.95);
}

/* Mobile: Bouton plus grand et plus facile à toucher */
@media (max-width: 576px) {
    .newsletter-form {
        gap: 0.8rem;
    }
    
    .newsletter-form button {
        min-width: 60px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .newsletter-form input {
        padding: 1rem;
        font-size: 16px; /* Évite le zoom automatique sur iOS */
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    body.light-mode .nav-menu {
        background: rgba(248, 249, 250, 0.98);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-content .btn-primary,
    .nav-content .theme-toggle {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hexagon {
        width: 300px;
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hexagon {
        width: 250px;
        height: 250px;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 55px;
    }

    .footer-logo .logo-img {
        height: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .service-card,
    .about-feature,
    .contact-form,
    .faq-item {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
}

/* Glow Effect on Cards */
.service-card,
.portfolio-item,
.pricing-card {
    position: relative;
}

.service-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before,
.pricing-card:hover::before {
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
