/**
 * Simulateur Google Ads - Styles Premium
 * Design immersif avec animations subtiles
 */

/* ========================================
   HERO SECTION
======================================== */
.sim-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
    overflow: hidden;
    background: var(--gray-950);
}

.sim-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sim-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(103, 84, 233, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(217, 184, 67, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(103, 84, 233, 0.2), transparent);
}

.sim-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.sim-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.sim-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(103, 84, 233, 0.4);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sim-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(217, 184, 67, 0.3);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.sim-hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(103, 84, 233, 0.3);
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.sim-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

.sim-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.sim-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.sim-hero-title-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #f0d76a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sim-hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto var(--space-10);
    line-height: 1.6;
}

.sim-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.sim-hero-stat {
    text-align: center;
}

.sim-hero-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
}

.sim-hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-1);
}

.sim-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.sim-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(103, 84, 233, 0.4);
}

.sim-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(103, 84, 233, 0.4);
}

.sim-hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sim-hero-cta:hover svg {
    transform: translateX(4px);
}

/* Google Partner Badge */
.sim-hero-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin: var(--space-6) auto var(--space-8);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    width: fit-content;
}

.sim-partner-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.sim-partner-logo {
    width: 24px;
    height: 24px;
}

.sim-partner-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sim-partner-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sim-partner-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
}

.sim-partner-certified {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    padding-left: var(--space-3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sim-hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sim-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}


/* ========================================
   MAIN SIMULATOR SECTION
======================================== */
.sim-main {
    padding: var(--space-16) 0 var(--space-20);
    background: var(--gray-50);
    min-height: 100vh;
}

/* Progress Indicator */
.sim-progress {
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.sim-progress-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.sim-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    width: 33%;
}

.sim-progress-steps {
    display: flex;
    justify-content: space-between;
}

.sim-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.sim-progress-step.active,
.sim-progress-step.completed {
    opacity: 1;
}

.sim-progress-step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    border-radius: 50%;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.sim-progress-step.active .sim-progress-step-num {
    background: var(--primary);
    color: var(--white);
}

.sim-progress-step.completed .sim-progress-step-num {
    background: var(--success);
    color: var(--white);
}

.sim-progress-step-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.sim-progress-step.active .sim-progress-step-label {
    color: var(--gray-900);
    font-weight: 500;
}


/* Container Grid */
.sim-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.sim-container.results-mode {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .sim-container {
        grid-template-columns: 1fr;
    }
}

.sim-results-wrapper.fullwidth {
    width: 100%;
}


/* ========================================
   FORM WRAPPER
======================================== */
.sim-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.08);
}

.sim-form {
    position: relative;
}

/* Steps */
.sim-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.sim-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sim-step-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.sim-step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.sim-step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.sim-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.sim-step-subtitle {
    font-size: var(--text-sm);
    color: var(--gray-500);
}


/* ========================================
   INDUSTRY CARDS
======================================== */
.sim-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

@media (max-width: 768px) {
    .sim-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sim-industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-3);
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.sim-industry-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sim-industry-card.selected {
    background: var(--primary-50);
    border-color: var(--primary);
}

.sim-industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
}

.sim-industry-card.selected .sim-industry-icon {
    background: var(--primary);
}

.sim-industry-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gray-600);
    transition: stroke 0.25s ease;
}

.sim-industry-card.selected .sim-industry-icon svg {
    stroke: var(--white);
}

.sim-industry-name {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.3;
}

.sim-industry-card.selected .sim-industry-name {
    color: var(--primary-700);
}

.sim-industry-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.sim-industry-card.selected .sim-industry-check {
    opacity: 1;
    transform: scale(1);
}

.sim-industry-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
}


/* ========================================
   SUB-SECTOR SELECTION
======================================== */
.sim-subsector-container {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sim-subsector-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.sim-subsector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.sim-subsector-btn {
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sim-subsector-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.sim-subsector-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(103, 84, 233, 0.3);
}


/* ========================================
   METRICS CARDS
======================================== */
.sim-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 640px) {
    .sim-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.sim-metric-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    transition: all 0.25s ease;
}

.sim-metric-card:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(103, 84, 233, 0.1);
}

.sim-metric-card-large {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .sim-metric-card-large {
        grid-column: span 1;
    }
}

.sim-metric-card-optional {
    border-style: dashed;
    background: transparent;
}

.sim-metric-card-computed {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.sim-metric-card-computed:focus-within {
    border-color: var(--gray-300);
    box-shadow: none;
}

.sim-metric-input-readonly {
    background: var(--white);
    color: var(--gray-700);
    cursor: default;
    font-weight: 600;
}

.sim-metric-computed {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.sim-metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.sim-metric-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.sim-metric-required {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-50);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
}

.sim-metric-optional {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-500);
}

.sim-metric-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.sim-metric-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    padding-right: var(--space-12);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    transition: all 0.2s ease;
}

.sim-metric-input:focus {
    outline: none;
    border-color: var(--primary);
}

.sim-metric-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.sim-metric-unit {
    position: absolute;
    right: var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-500);
    pointer-events: none;
}

.sim-metric-hint {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: var(--space-2);
}

/* Slider */
.sim-metric-slider-wrap {
    margin-top: var(--space-4);
}

.sim-metric-slider {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.sim-metric-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(103, 84, 233, 0.3);
    transition: transform 0.2s ease;
}

.sim-metric-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.sim-metric-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(103, 84, 233, 0.3);
}

.sim-metric-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--gray-500);
}


/* "Je ne sais pas" - Option pour ceux qui ne connaissent pas leurs métriques */
.sim-dont-know {
    margin-top: var(--space-8);
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px dashed var(--gray-300);
}

.sim-dont-know-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0 0 var(--space-3) 0;
}

.sim-dont-know-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sim-dont-know-link:hover {
    background: var(--primary);
    color: var(--white);
}

.sim-dont-know-link svg {
    width: 16px;
    height: 16px;
}

.sim-dont-know-subtext {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: var(--space-3) 0 0 0;
}


/* Step Actions */
.sim-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.sim-btn-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sim-btn-back:hover {
    color: var(--gray-900);
}

.sim-btn-back svg {
    width: 18px;
    height: 18px;
}

.sim-btn-calculate {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--primary), var(--primary-600));
    border: none;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 84, 233, 0.3);
}

.sim-btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 84, 233, 0.4);
}

.sim-btn-calculate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sim-btn-calculate svg {
    width: 18px;
    height: 18px;
}


/* ========================================
   RESULTS WRAPPER
======================================== */
.sim-results-wrapper {
    position: sticky;
    top: var(--space-8);
}

.sim-results {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Empty State */
.sim-results-empty {
    padding: var(--space-12) var(--space-8);
    text-align: center;
}

.sim-results-empty-visual {
    margin-bottom: var(--space-6);
}

.sim-results-empty-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-2);
    height: 80px;
}

.sim-results-empty-bar {
    width: 32px;
    height: var(--height);
    background: var(--gray-200);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    animation: emptyBarPulse 2s ease-in-out infinite;
}

.sim-results-empty-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.sim-results-empty-bar-accent {
    background: linear-gradient(to top, var(--primary-200), var(--primary-100));
    animation-delay: 0.4s;
}

@keyframes emptyBarPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.sim-results-empty-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.sim-results-empty-text {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* ========================================
   RESULTS - RAPPORT ÉPURÉ ET LIMPIDE
======================================== */

.sim-results-content {
    animation: reportReveal 0.5s var(--ease-out-expo);
}

@keyframes reportReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header minimal */
.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.report-sector-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.report-reset {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-reset:hover {
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.report-reset svg {
    width: 14px;
    height: 14px;
}

/* Message principal - LE chiffre clé */
.report-headline {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.report-headline-intro {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin: 0 0 var(--space-3) 0;
}

.report-headline-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}

.report-headline-amount {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--success);
    line-height: 1;
}

.report-headline-period {
    font-size: var(--text-xl);
    color: var(--gray-500);
    font-weight: 500;
}

.report-headline-sub {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

/* Tableau comparatif */
.report-table {
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.report-table-header {
    display: grid;
    grid-template-columns: 1fr 100px 100px 80px;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-4);
}

.report-table-col {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.report-col-before {
    color: var(--gray-400);
}

.report-col-after {
    color: var(--primary);
}

.report-col-gain {
    color: var(--gray-500);
}

.report-table-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px 80px;
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-100);
}

.report-table-row:last-child {
    border-bottom: none;
}

.report-table-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
}

.report-label-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.report-label-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
}

.report-table-val {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
}

.report-val-before {
    color: var(--gray-400);
    text-decoration: line-through;
}

.report-val-after {
    color: var(--gray-900);
}

.report-val-gain {
    font-size: var(--text-sm);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
}

.report-gain-positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

/* Résumé des gains */
.report-summary {
    padding: var(--space-6);
    background: var(--gray-50);
}

.report-summary-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin: 0 0 var(--space-4) 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.report-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.report-summary-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--gray-700);
}

.report-summary-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

.report-summary-item strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* CTA principal */
.report-cta {
    padding: var(--space-8) var(--space-6);
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, rgba(103, 84, 233, 0.03) 100%);
}

.report-cta-question {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-5);
}

.report-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    max-width: 400px;
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--primary), var(--primary-600));
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-lg);
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(103, 84, 233, 0.3);
}

.report-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 84, 233, 0.4);
}

.report-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.report-cta-button:hover svg {
    transform: translateX(4px);
}

.report-cta-reassurance {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: var(--space-4) 0 0 0;
}

/* Note de bas de page */
.report-footnote {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-xs);
    color: var(--gray-400);
    border-top: 1px solid var(--gray-200);
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .report-table-header,
    .report-table-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .report-table-header {
        display: none;
    }

    .report-table-row {
        padding: var(--space-4);
        background: var(--gray-50);
        border-radius: var(--radius-lg);
        margin-bottom: var(--space-3);
        border-bottom: none;
    }

    .report-table-label {
        margin-bottom: var(--space-2);
    }

    .report-table-val {
        text-align: left;
    }

    .report-val-before::before {
        content: 'Avant : ';
        font-weight: 400;
        color: var(--gray-500);
    }

    .report-val-after::before {
        content: 'Après : ';
        font-weight: 400;
        color: var(--gray-500);
    }

    .report-val-gain {
        display: inline-block;
        margin-top: var(--space-2);
    }

    .report-headline-value {
        flex-direction: column;
        gap: var(--space-1);
    }

    .report-headline-period {
        font-size: var(--text-base);
    }
}


/* ========================================
   SOCIAL PROOF SECTION
======================================== */
.sim-proof {
    padding: var(--space-16) 0;
    background: var(--white);
}

.sim-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .sim-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sim-proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.sim-proof-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.sim-proof-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.sim-proof-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.sim-proof-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
}


/* ========================================
   FINAL CTA SECTION
======================================== */
.sim-final-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.sim-final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sim-final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.sim-final-cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
}

.sim-final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 1024px) {
    .sim-results-wrapper {
        position: static;
    }

    .sim-results-cards {
        grid-template-columns: 1fr;
    }

    .sim-results-annual-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .sim-results-annual-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .sim-hero {
        min-height: auto;
        padding: calc(80px + var(--space-8)) 0 var(--space-8);
    }

    .sim-hero-stats {
        gap: var(--space-4);
    }

    .sim-hero-stat-divider {
        display: none;
    }

    .sim-hero-stat {
        flex: 1;
        min-width: 80px;
    }

    .sim-hero-scroll {
        display: none;
    }

    .sim-hero-partner {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
        padding: var(--space-3) var(--space-4);
    }

    .sim-partner-certified {
        border-left: none;
        padding-left: 0;
        padding-top: var(--space-2);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sim-form-wrapper {
        padding: var(--space-5);
    }

    .sim-step-actions {
        flex-direction: column-reverse;
        gap: var(--space-3);
    }

    .sim-btn-calculate {
        width: 100%;
        justify-content: center;
    }

    .sim-btn-back {
        width: 100%;
        justify-content: center;
    }

    .sim-proof-grid {
        grid-template-columns: 1fr;
    }

    .sim-proof-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* ==========================================================================
   BON PERFORMEUR - Vue alternative pour clients déjà optimisés
   ========================================================================== */

.sim-results-good-performer {
    padding: var(--space-6);
}

/* Message de félicitations */
.report-congrats {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(135deg, var(--success-100), rgba(16, 185, 129, 0.05));
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
}

.report-congrats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--success);
    border-radius: 50%;
    margin-bottom: var(--space-4);
    animation: pulse-success 2s ease-in-out infinite;
}

.report-congrats-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

@keyframes pulse-success {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

.report-congrats-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.report-congrats-text {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
    max-width: 500px;
    margin: 0 auto;
}

.report-congrats-text strong {
    color: var(--success);
    font-weight: var(--font-semibold);
}

/* Comparaison visuelle benchmark */
.report-benchmark-visual {
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.report-benchmark-bar-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.report-benchmark-bar {
    position: relative;
    height: 48px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.report-benchmark-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--space-4);
    border-radius: var(--radius-md);
    transition: width 0.8s ease-out;
}

.report-benchmark-bar-avg {
    background: var(--gray-400);
    z-index: 1;
}

.report-benchmark-bar-user {
    background: linear-gradient(135deg, var(--success), #059669);
    z-index: 2;
}

.report-benchmark-bar-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: white;
    white-space: nowrap;
}

/* Pivot vers SEO */
.report-seo-pivot {
    background: linear-gradient(135deg, var(--primary-100), rgba(103, 84, 233, 0.05));
    border: 1px solid var(--primary-400);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.report-seo-pivot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.report-seo-pivot-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.report-seo-pivot-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.report-seo-pivot-text {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.report-seo-pivot-text strong {
    color: var(--primary);
    font-weight: var(--font-semibold);
}

.report-seo-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.report-seo-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.report-seo-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA SEO variant */
.report-cta-seo {
    background: linear-gradient(135deg, var(--success), #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.report-cta-seo:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Responsive pour bon performeur */
@media (max-width: 768px) {
    .sim-results-good-performer {
        padding: var(--space-4);
    }

    .report-congrats {
        padding: var(--space-6) var(--space-4);
    }

    .report-congrats-title {
        font-size: var(--text-xl);
    }

    .report-congrats-text {
        font-size: var(--text-base);
    }

    .report-seo-pivot {
        padding: var(--space-4);
    }

    .report-seo-pivot-title {
        font-size: var(--text-lg);
    }
}
