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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: #fdfdfd;
    color: #1a202c;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.cta-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff5722 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-hbutton {
    background: linear-gradient(135deg, #ff0000 0%, #ff006a 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at top right, rgba(255, 140, 0, 0.15) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
     content: '☀️';
     position: absolute;
     top: 15%;
     left: 10%;
     font-size: 10rem;
     opacity: 0.05;
     transform: rotate(-15deg);
}

.hero::after {
     content: '🌴';
     position: absolute;
     bottom: 10%;
     right: 5%;
     font-size: 12rem;
     opacity: 0.05;
     transform: rotate(10deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff5722 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.promo-banner {
    background: #ff5722;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-secondary {
    background: transparent;
    color: #ff5722;
    border: 2px solid #ff5722;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ff5722;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.server-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 87, 34, 0.1));
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    color: #2d3748;
}

.server-box h3 { color: #ff5722; }

.server-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.2), transparent);
    animation: rotate 10s linear infinite;
}

.server-indicators {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #38a169;
    animation: pulse 2s infinite;
}

.indicator:nth-child(2) { background: #ff8c00; animation-delay: 0.5s; }
.indicator:nth-child(3) { background: #ff5722; animation-delay: 1s; }

.pricing {
    padding: 6rem 0;
    background: #ffffff;
}

.pricing-selector {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.selector-tabs {
    display: flex;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.selector-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
    border: none;
    background: transparent;
    color: #4a5568;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.selector-tab.active {
    background: linear-gradient(135deg, #ff8c00, #ff5722);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.pricing-content { display: none; }
.pricing-content.active { display: block; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    padding: 0 1rem;
    background: linear-gradient(135deg, #ff5722 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0, 0.1);
    border-color: #ff8c00;
}

.pricing-card.featured {
    border: 2px solid #ff5722;
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 22px;      
    left: -48px;     
    width: 180px;    
    text-align: center;
    background: #2dd4bf;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 5px 0; 
    transform: rotate(-45deg); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff5722;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.plan-price .original-price {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.plan-period {
    color: #718096;
    margin-bottom: 2rem;
}

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

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #edf2f7;
}

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

.features {
    padding: 6rem 0;
    background: #f7fafc;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff8c00, #ff5722);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff5722;
}

.feature-description {
    color: #4a5568;
    line-height: 1.6;
}

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
    border-top: 5px solid #ff8c00;
}

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

.footer-section h3 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: #ff8c00; }

.footer-section p { color: #a0aec0; }

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #718096;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.1); } }

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .selector-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

 @media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-button, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Styles pour le Menu Mobile --- */
.mobile-nav-toggle {
    display: none; /* Caché par défaut sur grand écran */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu .nav-links {
    display: flex; /* Rétablit le flex pour le menu mobile */
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.mobile-nav-menu .nav-links a {
    font-size: 1.8rem;
}

.mobile-nav-menu .cta-button {
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Affichage du hamburger sur mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Cache les liens du bureau */
    }
    .mobile-nav-toggle {
        display: block; /* Affiche l'icône hamburger */
    }
}


/* --- Styles pour la Page Équipe --- */
.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0, 0.1);
    border-color: #ff8c00;
}

.team-card-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff8c00, #ff5722);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
    object-fit: cover; /* au cas où vous utilisez une <img> */
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.team-card-role {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.team-card-bio {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.team-social-links a {
    color: #a0aec0;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.team-social-links a:hover {
    color: #ff5722;
}

/* --- Styles pour la Page Contact --- */
.contact-container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-form-section {
    padding: 4rem;
}

.contact-info-section {
    padding: 4rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5722 100%);
    color: white;
}

.contact-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info-item .icon {
    font-size: 1.8rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4a5568;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-info-section {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .contact-form-section, .contact-info-section {
        padding: 2.5rem;
    }
}