/* ========================================
   Polices personnalisées
   ======================================== */
/* VCNudge est chargée via CDN dans index.html */

@font-face {
    font-family: 'Swissnow';
    src: url('fonts/Swissnow-Regular.woff2') format('woff2'),
         url('fonts/Swissnow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   Variables & Reset - Thème clair
   ======================================== */
:root {
    /* Gradient background */
    --gradient-bg-1: #ffe8c8;
    --gradient-bg-2: #ffe8e0;
    --gradient-bg-3: #eae7fb;
    
    /* Couleurs principales */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --success: #10b981;
    --success-light: #34d399;
    --danger: #ef4444;
    
    /* Surfaces */
    --background: linear-gradient(135deg, var(--gradient-bg-1) 0%, var(--gradient-bg-2) 50%, var(--gradient-bg-3) 100%);
    --surface: rgba(255, 255, 255, 0.85);
    --surface-solid: #ffffff;
    --surface-light: rgba(255, 255, 255, 0.6);
    --surface-hover: rgba(255, 255, 255, 0.95);
    
    /* Textes - NOIR */
    --text: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-light: #888888;
    
    /* Bordures */
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);
    
    /* Effets */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    
    /* Rayons */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Polices */
    --font-title: 'VC Nudge Trial', 'SF Pro Display', -apple-system, sans-serif;
    --font-body: 'Swissnow', 'SF Pro Text', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background: var(--background);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

/* ========================================
   Site Header / Logo
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

/* ========================================
   App Container & Pages
   ======================================== */
.app-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 20px 20px;
}

.page {
    display: none;
    width: 100%;
    max-width: 720px;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

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

/* ========================================
   Typographie
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text);
}

/* ========================================
   Welcome Page
   ======================================== */
.welcome-content {
    text-align: center;
    padding: 10px 20px;
}

.welcome-badge {
    display: inline-block;
    background: var(--surface-solid);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.welcome-content h1 {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
}

.welcome-content h1 .highlight {
    color: var(--primary);
}

.welcome-content h1 .underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.welcome-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.welcome-content .btn-start {
    margin-top: 8px;
    margin-bottom: 0;
}

/* What you get section */
.what-you-get {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: left;
}

/* Radar Chart Preview - Page d'accueil */
.radar-preview-container {
    margin-bottom: 24px;
}

.radar-preview {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-chart-preview {
    width: 100%;
    height: 100%;
}


.radar-level-preview {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 1;
}

.radar-axis-preview {
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 1;
}

.radar-data-preview {
    fill: rgba(99, 102, 241, 0.2);
    stroke: var(--primary);
    stroke-width: 2.5;
    animation: radar-pulse-preview 3s ease-in-out infinite;
}

.radar-point-preview {
    fill: var(--primary);
    stroke: white;
    stroke-width: 2;
    animation: point-pulse-preview 3s ease-in-out infinite;
}

.radar-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.radar-label-svg {
    font-size: 1.4rem;
    text-anchor: middle;
    dominant-baseline: middle;
}

@keyframes radar-pulse-preview {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes point-pulse-preview {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* What you get section */
.what-you-get h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefit List Simple - 3 colonnes */
.benefit-list-simple {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
}

.benefit-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.benefit-simple:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-family: var(--font-body);
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

.benefit-desc {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .welcome-content {
        padding: 24px 16px 32px;
    }
    
    .welcome-content h1 {
        font-size: 2.1rem;
        margin-bottom: 10px;
        line-height: 1.15;
    }
    
    .welcome-content .btn-start {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.05rem;
        margin-bottom: 0;
    }
    
    .trust-badge {
        display: none;
    }
    
    .welcome-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.55;
    }
    
    .welcome-description br {
        display: none;
    }
    
    .radar-preview-container {
        margin-bottom: 16px;
    }
    
    .radar-preview {
        width: 220px;
        height: 220px;
    }
    
    .what-you-get {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .what-you-get h3 {
        margin-bottom: 12px;
        font-size: 0.75rem;
    }
    
    .benefit-list-simple {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .benefit-simple {
        flex-direction: row;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
        gap: 12px;
        align-items: center;
    }
    
    .benefit-icon {
        font-size: 1.4rem;
    }
    
    .benefit-text-group {
        gap: 2px;
    }
    
    .benefit-title {
        font-size: 0.88rem;
    }
    
    .benefit-desc {
        display: block;
        font-size: 0.75rem;
    }
    
    .welcome-meta {
        gap: 6px;
        margin-top: 20px;
        margin-bottom: 28px;
        flex-wrap: nowrap;
    }
    
    .meta-item {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 4px;
        white-space: nowrap;
    }
    
    .trust-badge {
        margin-top: 12px;
        font-size: 0.8rem;
    }
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 16px;
    background: var(--surface-solid);
    border-radius: var(--radius);
    transition: transform 0.2s ease;
    border: 1px solid var(--border);
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.benefit-text strong {
    font-family: var(--font-title);
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

.benefit-text span {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.welcome-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 32px;
    flex-wrap: nowrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 8px 16px;
    background: var(--surface);
    border-radius: 50px;
    border: 1px solid var(--border);
}

.trust-badge {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text);
    color: white;
    border: none;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

/* Bouton de démarrage spécial */
.btn-start {
    padding: 20px 50px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    animation: pulse-btn 2s infinite;
}

.btn-start:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-start .btn-arrow {
    font-size: 1.4rem;
    animation: bounce-right 1s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    }
}

@keyframes bounce-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--surface-solid);
    color: var(--text);
    border: 1px solid var(--border-strong);
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--text-muted);
}

/* ========================================
   Profiling Page
   ======================================== */
.profiling-header {
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.step.active {
    color: white;
    background: var(--text);
    border-color: var(--text);
}

.step.completed {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
}

.profiling-content {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow);
}

.profiling-content h2 {
    font-family: var(--font-title);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text);
}

.profiling-subtitle {
    font-family: var(--font-body);
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.profiling-questions {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 30px;
}

.profiling-question label {
    display: block;
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 1.05rem;
}

.profiling-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profiling-option {
    background: var(--surface-solid);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 18px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profiling-option:hover {
    border-color: var(--text-muted);
    background: var(--surface-hover);
}

.profiling-option.selected {
    border-color: var(--text);
    background: var(--text);
    color: white;
}

.btn-continue {
    width: 100%;
}

/* ========================================
   Quiz Page
   ======================================== */
.quiz-header {
    margin-bottom: 25px;
}

.progress-container {
    margin: 20px 0;
}

.progress-text {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.progress-text span:first-child {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-bar {
    height: 8px;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-fill {
    height: 100%;
    background: var(--text);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 8.33%;
}

.category-badge {
    display: inline-block;
    background: var(--surface-solid);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.quiz-content {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.question-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.3;
    color: var(--text);
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: var(--surface-solid);
    border: 2px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-option:hover {
    border-color: var(--text-muted);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.answer-option.selected {
    border-color: var(--text);
    background: var(--text);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.answer-emoji {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 16px;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.answer-option:hover .answer-emoji {
    transform: scale(1.05);
}

.answer-option.selected .answer-emoji {
    background: white;
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.answer-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-solid);
    color: var(--text);
    border: 1px solid var(--border-strong);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover:not(:disabled) {
    background: var(--surface-hover);
    border-color: var(--text-muted);
}

.btn-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-next {
    background: var(--text);
    color: white;
    border: none;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.question-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--surface-solid);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover { background: var(--text-light); }
.dot.answered { background: var(--text); border-color: var(--text); }
.dot.current { border-color: var(--text); transform: scale(1.3); }

/* ========================================
   Loading Page
   ======================================== */
.loading-content {
    text-align: center;
    padding: 50px 20px;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 35px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) { border-top-color: var(--text); }
.spinner-ring:nth-child(2) { 
    border-right-color: var(--text-muted);
    animation-delay: 0.2s;
    width: 65%; height: 65%; top: 17.5%; left: 17.5%;
}
.spinner-ring:nth-child(3) {
    border-bottom-color: var(--text-light);
    animation-delay: 0.4s;
    width: 35%; height: 35%; top: 32.5%; left: 32.5%;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text);
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-10px);
}

.loading-step.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

.step-check {
    color: var(--success);
    font-weight: bold;
}

/* ========================================
   Capture Email Page
   ======================================== */
.capture-content {
    text-align: center;
    padding: 40px 20px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.capture-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.capture-content h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text);
}

.capture-subtitle {
    font-family: var(--font-body);
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
}

.capture-form {
    max-width: 350px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--surface-solid);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.btn-results {
    width: 100%;
    margin-top: 10px;
}

.capture-privacy {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   Results Page - Premium Design
   ======================================== */
.results-content {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* 1. Hero - Score */
.results-hero {
    text-align: center;
    padding: 50px 30px 40px;
    background: white;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

.score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.score-circle {
    position: relative;
    width: 180px;
    height: 180px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    overflow: visible;
}

.score-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: var(--gauge-color, var(--primary));
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-percent {
    display: block;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

/* Verdict sous la jauge */
.score-verdict {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    opacity: 0;
    animation: fadeSlideUp 0.5s ease both;
    animation-delay: 1.4s;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.verdict-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: var(--gauge-color, var(--primary));
}

.verdict-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Courbe de distribution */
.score-curve-container {
    width: 100%;
    max-width: 340px;
    margin-top: 28px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease both;
    animation-delay: 1.8s;
}

.curve-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 8px;
}

.score-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

.curve-area {
    opacity: 0.12;
}

.curve-line {
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 1.5;
    opacity: 0.5;
}

.curve-area-left {
    opacity: 0.08;
}

.curve-area-highlight {
    opacity: 0.25;
}

.curve-marker-line {
    stroke: var(--gauge-color, var(--primary));
    stroke-width: 2;
    stroke-dasharray: 4 3;
}

.curve-marker-dot {
    fill: var(--gauge-color, var(--primary));
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.curve-marker-label {
    font-family: var(--font-title);
    font-size: 9px;
    font-weight: 700;
    fill: var(--gauge-color, var(--primary));
}

.curve-marker-pct {
    font-family: var(--font-title);
    font-size: 8px;
    font-weight: 600;
    fill: var(--text-muted);
}

.curve-axis-label {
    font-family: var(--font-body);
    font-size: 7px;
    fill: var(--text-light);
}

.curve-x-labels text {
    font-family: var(--font-body);
    font-size: 7px;
    fill: var(--text-light);
}

/* Paliers de couleur pour la jauge */
.score-display.score-level-low {
    --gauge-color: #ef4444;
    --gauge-glow: rgba(239, 68, 68, 0.3);
}

.score-display.score-level-medium {
    --gauge-color: #f59e0b;
    --gauge-glow: rgba(245, 158, 11, 0.3);
}

.score-display.score-level-good {
    --gauge-color: #22c55e;
    --gauge-glow: rgba(34, 197, 94, 0.3);
}

.score-display.score-level-high {
    --gauge-color: #10b981;
    --gauge-glow: rgba(16, 185, 129, 0.4);
}

.hook-phrase {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    max-width: 380px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease both;
    animation-delay: 2.2s;
}

/* 2. Profil Premium - Style MBTI */
.profile-card-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

.profile-header-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-emoji-large {
    font-size: 4.5rem;
    line-height: 1;
}

.profile-badge {
    flex: 1;
}

.profile-type {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.profile-name-premium {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.profile-trait {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.profile-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 20px 0;
}

.profile-description-premium {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.profile-tension-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-dark);
    line-height: 1.5;
}

/* Diagnostic par compétence - Radar Chart */
.skills-diagnostic {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.skills-diagnostic-header {
    margin-bottom: 8px;
}

.skills-diagnostic-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.skills-radar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radar-chart-results {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
}

/* Grille du radar (pentagones concentriques) */
.radar-grid-results {
    fill: none;
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 1;
}

/* Axes du radar */
.radar-axis-results {
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* Polygone de données */
.radar-data-results {
    fill: rgba(99, 102, 241, 0.15);
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.2));
    animation: radar-data-appear 1s ease-out both;
    animation-delay: 0.3s;
}

@keyframes radar-data-appear {
    0% {
        opacity: 0;
        transform: scale(0.3);
        transform-origin: center;
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Points de données */
.radar-point-results {
    fill: var(--primary);
    stroke: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 3px rgba(99, 102, 241, 0.3));
    animation: radar-points-appear 0.5s ease-out both;
    animation-delay: 1s;
}

@keyframes radar-points-appear {
    0% { opacity: 0; r: 0; }
    100% { opacity: 1; r: 6; }
}

/* Labels emoji sur le radar */
.radar-label-emoji {
    font-size: 22px;
    text-anchor: middle;
    dominant-baseline: central;
}

.radar-label-pct {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.radar-pct-expert { fill: var(--primary); }
.radar-pct-high { fill: var(--success); }
.radar-pct-medium { fill: var(--secondary); }
.radar-pct-low { fill: var(--danger); }

/* Légende sous le radar */
.radar-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 340px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.radar-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radar-legend-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.radar-legend-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.radar-legend-score {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.radar-pct-text-expert { color: var(--primary); }
.radar-pct-text-high { color: var(--success); }
.radar-pct-text-medium { color: var(--secondary); }
.radar-pct-text-low { color: var(--danger); }

.radar-legend-verdict {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
    width: 110px;
    text-align: right;
}

.radar-verdict-expert { color: var(--primary); }
.radar-verdict-high { color: var(--success); }
.radar-verdict-medium { color: var(--secondary); }
.radar-verdict-low { color: var(--danger); }

/* Results Sections */
.results-section {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.results-section h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
}

/* 3. Blindspot Premium */
.blindspot-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.blindspot-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, transparent 100%);
    pointer-events: none;
}

.blindspot-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(245, 158, 11, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    position: relative;
}

.blindspot-title-premium {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
}

.blindspot-desc-premium {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px 0;
    position: relative;
}

/* Coût en temps : semaine → année */
.blindspot-cost {
    position: relative;
}

.blindspot-cost-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
}

.blindspot-cost-weekly,
.blindspot-cost-yearly {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.blindspot-cost-number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    letter-spacing: 0.3px;
}

.blindspot-cost-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.blindspot-cost-arrow {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.blindspot-cost-detail {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
    opacity: 0.8;
}

.blindspot-cost-detail strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* 4. Tâches déléguables à l'IA */
.delegatable-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--success);
    position: relative;
    overflow: hidden;
}

.delegatable-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.delegatable-header {
    margin-bottom: 24px;
    position: relative;
}

.delegatable-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.delegatable-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.delegatable-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.delegatable-tasks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
}

.delegatable-task-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(16, 185, 129, 0.12);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
    animation: delegatable-fade-in 0.4s ease both;
}

@keyframes delegatable-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delegatable-task-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
}

/* Première tâche = la plus essentielle, mise en avant */
.delegatable-task-card.delegatable-task-top {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-color: rgba(16, 185, 129, 0.25);
    padding: 18px 20px;
}

.delegatable-task-card.delegatable-task-top .delegatable-task-rank {
    background: var(--success);
    color: white;
}

/* Tâches d'optimisation (score 3) - style plus léger */
.delegatable-task-card.delegatable-task-optim {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-color: rgba(0, 0, 0, 0.06);
}

.delegatable-task-card.delegatable-task-optim .delegatable-task-rank {
    background: #e5e7eb;
    color: var(--text-muted);
}

.delegatable-task-card.delegatable-task-optim .delegatable-task-ai {
    color: var(--text-muted);
}

/* Numéro de rang */
.delegatable-task-rank {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #15803d;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.delegatable-task-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    font-size: 1.2rem;
}

.delegatable-task-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.delegatable-task-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0;
    line-height: 1.3;
}

.delegatable-task-ai {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #15803d;
    line-height: 1.5;
}

/* Footer avec compteur */
.delegatable-footer {
    position: relative;
    text-align: center;
}

.delegatable-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.12);
    margin-bottom: 14px;
}

.delegatable-counter-number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.delegatable-counter-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.3;
}

.delegatable-cta-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* 5. Témoignages Carrousel */
.testimonials-carousel-section {
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-badge {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 16px;
    animation: testimonials-scroll 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card-stars {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    line-height: 1;
}

.testimonial-card-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.testimonial-card-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.testimonial-card-author {
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.testimonial-card-author strong {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
}

/* 6. Timeline Premium - Progression par piliers */
.timeline-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

.timeline-header-section {
    text-align: center;
    margin-bottom: 28px;
}

.timeline-badge-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.timeline-score-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.timeline-from, .timeline-to {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.timeline-from-score {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-muted);
    line-height: 1;
}

.timeline-from-label, .timeline-to-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-arrow-big {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.timeline-to-score {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.timeline-to-label {
    color: var(--success);
    font-weight: 500;
}

/* Barre de progression globale */
.timeline-progress-bar-container {
    position: relative;
    margin-bottom: 32px;
    padding: 0 4px;
}

.timeline-progress-track {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.timeline-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--text-muted), #f59e0b, #22c55e, #10b981);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-week-markers {
    position: relative;
    height: 24px;
    margin-top: 6px;
}

.timeline-week-marker {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-week-marker::before {
    content: '';
    width: 2px;
    height: 6px;
    background: #ddd;
    margin-bottom: 2px;
}

.timeline-week-marker span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
}

.timeline-week-marker.target-marker span {
    color: var(--success);
    font-weight: 700;
}

.timeline-week-marker.target-marker::before {
    background: var(--success);
}

/* Piliers détaillés */
.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.timeline-step:last-child {
    border-bottom: none;
}

.timeline-step-week {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding-top: 2px;
}

.timeline-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-step-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
}

.timeline-step-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.timeline-step-gain {
    flex-shrink: 0;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 2px;
}

.timeline-step.step-final {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 4px;
    border-bottom: none;
}

.timeline-step.step-final .timeline-step-week {
    color: var(--success);
}

.timeline-step.step-final .timeline-step-title {
    color: var(--success);
}

.timeline-step-gain.final-gain {
    font-size: 1.1rem;
    background: var(--success);
    color: white;
    padding: 6px 14px;
}

/* Encart résultats */
.timeline-result-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding: 20px;
    background: #fafafa;
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
}

.timeline-result-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.timeline-result-number {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.timeline-result-unit {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
    max-width: 160px;
}

.timeline-result-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Bouton restart isolé */
.btn-restart {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-restart:hover {
    background: var(--surface);
    color: var(--text);
}

/* 7. CTA Premium */
.cta-premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 16px;
}

.cta-premium h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.cta-premium h3 span {
    color: rgba(255, 255, 255, 0.6);
}

.cta-premium h3 .cta-target,
#cta-score-before,
#cta-score-after {
    color: var(--success-light);
}

.cta-premium > p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0 0 24px 0;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-cta-premium span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-premium:hover span {
    transform: translateX(4px);
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-details span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Bouton restart discret */
.btn-restart {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-restart:hover {
    color: var(--text);
}

/* ========================================
   Responsive Design - Tablette
   ======================================== */
@media (max-width: 768px) {
    .results-hero { padding: 40px 24px 32px; }
    .profile-card-premium { padding: 28px 24px; }
    .blindspot-premium { padding: 28px 24px; }
    .delegatable-section { padding: 28px 24px; }
    .timeline-premium { padding: 28px 24px; }
    .cta-premium { padding: 32px 24px; }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 600px) {
    /* --- Base & Layout --- */
    body {
        padding-top: 60px;
        -webkit-text-size-adjust: 100%;
        font-size: 16px; /* Empêche le zoom auto iOS sur les inputs */
    }
    
    .site-header {
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }
    
    .logo-img { height: 32px; }
    
    .app-container {
        padding: 4px 0;
        min-height: calc(100vh - 60px);
    }
    
    .page {
        max-width: 100%;
    }
    
    /* --- Typographie mobile --- */
    h1, h2, h3, h4 {
        letter-spacing: 0.3px;
    }
    
    /* --- Quiz Header & Progress --- */
    .quiz-header {
        padding: 0 16px;
        margin-bottom: 16px;
    }
    
    .progress-container { margin: 12px 0; }
    
    .progress-bar { height: 6px; }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .step-indicator { gap: 10px; }
    .step { padding: 8px 14px; font-size: 0.8rem; }
    
    /* --- Quiz Content --- */
    .profiling-content,
    .quiz-content {
        padding: 20px 16px;
        margin: 0 10px 16px;
        border-radius: var(--radius);
    }
    
    .profiling-option { 
        width: 100%;
        justify-content: center;
    }
    
    .question-text {
        font-size: 1.15rem;
        margin-bottom: 20px;
        line-height: 1.35;
    }
    
    /* --- Answer Options - Touch Friendly --- */
    .answers-container {
        gap: 10px;
    }
    
    .answer-option {
        padding: 14px 14px;
        gap: 14px;
        border-radius: 16px;
        min-height: 60px; /* Touch target minimum */
        -webkit-tap-highlight-color: transparent;
    }
    
    .answer-option:hover {
        transform: none; /* Pas de translateX sur mobile */
    }
    
    .answer-option.selected {
        transform: none; /* Pas de translateX sur mobile */
    }
    
    .answer-emoji {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        border-radius: 12px;
    }
    
    .answer-option.selected .answer-emoji {
        transform: scale(1.1);
    }
    
    .answer-text {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    /* --- Quiz Navigation - Mobile Optimized --- */
    .quiz-navigation {
        flex-wrap: wrap;
        padding: 0 10px;
        gap: 12px;
    }
    
    .question-dots {
        order: -1;
        width: 100%;
        margin-bottom: 4px;
        gap: 6px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .btn-nav {
        padding: 12px 18px;
        font-size: 0.88rem;
        min-height: 44px; /* Touch target minimum */
        flex: 1;
        justify-content: center;
    }
    
    /* --- Score & Results Hero --- */
    .results-content {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .results-hero {
        padding: 32px 20px 28px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .score-circle { width: 140px; height: 140px; }
    .score-percent { font-size: 2.5rem; }
    
    .score-verdict { margin-top: 10px; }
    .verdict-badge { font-size: 0.75rem; padding: 4px 14px; }
    .verdict-label { font-size: 0.8rem; }
    
    .score-curve-container {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .hook-phrase {
        font-size: 1.05rem;
        max-width: 100%;
        padding: 0 4px;
    }
    
    .profile-emoji { font-size: 3.5rem; }
    .profile-title { font-size: 1.8rem; }
    
    /* --- Profil Premium Mobile --- */
    .profile-card-premium {
        padding: 22px 18px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .profile-header-premium {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .profile-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-emoji-large { font-size: 3rem; }
    .profile-name-premium { font-size: 1.4rem; text-align: center; }
    .profile-trait { text-align: center; font-size: 0.9rem; }
    .profile-description-premium { font-size: 0.92rem; line-height: 1.65; }
    
    .profile-tension-box {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    /* --- Radar Chart Mobile --- */
    .skills-diagnostic { margin-top: 20px; padding-top: 18px; }
    
    .radar-chart-results { max-width: 300px; }
    .radar-label-emoji { font-size: 18px; }
    .radar-label-pct { font-size: 10px; }
    
    .radar-legend {
        max-width: 100%;
        gap: 6px;
    }
    
    .radar-legend-item { gap: 8px; }
    .radar-legend-icon { font-size: 1rem; }
    .radar-legend-name { font-size: 0.82rem; }
    .radar-legend-score { font-size: 0.82rem; }
    .radar-legend-verdict { font-size: 0.7rem; width: auto; }
    
    /* --- Blindspot Mobile --- */
    .blindspot-premium {
        padding: 24px 18px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .blindspot-badge { font-size: 0.65rem; padding: 4px 12px; }
    .blindspot-title-premium { font-size: 1.2rem; }
    .blindspot-desc-premium { font-size: 0.92rem; line-height: 1.65; }
    
    .blindspot-cost-row {
        padding: 18px 14px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blindspot-cost-number { font-size: 1.5rem; }
    .blindspot-cost-label { font-size: 0.75rem; }
    .blindspot-cost-arrow { font-size: 1.2rem; }
    .blindspot-cost-detail { font-size: 0.75rem; }
    
    /* --- Delegatable Tasks Mobile --- */
    .delegatable-section {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .delegatable-header { margin-bottom: 18px; }
    .delegatable-badge { font-size: 0.65rem; padding: 4px 12px; }
    .delegatable-title { font-size: 1.15rem; }
    .delegatable-subtitle { font-size: 0.85rem; }
    
    .delegatable-tasks-list { gap: 8px; }
    
    .delegatable-task-card {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .delegatable-task-card:hover {
        transform: none; /* Pas de hover sur mobile */
    }
    
    .delegatable-task-rank { width: 24px; height: 24px; font-size: 0.7rem; }
    .delegatable-task-icon { width: 36px; height: 36px; font-size: 1rem; border-radius: 10px; }
    .delegatable-task-name { font-size: 0.88rem; }
    .delegatable-task-ai { font-size: 0.8rem; line-height: 1.45; }
    
    .delegatable-counter { padding: 14px 16px; gap: 8px; }
    .delegatable-counter-number { font-size: 1.5rem; }
    .delegatable-counter-label { font-size: 0.85rem; }
    
    /* --- Timeline Mobile --- */
    .timeline-premium {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .timeline-header-section { margin-bottom: 22px; }
    .timeline-badge-label { font-size: 0.65rem; padding: 4px 12px; }
    
    .timeline-score-comparison { gap: 14px; }
    .timeline-from-score, .timeline-to-score { font-size: 2rem; }
    .timeline-from-label, .timeline-to-label { font-size: 0.7rem; }
    
    .timeline-arrow-big svg { width: 36px; height: 18px; }
    
    .timeline-progress-bar-container { margin-bottom: 24px; }
    
    .timeline-steps { gap: 0; }
    
    .timeline-step {
        gap: 10px;
        padding: 14px 0;
    }
    
    .timeline-step-week {
        width: 60px;
        font-size: 0.68rem;
    }
    
    .timeline-step-title { font-size: 0.9rem; }
    .timeline-step-desc { font-size: 0.8rem; line-height: 1.45; }
    .timeline-step-gain { font-size: 0.78rem; padding: 3px 8px; }
    
    .timeline-step.step-final { padding: 14px 12px; }
    .timeline-step-gain.final-gain { font-size: 0.95rem; padding: 5px 12px; }
    
    .timeline-result-box {
        flex-direction: column;
        gap: 14px;
        padding: 18px 16px;
        margin-top: 18px;
    }
    
    .timeline-result-number { font-size: 1.4rem; }
    .timeline-result-unit { font-size: 0.72rem; max-width: 200px; }
    .timeline-result-divider { width: 60px; height: 1px; }
    
    /* --- Testimonials Carousel Mobile --- */
    .testimonials-carousel-section { margin-bottom: 14px; }
    .testimonial-card {
        width: 260px;
        padding: 18px;
        gap: 10px;
        border-radius: var(--radius);
    }
    .testimonial-card-title { font-size: 0.92rem; }
    .testimonial-card-text { font-size: 0.82rem; line-height: 1.55; }
    .testimonial-card-author strong { font-size: 0.8rem; }
    .testimonials-badge { font-size: 1rem; }
    
    /* --- CTA Mobile --- */
    .cta-premium {
        padding: 28px 18px;
        border-radius: var(--radius-lg);
        margin-bottom: 14px;
    }
    
    .cta-premium h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .cta-premium > p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .btn-cta-premium {
        padding: 16px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-cta-premium:hover {
        transform: none;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 6px;
    }
    
    /* --- Capture Page Mobile --- */
    .capture-content {
        margin: 0 10px;
        padding: 30px 18px;
        border-radius: var(--radius-lg);
    }
    
    .capture-icon { font-size: 3rem; margin-bottom: 14px; }
    .capture-content h2 { font-size: 1.4rem; }
    .capture-subtitle { font-size: 0.9rem; margin-bottom: 22px; }
    
    .capture-form { max-width: 100%; }
    
    .form-group input {
        padding: 14px 18px;
        font-size: 16px; /* Empêche le zoom iOS */
    }
    
    .capture-privacy { font-size: 0.8rem; }
    
    /* --- Loading Page Mobile --- */
    .loading-content { padding: 40px 20px; }
    .loading-text { font-size: 1.3rem; }
    .loading-step { font-size: 0.88rem; }
    
    /* --- Restart Button Mobile --- */
    .btn-restart {
        padding: 14px;
        font-size: 0.85rem;
        border-radius: var(--radius);
        min-height: 44px;
    }
}

/* ========================================
   Responsive Design - Très petit mobile
   ======================================== */
@media (max-width: 380px) {
    .welcome-content h1 {
        font-size: 1.7rem;
    }
    
    .welcome-description {
        font-size: 0.85rem;
    }
    
    .radar-preview {
        width: 200px;
        height: 200px;
    }
    
    .benefit-list-simple {
        gap: 6px;
    }
    
    .benefit-simple {
        padding: 10px 12px;
    }
    
    .answer-emoji {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .question-text {
        font-size: 1.05rem;
    }
    
    .score-circle { width: 120px; height: 120px; }
    .score-percent { font-size: 2.2rem; }
    
    .profile-name-premium { font-size: 1.25rem; }
    
    .timeline-step-week { width: 52px; font-size: 0.62rem; }
    .timeline-step-title { font-size: 0.85rem; }
    
    .delegatable-task-icon { display: none; }
    
    .blindspot-cost-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .blindspot-cost-arrow {
        transform: rotate(90deg);
    }
    
    .cta-premium h3 { font-size: 1.1rem; }
    .btn-cta-premium { padding: 14px 20px; font-size: 0.88rem; }
}

/* ========================================
   Touch & Interaction Improvements
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Retirer les effets hover sur les appareils tactiles */
    .answer-option:hover {
        border-color: var(--border);
        transform: none;
        box-shadow: none;
    }
    
    .answer-option.selected:hover {
        border-color: var(--text);
        background: var(--text);
    }
    
    .benefit-simple:hover {
        transform: none;
        box-shadow: none;
    }
    
    .delegatable-task-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .testimonial-card:hover {
        transform: none;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .btn-cta-premium:hover {
        transform: none;
    }
    
    /* Active states pour feedback tactile */
    .answer-option:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-primary:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .btn-nav:active:not(:disabled) {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .btn-cta-premium:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .dot:active {
        transform: scale(1.5);
    }
}

/* Animations */
.slide-in-right {
    animation: slideInRight 0.4s ease;
}

.slide-in-left {
    animation: slideInLeft 0.4s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
