/* ========================================
   HERO SEGMENTATION - 2 OPTIONS CLAIRES
   ======================================== */

.hero-segmentation {
    margin: 3rem 0;
    max-width: 1000px;
}

.segmentation-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* GRILLE 2 COLONNES */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* CARTES OPTIONS */
.option-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Carte mise en avant */
.option-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
}

/* BADGES */
.option-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.free-badge {
    background: linear-gradient(135deg, #8B6F47 0%, #8B6F47 100%);
    color: white;
}

.popular-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

/* TITRES */
.option-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.option-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* SUBTITLE ET EXAMPLES */
.option-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.option-examples {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.4;
}

/* Cases d'usage - 2 options claires */
.option-cases {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.75rem 0 1.5rem 0;
}

.case-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    background: rgba(139, 111, 71, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

.case-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.case-text {
    line-height: 1.4;
}

/* BLOC PRIX */
.price-block {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(168, 144, 128, 0.08) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-note {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-subtitle {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* FEATURES */
.option-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.feature-item .check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* SIMPLE FEATURES (NEW) */
.option-features-simple {
    margin-bottom: 2rem;
}

.option-features-simple > div,
.option-features-simple .feature-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.option-features-simple > div:hover,
.option-features-simple .feature-simple:hover {
    transform: translateX(4px);
}

.option-features-simple span:first-child {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-features-simple span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* CLEAN FEATURES (SIMPLIFIED VERSION) */
.option-features-clean {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.option-features-clean .feature-clean {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.5;
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-weight: 500;
}

/* Indentation pour sous-items */
.feature-simple.feature-indent {
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

/* Strong dans les features */
.feature-simple strong {
    font-weight: 700;
    color: var(--text-primary);
}

/* BOUTONS */
.option-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

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

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

/* NOTE */
.option-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

/* INFO COMMUNE */
.common-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.15);
}

.common-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .option-card {
        padding: 1.5rem;
    }

    .segmentation-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .option-title {
        font-size: 1.125rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .option-examples {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .case-item {
        font-size: 0.8125rem;
    }

    .option-features-simple > div {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .option-features-simple span:first-child {
        font-size: 1.25rem;
    }

    .option-features-simple span:last-child {
        font-size: 0.875rem;
    }
}

/* Mobile très petit */
@media (max-width: 480px) {
    .option-examples {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .option-features-simple span:first-child {
        font-size: 1.1rem;
    }

    .option-features-simple span:last-child {
        font-size: 0.8rem;
    }
}

/* ========================================
   HOW IT WORKS - PROCESSUS COMMUN
   ======================================== */

.how-it-works-common {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.03) 0%, rgba(168, 144, 128, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(139, 111, 71, 0.15);
}

.how-it-works-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Timeline horizontale */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Étape 3 mise en avant */
.process-step.highlight-step {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.375rem 0;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Flèches entre les étapes */
.process-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Path options dans l'étape 3 */
.path-options {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.path-option {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive mobile How It Works */
@media (max-width: 768px) {
    .how-it-works-common {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem 0;
    }

    .how-it-works-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .process-timeline {
        flex-direction: column;
        align-items: stretch;
    }

    .process-step {
        max-width: 100%;
        min-width: 100%;
    }

    .process-arrow {
        align-self: center;
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 0.5rem 0;
    }

    .path-options {
        font-size: 0.6875rem;
    }
}

/* ========================================
   WHAT WE PROVIDE / WHAT YOU BUILD
   ======================================== */

.what-we-provide,
.what-you-build,
.what-you-do-simple {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
}

.what-we-provide {
    background: rgba(139, 111, 71, 0.08);
    border-left: 3px solid #8B6F47;
}

.what-you-build {
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid #F59E0B;
}

.what-you-do-simple {
    background: rgba(139, 111, 71, 0.08);
    border-left: 3px solid #8B6F47;
}

.provide-title,
.build-title,
.do-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.provide-list,
.build-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.provide-list li,
.build-list li {
    margin-bottom: 0.25rem;
}

.do-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

/* ========================================
   DEVELOPER WARNING
   ======================================== */

.dev-warning {
    margin: 1rem 0;
    padding: 0.875rem 1rem;
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid #EF4444;
    border-radius: 0 8px 8px 0;
}

.dev-warning .warning-text {
    font-size: 0.8125rem;
    color: #DC2626;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

/* ========================================
   BEST FOR - EVERYONE HIGHLIGHT
   ======================================== */

.best-for-note.best-for-everyone {
    background: rgba(139, 111, 71, 0.1);
    border-color: #8B6F47;
}

.best-for-note.best-for-everyone .best-for-label {
    color: #8B6F47;
}

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

@media (max-width: 768px) {
    .what-we-provide,
    .what-you-build,
    .what-you-do-simple {
        padding: 0.875rem;
    }

    .provide-title,
    .build-title,
    .do-title {
        font-size: 0.8125rem;
    }

    .provide-list,
    .build-list {
        font-size: 0.75rem;
    }

    .dev-warning .warning-text {
        font-size: 0.75rem;
    }
}
