/* DevOpsia School - Styles principaux */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "⚡";
    font-size: 1.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.cta-button {
    background: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Common Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Alumni Section */
.alumni-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 80px;
}

.company-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.company-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Pages internes */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.active {
    color: #4f46e5 !important;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4f46e5;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.2rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.member-description p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-journey h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-journey ul {
    list-style: none;
    padding: 0;
}

.member-journey li {
    color: #64748b;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.member-journey li::before {
    content: "→";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.philosophy-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.philosophy-list li {
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-intro p {
    color: #64748b;
    font-size: 1.1rem;
}

.pricing-card-main {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.8;
}

.price-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 3rem;
    background: white;
}

.pricing-features h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Payment Options */
.payment-options {
    padding: 80px 0;
    background: #f8fafc;
}

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

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.payment-card.recommended {
    border: 2px solid #4f46e5;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.payment-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.payment-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.payment-benefits li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.payment-benefits li::before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Financing Section */
.financing-section {
    padding: 80px 0;
    background: white;
}

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

.financing-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4f46e5;
}

.financing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.financing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.financing-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.financing-status.eligible {
    background: #dcfce7;
    color: #16a34a;
}

.financing-status.available {
    background: #dbeafe;
    color: #2563eb;
}

.financing-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.financing-details small {
    color: #9ca3af;
    font-style: italic;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: #4f46e5;
    color: white;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-item {
    padding: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.comparison-item:last-child {
    border-right: none;
}

.comparison-item.devopsia {
    background: rgba(79, 70, 229, 0.05);
    font-weight: 600;
}

.price-highlight {
    color: #4f46e5;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: white;
}

.main-program {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.program-hero {
    padding: 3rem;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.program-hero h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.program-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.program-content {
    padding: 3rem;
    background: white;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.program-description h4 {
    color: #4f46e5;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.program-description h4:first-child {
    margin-top: 0;
}

.program-description p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-schedule h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-item.module {
    background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
    border-left: 4px solid #4f46e5;
}

.schedule-item.project {
    background: linear-gradient(135deg, #fef3c7, #fef9e7);
    border-left: 4px solid #f59e0b;
}

.schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.schedule-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.schedule-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.schedule-date {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.schedule-content small {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4f46e5;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #64748b;
}

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

.feature-card,
.program-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.program-card:nth-child(2) {
    animation-delay: 0.1s;
}

.program-card:nth-child(3) {
    animation-delay: 0.2s;
}

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .success-stats {
        grid-template-columns: 1fr;
    }

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

    .program-hero {
        padding: 2rem;
    }

    .program-hero h3 {
        font-size: 1.8rem;
    }

    .program-badges {
        flex-direction: column;
        align-items: center;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .schedule-icon {
        min-width: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .financing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

/* Pages internes */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.active {
    color: #4f46e5 !important;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4f46e5;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.2rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.member-description p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-journey h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-journey ul {
    list-style: none;
    padding: 0;
}

.member-journey li {
    color: #64748b;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.member-journey li::before {
    content: "→";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.philosophy-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.philosophy-list li {
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-intro p {
    color: #64748b;
    font-size: 1.1rem;
}

.pricing-card-main {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.8;
}

.price-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 3rem;
    background: white;
}

.pricing-features h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Payment Options */
.payment-options {
    padding: 80px 0;
    background: #f8fafc;
}

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

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.payment-card.recommended {
    border: 2px solid #4f46e5;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.payment-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.payment-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.payment-benefits li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.payment-benefits li::before {
    content: "•";
    color: #4f46e5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Financing Section */
.financing-section {
    padding: 80px 0;
    background: white;
}

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

.financing-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4f46e5;
}

.financing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.financing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.financing-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.financing-status.eligible {
    background: #dcfce7;
    color: #16a34a;
}

.financing-status.available {
    background: #dbeafe;
    color: #2563eb;
}

.financing-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.financing-details small {
    color: #9ca3af;
    font-style: italic;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: #4f46e5;
    color: white;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-item {
    padding: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.comparison-item:last-child {
    border-right: none;
}

.comparison-item.devopsia {
    background: rgba(79, 70, 229, 0.05);
    font-weight: 600;
}

.price-highlight {
    color: #4f46e5;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Menu burger pour mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #4f46e5;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation du menu burger */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Améliorer le z-index du logo */
.logo {
    z-index: 1001;
}

/* Media queries pour mobile - remplacer votre section @media (max-width: 768px) existante */
@media (max-width: 768px) {
    /* Afficher le menu burger */
    .menu-toggle {
        display: flex;
    }

    /* Navigation mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        font-size: 1.2rem;
    }

    /* Afficher la navigation quand active */
    .nav-links.active {
        left: 0;
    }

    /* Le bouton CTA dans le menu mobile */
    .nav-links .cta-button {
        margin-top: 2rem;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Ajuster le logo sur mobile */
    .logo {
        font-size: 1.5rem;
    }

    .logo::before {
        font-size: 1.3rem;
    }

    /* Vos autres styles mobile existants... */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .success-stats {
        grid-template-columns: 1fr;
    }

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

    .program-hero {
        padding: 2rem;
    }

    .program-hero h3 {
        font-size: 1.8rem;
    }

    .program-badges {
        flex-direction: column;
        align-items: center;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .schedule-icon {
        min-width: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .financing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    nav {
        padding: 0.8rem 0;
    }
}

/* Focus pour navigation clavier */
.menu-toggle:focus,
.nav-links a:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    .hamburger-line,
    .nav-links {
        transition: none;
    }
}
