/* Office-box.ch - Styles CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --swiss-blue: #003399;
    --swiss-blue-dark: #002266;
    --swiss-red: #D80000;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --bg-light: #f1f7fc;
    --white: #ffffff;
    --green: #22c55e;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

a { color: inherit; text-decoration: none; }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--swiss-blue);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--swiss-red);
}

.logo-icon i { color: white; font-size: 14px; }
.logo-suffix { color: #94a3b8; font-weight: 400; font-size: 0.9rem; }

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.2s;
    border-radius: 4px;
}

.nav-links a:hover { color: var(--swiss-blue); background: var(--bg-light); }
.nav-links a.active { color: var(--swiss-blue); background: var(--bg-light); }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-family: inherit;
}

.btn-primary { background: var(--swiss-blue); color: white; }
.btn-primary:hover { background: var(--swiss-blue-dark); box-shadow: 0 4px 12px rgba(0,51,153,0.3); }
.btn-outline { background: transparent; color: var(--text-gray); border: 1px solid #e2e8f0; }
.btn-outline:hover { border-color: var(--swiss-blue); color: var(--swiss-blue); }
.btn-white { background: white; color: var(--swiss-blue); }
.btn-white:hover { background: var(--bg-light); }
.btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-block { width: 100%; justify-content: center; }

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.swiss-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.swiss-cross {
    width: 18px;
    height: 18px;
    background: var(--swiss-red);
    position: relative;
}

.swiss-cross::before, .swiss-cross::after {
    content: '';
    position: absolute;
    background: white;
}

.swiss-cross::before { width: 10px; height: 4px; top: 7px; left: 4px; }
.swiss-cross::after { width: 4px; height: 10px; top: 4px; left: 7px; }

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--swiss-blue), #0055cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.trust-indicators span { display: flex; align-items: center; gap: 8px; }
.trust-indicators i { color: var(--green); }

/* ==================== GALLERY CAROUSEL ==================== */
.hero-gallery {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-slide.active { opacity: 1; }

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--swiss-blue);
    border-radius: 4px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-nav:hover { background: white; transform: translateY(-50%) scale(1.05); }
.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }
.gallery-nav i { color: var(--text-dark); font-size: 1rem; }

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active { background: white; width: 24px; border-radius: 4px; }

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 60px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--swiss-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label { color: var(--text-gray); }

/* ==================== SECTIONS ==================== */
.section { padding: 100px 24px; }
.section-light { background: var(--bg-light); }
.section-white { background: white; }
.section-blue { background: var(--swiss-blue); color: white; }
.section-dark { background: #0f172a; color: white; }

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

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.section-blue .section-header p { color: rgba(255,255,255,0.8); }

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 140px 24px 80px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 16px; }
.page-header p { font-size: 1.15rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* ==================== FEATURES GRID ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 32px;
    transition: all 0.3s;
    border-radius: 4px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0,51,153,0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,51,153,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-icon i { color: var(--swiss-blue); font-size: 1.5rem; }
.feature-card:hover .feature-icon { background: var(--swiss-blue); }
.feature-card:hover .feature-icon i { color: white; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--text-dark); }
.feature-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 0; }

.feature-card ul {
    list-style: none;
    margin-top: 16px;
}

.feature-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-card ul li i { color: var(--green); margin-top: 4px; font-size: 0.8rem; }

/* ==================== METIERS GRID ==================== */
.metiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metiers-grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metier-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s;
}

.metier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,51,153,0.08); }

.metier-card.highlight {
    background: var(--swiss-blue);
    color: white;
    border-color: var(--swiss-blue);
}

.metier-card.highlight p { color: rgba(255,255,255,0.8); }

.metier-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,51,153,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.metier-card.highlight .metier-icon { background: rgba(255,255,255,0.2); }
.metier-icon i { font-size: 1.5rem; color: var(--swiss-blue); }
.metier-card.highlight .metier-icon i { color: white; }
.metier-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.metier-card p { font-size: 0.9rem; color: var(--text-gray); margin: 0; }

/* ==================== PRICING ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 40px 32px;
    border-radius: 4px;
    transition: all 0.3s;
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,51,153,0.1); }

.pricing-card.popular {
    border: 2px solid var(--swiss-blue);
    position: relative;
}

.pricing-card.popular .badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--swiss-blue);
    color: white;
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.pricing-card.dark { background: #0f172a; color: white; border-color: #0f172a; }

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-card .subtitle { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 24px; }
.pricing-card.dark .subtitle { color: #94a3b8; }

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card .price span { font-size: 0.65rem; font-weight: 400; color: var(--text-gray); }
.pricing-card.dark .price span { color: #94a3b8; }

.pricing-card .price-annual {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}
.pricing-card.dark .price-annual { color: #94a3b8; }

.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card.dark ul li { color: #94a3b8; border-color: #1e293b; }
.pricing-card ul li i { color: var(--green); }

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-light); }
.faq-question i { color: var(--swiss-blue); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

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

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p { padding: 0 24px 24px; color: var(--text-gray); }

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 { font-size: 1.75rem; margin-bottom: 32px; }

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

.contact-item .icon {
    width: 52px;
    height: 52px;
    background: rgba(0,51,153,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon i { color: var(--swiss-blue); font-size: 1.1rem; }
.contact-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-item p, .contact-item a { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }
.contact-item a:hover { color: var(--swiss-blue); }

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
}

.contact-form h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-gray); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--swiss-blue);
    box-shadow: 0 0 0 3px rgba(0,51,153,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==================== LOGIN ==================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 100px 24px 40px;
}

.login-card {
    background: white;
    padding: 48px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.login-header { text-align: center; margin-bottom: 32px; }
.login-header h1 { font-size: 1.75rem; margin-top: 24px; margin-bottom: 8px; }
.login-header p { color: var(--text-gray); font-size: 0.95rem; }

.password-field { position: relative; }
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--swiss-blue);
    margin-top: -12px;
    margin-bottom: 24px;
}

.login-footer { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--text-gray); }
.login-footer a { color: var(--swiss-blue); font-weight: 500; }

.demo-box {
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 24px;
    border-radius: 4px;
}

/* ==================== CTA SECTION ==================== */
.cta { padding: 100px 24px; background: var(--swiss-blue); text-align: center; }
.cta h2 { font-size: 2.5rem; color: white; margin-bottom: 16px; }
.cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
.footer { background: #0f172a; color: white; padding: 80px 24px 40px; }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 280px;
    line-height: 1.7;
}

.footer h4 { font-size: 1rem; margin-bottom: 24px; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 14px; }
.footer ul a { color: #94a3b8; font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: white; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact i { color: #64748b; margin-top: 4px; width: 16px; }

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .hero-gallery { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .metiers-grid { grid-template-columns: repeat(2, 1fr); }
    .metiers-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 72px;
        padding: 0 16px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }

    .logo-suffix {
        font-size: 0.8rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        border-radius: 6px;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        padding: 12px 16px 20px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 8px;
        border-bottom: 1px solid #f1f5f9;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.95rem;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu-primary {
        margin-top: 12px;
        background: var(--swiss-blue);
        color: white !important;
        text-align: center;
        border-radius: 6px;
        border-bottom: none !important;
        padding: 14px 16px !important;
    }

    .mobile-menu-secondary {
        margin-top: 8px;
        text-align: center;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .hero { padding: 120px 24px 60px; min-height: auto; }
    .hero h1 { font-size: 2.5rem; }
    .page-header { padding: 120px 24px 60px; }
    .page-header h1 { font-size: 2rem; }
    .section { padding: 60px 24px; }
    .section-header h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .features-grid-2 { grid-template-columns: 1fr; }
    .metiers-grid { grid-template-columns: 1fr; }
    .metiers-grid-3 { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; gap: 24px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}

/* =========================================================
   ORDER PAGE (Page commande Office-Box)
   Styles spécifiques uniquement
========================================================= */

.order-page {
    min-height: 100vh;
    background: var(--bg-light);
    padding: 120px 24px 60px;
}

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

.order-header {
    text-align: center;
    margin-bottom: 48px;
}

.order-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.order-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== FORMULES ==================== */

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.formula-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.formula-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.formula-card.selected {
    border-color: var(--swiss-blue);
    background: rgba(0,51,153,0.02);
    box-shadow: 0 4px 16px rgba(0,51,153,0.12);
}

.formula-card.selected::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--swiss-blue);
    border-radius: 50%;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.formula-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.formula-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.formula-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--swiss-blue);
    margin-bottom: 4px;
}

.formula-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-gray);
}

.formula-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 12px;
    line-height: 1.5;
}

.formula-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--swiss-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

/* ==================== FORMULAIRE COMMANDE ==================== */

.order-form-container {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
}

.order-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.order-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

/* ==================== ACTIONS ==================== */

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.btn-submit {
    background: var(--swiss-blue);
    color: white;
    border: none;
    padding: 14px 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--swiss-blue-dark);
    box-shadow: 0 4px 12px rgba(0,51,153,0.25);
}

.btn-submit:disabled {
    background: #94a3b8;
}

.form-notice {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 16px;
    text-align: center;
}

/* ==================== SUCCESS ==================== */

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    color: white;
    font-size: 28px;
}

.success-message h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-gray);
    max-width: 400px;
    margin: 0 auto;
}

/* ==================== ORDER RESPONSIVE ==================== */

@media (max-width: 768px) {
    .order-page {
        padding: 100px 16px 40px;
    }

    .formulas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .order-form-container {
        padding: 24px;
    }

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

    .order-header h1 {
        font-size: 1.75rem;
    }
}