* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
    animation: slideInLeft 0.8s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.navbar-logo {
    height: 100px;
    width: auto;
    margin-right: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4285f4, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-weight: bold;
    animation: rotateIn 1s ease-out 0.3s both;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out calc(0.1s * var(--delay, 0)) both;
}

.nav-links a:hover {
    color: #4285f4;
}

.contact-btn {
    background: linear-gradient(135deg, #4285f4, #0066cc);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
    color: white;
}

/* CTA Button */
.cta-btn {
    display: block;
    background: #4285f4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    animation: bounce 2s ease-in-out infinite;
}

.cta-btn:hover {
    background: #0066cc;
    animation: pulse 0.5s ease-in-out;
}

/* Hero Section */
.hero-section {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -350px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(ellipse at center top, 
        rgba(66, 133, 244, 0.4) 0%,
        rgba(66, 133, 244, 0.2) 20%,
        rgba(66, 133, 244, 0.1) 40%,
        rgba(66, 133, 244, 0.05) 60%,
        transparent 80%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.2;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards, textGlow 8s ease-in-out 5s infinite;
}

.hero-content h1 br + * {
    animation-delay: 0.8s;
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

/* Override mobile hero title */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        padding: 0 15px !important;
        text-align: center;
    }
    .hero-content h1 .desktop-text { display: none !important; }
    .hero-content h1 .mobile-text { 
        display: block !important;
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
}

/* Animation pour le texte */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(66, 133, 244, 0.8);
    }
}

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

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(66, 133, 244, 0.1);
    }
    50% {
        text-shadow: 0 0 8px rgba(66, 133, 244, 0.2);
    }
}

.hero-device {
    position: relative;
    margin-top: 100px;
}

.macbook {
    position: relative;
    width: 400px;
    margin: 0 auto;
}

.screen {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 10px 10px 5px 5px;
    border: 3px solid #333;
    position: relative;
}

.base {
    width: 420px;
    height: 20px;
    background: linear-gradient(135deg, #444, #666);
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    position: relative;
    top: -5px;
}

.device-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: scaleIn 0.8s ease-out both;
    height: 250px;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.2);
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    color: #4285f4;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg,
.stat-icon i {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    align-self: flex-start;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-align: left;
    max-width: 200px;
}

/* Pricing Section */
.pricing-section {
    background: #000000;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 800px;
    background: radial-gradient(ellipse at center bottom, 
        rgba(66, 133, 244, 0.3) 0%,
        rgba(66, 133, 244, 0.2) 25%,
        rgba(66, 133, 244, 0.1) 50%,
        rgba(66, 133, 244, 0.05) 75%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: white;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 10px;
}

.toggle-btn {
    background: transparent;
    color: white;
    border: 2px solid #4285f4;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #4285f4;
    color: white;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: stretch;
    width: 100%;
    max-width: 100%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    min-height: 600px;
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 0.8s ease-out both;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: glow 2s ease-in-out infinite;
}

.pricing-card.featured {
    border: 2px solid #4285f4;
    transform: scale(1.05);
    animation: pulse 2s ease-in-out infinite, fadeInUp 0.8s ease-out both;
}

.card-header {
    margin-bottom: 30px;
}

.pack-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-icon svg,
.pack-icon i {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: left;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4285f4;
}

.period {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

.monthly-price {
    margin-top: 15px;
    font-size: 1.2rem;
    color: white;
}

.monthly-price span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.feature-icon {
    width: 18px;
    height: 18px;
    color: #4285f4;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-btn {
    width: 100%;
    background: transparent;
    color: #4285f4;
    border: 2px solid #4285f4;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    margin-top: auto;
}

.price-btn:hover {
    background: #4285f4;
    color: white;
}

.best-seller-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    z-index: 10;
}

/* Réalisation Section */
.realisation-section {
    background: #f4f4f9;
    padding: 80px 0;
}

.realisation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.realisations-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 60px 0 40px 0;
    color: #333;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.realisation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.8s ease-out both;
}

.realisation-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.realisation-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.realisation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 133, 244, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay i {
    width: 30px;
    height: 30px;
    color: white;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.realisation-card:hover .image-overlay {
    opacity: 1;
}

.realisation-content {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.realisation-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.realisation-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.realisation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4285f4, #0066cc);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
}

.realisation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.realisation-btn:hover::before {
    left: 100%;
}

.realisation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.realisation-btn::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

/* Modal À propos de nous */
.about-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.about-header {
    background: linear-gradient(135deg, #4285f4, #0066cc);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.about-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.about-body {
    padding: 40px;
    background: #f8f9fa;
}

.about-intro {
    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(135deg, #4285f4, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
}

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

.stat-icon-about {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.stat-icon-about i {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.team-stat h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.values-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    margin-bottom: 20px;
}

.values-section h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.value-item i {
    width: 20px;
    height: 20px;
    color: #4285f4;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    margin-top: 2px;
}

.value-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.value-item small {
    color: #666;
    line-height: 1.4;
}

.expertise-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.expertise-section h4 {
    color: #333;
    font-weight: 600;
}

.expertise-card {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 15px;
}

.expertise-card:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-3px);
}

.expertise-card i {
    width: 40px;
    height: 40px;
    color: #4285f4;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    margin-bottom: 15px;
}

.expertise-card:hover i {
    color: white;
}

.expertise-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.commitment-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.commitment-card h4 {
    font-weight: 600;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #333;
}

.commitment-list i {
    width: 20px;
    height: 20px;
    color: #28a745;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.about-footer {
    background: white;
    border-top: 1px solid #dee2e6;
    padding: 20px 30px;
}

/* Modal Formulaire de Contact */
.contact-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, #4285f4, #0066cc);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.contact-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.contact-body {
    padding: 40px;
    background: #f8f9fa;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #dc3545;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.contact-form .form-control:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
    outline: none;
}

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

.contact-form select.form-control {
    cursor: pointer;
}

.form-check {
    margin-top: 25px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.form-check-input {
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 24px;
    height: 24px;
    color: #4285f4;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.contact-footer {
    background: white;
    border-top: 1px solid #dee2e6;
    padding: 20px 30px;
}

.contact-footer .btn-primary {
    background: linear-gradient(135deg, #4285f4, #0066cc);
    border: none;
    display: flex;
    align-items: center;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4285f4, transparent);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    width: 16px;
    height: 16px;
    color: #4285f4;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-links-section h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-services a {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-services a:hover {
    background: rgba(66, 133, 244, 0.2);
    border-color: #4285f4;
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.social-link i {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

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

.footer-legal a:hover {
    color: #4285f4;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand,
    .footer-links-section {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-services {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-services a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        width: 16px;
        height: 16px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animations spectaculaires pour les éléments */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.2;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards, textGlow 8s ease-in-out 5s infinite;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: scaleIn 0.8s ease-out both;
    height: 250px;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.2);
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    color: #4285f4;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg,
.stat-icon i {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    align-self: flex-start;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    min-height: 600px;
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 0.8s ease-out both;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: glow 2s ease-in-out infinite;
}

.pricing-card.featured {
    border: 2px solid #4285f4;
    transform: scale(1.05);
    animation: pulse 2s ease-in-out infinite, fadeInUp 0.8s ease-out both;
}

.realisation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.8s ease-out both;
}

.realisation-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Animation d'apparition en cascade pour les éléments */
.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

.realisation-card:nth-child(1) { animation-delay: 0.2s; }
.realisation-card:nth-child(2) { animation-delay: 0.4s; }

/* Force hero title size for responsiveness */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem !important; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.4rem !important; }
}
@media (max-width: 375px) {
    .hero-content h1 { font-size: 2.1rem !important; }
}

/* Responsive pricing cards - Bien centrées avec marges */
@media (min-width: 1200px) {
    .pricing-section .container {
        max-width: 1400px;
        padding: 0 60px;
    }
    
    .pricing-grid {
        gap: 25px;
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card {
        flex: 1;
        min-width: 0;
        max-width: 380px;
        padding: 35px 25px;
    }
}

@media (min-width: 1400px) {
    .pricing-section .container {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .pricing-grid {
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 30px;
        max-width: 410px;
    }
}

/* Titles for stats section */
.mobile-title {
    display: none;
}

.desktop-title {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        padding: 0 15px;
    }
    
    .desktop-title {
        display: none !important;
    }
    
    .mobile-title {
        display: block !important;
    }
    
    .stats-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .realisation-content {
        padding: 25px;
    }
    
    .realisation-content h4 {
        font-size: 1.3rem;
    }
    
    .realisation-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-section .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        flex: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 25px 20px !important;
    }
    
    .pricing-section h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    .pricing-card {
        padding: 20px 15px !important;
        min-height: 500px !important;
        border-radius: 15px !important;
        margin: 0 5px !important;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .price-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}