/* ════════════════════════════════
   QUESTIONS EXPERT — Feature page
════════════════════════════════ */

/* ─── Shared buttons (same as home) ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--ncp-primary);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 42, 58, 0.2);
}
.btn-primary--large {
    padding: 12px 28px;
    font-size: 15px;
}
.btn-primary--large:hover {
    box-shadow: 0 12px 40px rgba(28, 42, 58, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(28, 42, 58, 0.25);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-outline:hover {
    background: rgba(28, 42, 58, 0.04);
    border-color: rgba(28, 42, 58, 0.4);
}
.btn-outline--light {
    border-color: rgba(28, 42, 58, 0.2);
}

/* ─── Section label with rotating glow ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ncp-primary);
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    background: #fff;
    z-index: 0;
}
.section-label::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: conic-gradient(
        from var(--label-angle, 0deg),
        var(--ncp-secondary),
        var(--ncp-primary),
        var(--ncp-secondary),
        var(--ncp-primary),
        var(--ncp-secondary)
    );
    z-index: -2;
    animation: labelGlow 4s linear infinite;
}
.section-label::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 100px;
    background: #fff;
    z-index: -1;
}
@property --label-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes labelGlow {
    to { --label-angle: 360deg; }
}
.section-label svg {
    width: 14px;
    height: 14px;
    stroke: var(--ncp-primary);
    fill: none;
    stroke-width: 2;
}

/* ─── Scroll reveal initial state ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

/* ─── Decorative elements ─── */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(28, 42, 58, 0.06);
}
.decor-circle--1 {
    width: 300px; height: 300px;
    top: 10%; right: -60px;
    animation: decorFloat 20s ease-in-out infinite;
}
.decor-circle--2 {
    width: 180px; height: 180px;
    bottom: 15%; left: 5%;
    border-color: rgba(216, 225, 234, 0.4);
    animation: decorFloat 16s ease-in-out infinite reverse;
}
.decor-circle--3 {
    width: 80px; height: 80px;
    top: 25%; left: 12%;
    border-color: rgba(28, 42, 58, 0.04);
    animation: decorFloat 12s ease-in-out infinite 2s;
}
.decor-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(28, 42, 58, 0.06), transparent);
}
.decor-line--1 { height: 200px; top: 8%; left: 20%; animation: decorFloat 14s ease-in-out infinite; }
.decor-line--2 { height: 140px; bottom: 12%; right: 22%; animation: decorFloat 18s ease-in-out infinite reverse; }
.decor-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(28, 42, 58, 0.08);
    animation: decorPulse 6s ease-in-out infinite;
}
.decor-dot--1 { width: 5px; height: 5px; top: 18%; left: 30%; animation-delay: 0s; }
.decor-dot--2 { width: 4px; height: 4px; top: 65%; right: 28%; animation-delay: -1.5s; }
.decor-dot--3 { width: 6px; height: 6px; bottom: 25%; left: 18%; animation-delay: -3s; }
.decor-dot--4 { width: 3px; height: 3px; top: 35%; right: 12%; animation-delay: -4.5s; }

@keyframes decorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes decorPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.5); }
}


/* ════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════ */
.expert-hero {
    position: relative;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.expert-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 225, 234, 0.7), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(28, 42, 58, 0.12), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(216, 225, 234, 0.4), transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(201, 183, 156, 0.08), transparent 40%),
        #F7F8FA;
    animation: heroMeshMove 16s ease infinite;
}
@keyframes heroMeshMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 70% 20%; }
    25% { background-position: 10% 20%, 90% 80%, 40% 60%, 60% 30%; }
    50% { background-position: 5% 10%, 95% 90%, 55% 45%, 75% 15%; }
    75% { background-position: 15% 5%, 85% 85%, 45% 55%, 65% 25%; }
}

.expert-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}
.expert-hero-glow--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.5), transparent 70%);
    top: -120px; left: -150px;
}
.expert-hero-glow--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(28, 42, 58, 0.08), transparent 70%);
    bottom: -80px; right: -80px;
}
.expert-hero-glow--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201, 183, 156, 0.1), transparent 70%);
    top: 30%; right: 15%;
}

.expert-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.expert-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.expert-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(28px + 2.5vw), 60px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.expert-hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
}

.expert-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(17px, calc(15px + 0.3vw), 20px);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(20px);
}

.expert-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.expert-hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(28, 42, 58, 0.03);
    border: 1px solid rgba(28, 42, 58, 0.06);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(16px);
}
.expert-hero-stars {
    display: flex;
    gap: 1px;
}
.expert-hero-stars svg {
    width: 14px; height: 14px;
    fill: #C9A84C;
}
.expert-hero-proof-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.expert-hero-proof-text strong {
    color: var(--text);
    font-weight: 500;
}


/* ════════════════════════════════
   SECTION 2 — COMMENT ÇA FONCTIONNE
════════════════════════════════ */
.how-it-works {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.how-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.3), transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(100px);
}

.how-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}
.how-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.how-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Annotated layout ─── */
.how-annotated {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(0, 560px) 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ─── Mockup central ─── */
.how-mockup {
    grid-column: 2;
    grid-row: 1 / 4;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}
.how-chat {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(28, 42, 58, 0.06),
        0 0 0 1px rgba(28, 42, 58, 0.03),
        0 0 80px rgba(216, 225, 234, 0.4);
}
.how-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}
.how-chat-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ncp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-chat-avatar svg {
    width: 18px; height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.how-chat-header-info {
    display: flex;
    flex-direction: column;
}
.how-chat-header-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.how-chat-header-status {
    font-family: var(--font-body);
    font-size: 12px;
    color: #22C55E;
    font-weight: 500;
}
.how-chat-messages {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-chat-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}
.how-chat-bubble p { margin: 0 0 8px; }
.how-chat-bubble p:last-child { margin-bottom: 0; }

.how-chat-bubble--user {
    align-self: flex-end;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-bottom-right-radius: 4px;
}
.how-chat-bubble--expert {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border-light);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(28, 42, 58, 0.04);
}

/* ─── Annotations ─── */
.how-annotation {
    display: flex;
    align-items: center;
    z-index: 2;
    opacity: 0;
}

.how-annotation--1 {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    transform: translateX(-40px);
    padding-right: 16px;
    justify-self: end;
}
.how-annotation--2 {
    grid-column: 3;
    grid-row: 2;
    flex-direction: row-reverse;
    transform: translateX(40px);
    padding-left: 16px;
}
.how-annotation--3 {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    transform: translateX(-40px);
    padding-right: 16px;
    justify-self: end;
}

.how-annotation-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(28, 42, 58, 0.06);
    max-width: 260px;
}

.how-annotation-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--ncp-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.how-annotation-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.how-annotation-content strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.how-annotation-content span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── SVG connector lines ─── */
.how-annotation-line {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
}
.how-annotation--2 .how-annotation-line {
    height: 20px;
}
.how-annotation-line--right {
    order: 1;
}

.how-ann-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}


/* ════════════════════════════════
   SECTION 3 — CE QUE VOUS POUVEZ DEMANDER
════════════════════════════════ */
.topics {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: #fff;
    overflow: hidden;
}
.topics-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.25), transparent 65%);
    top: 20%; right: -200px;
    pointer-events: none;
    filter: blur(100px);
}

.topics-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.topics-header {
    text-align: center;
    margin-bottom: 48px;
}
.topics-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.topics-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Pills navigation ─── */
.topics-pills {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    padding-bottom: 20px;
    position: relative;
}
.topics-pill {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}
.topics-pill:hover {
    background: rgba(28, 42, 58, 0.04);
    border-color: rgba(28, 42, 58, 0.2);
    color: var(--text);
}
.topics-pill.active {
    background: var(--ncp-primary);
    border-color: var(--ncp-primary);
    color: #fff;
}

.topics-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--ncp-primary);
    border-radius: 2px;
    transition: left 0.3s var(--ease), width 0.3s var(--ease);
}

/* ─── Topic panels ─── */
.topics-content {
    position: relative;
    min-height: 320px;
}
.topics-panel {
    display: none;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: center;
    animation: topicFadeIn 0.4s var(--ease);
}
.topics-panel.active {
    display: grid;
}
@keyframes topicFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.topics-panel-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.topics-panel-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(28, 42, 58, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.topics-panel-icon svg {
    width: 28px; height: 28px;
    stroke: var(--ncp-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.topics-panel-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, calc(20px + 0.8vw), 32px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
}

.topics-panel-right {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(28, 42, 58, 0.04);
}
.topics-panel-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ════════════════════════════════
   SECTION 4 — POURQUOI C'EST DIFFÉRENT
════════════════════════════════ */
.comparison {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: var(--bg-light);
    overflow: hidden;
}
.comparison-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.3), transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(100px);
}

.comparison-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.comparison-header {
    text-align: center;
    margin-bottom: 56px;
}
.comparison-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.comparison-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ─── Comparison table ─── */
.comparison-table-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: 0 8px 30px rgba(28, 42, 58, 0.06);
}
.comparison-table {
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}
.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row--header {
    background: var(--bg-light);
}
.comparison-row:not(.comparison-row--header):nth-child(even) {
    background: rgba(247, 248, 250, 0.5);
}

.comparison-cell {
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}
.comparison-cell--label {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}
.comparison-cell--ncp {
    background: rgba(28, 42, 58, 0.03);
    border-left: 2px solid var(--ncp-primary);
    color: var(--text);
    font-weight: 500;
}

.comparison-row--header .comparison-cell--ncp {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.comparison-row--header .comparison-cell--competitor {
    padding: 20px;
}

.comparison-col-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
.comparison-row--header .comparison-cell--competitor .comparison-col-title {
    color: var(--text-muted);
}

.comparison-badge {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--ncp-primary);
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* ─── Icons ─── */
.comparison-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.comparison-icon svg {
    width: 12px; height: 12px;
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
}
.comparison-icon--good {
    background: rgba(34, 197, 94, 0.1);
}
.comparison-icon--good svg { stroke: #22C55E; }
.comparison-icon--mid {
    background: rgba(245, 158, 11, 0.1);
}
.comparison-icon--mid svg { stroke: #F59E0B; }
.comparison-icon--bad {
    background: rgba(239, 68, 68, 0.06);
}
.comparison-icon--bad svg { stroke: #EF4444; }

.comparison-mention {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 32px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}


/* ════════════════════════════════
   SECTION 5 — CTA FINAL
════════════════════════════════ */
.final-cta {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    overflow: hidden;
    text-align: center;
}
.final-cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 225, 234, 0.6), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(28, 42, 58, 0.1), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(216, 225, 234, 0.3), transparent 60%),
        #F7F8FA;
    animation: meshMove 12s ease infinite;
}
@keyframes meshMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    33% { background-position: 10% 20%, 90% 80%, 40% 60%; }
    66% { background-position: 5% 10%, 95% 90%, 55% 45%; }
}

.final-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(28, 42, 58, 0.12);
    animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 9s; }
.particle:nth-child(2) { top: 60%; left: 75%; animation-delay: -2s; animation-duration: 7s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 35%; left: 85%; animation-delay: -4s; animation-duration: 11s; width: 5px; height: 5px; }
.particle:nth-child(4) { top: 75%; left: 25%; animation-delay: -1s; animation-duration: 8s; }
.particle:nth-child(5) { top: 15%; left: 55%; animation-delay: -3s; animation-duration: 10s; width: 3px; height: 3px; }
@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(15px, -20px); opacity: 0.6; }
    50% { transform: translate(-10px, -35px); opacity: 0.4; }
    75% { transform: translate(20px, -15px); opacity: 0.5; }
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(28px + 2.5vw), 56px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, calc(14px + 0.3vw), 20px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.final-cta-reassurance {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
    .comparison-cell {
        padding: 14px 14px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .expert-hero {
        min-height: auto;
        padding: 80px 0 64px;
    }
    .expert-hero-glow--1 { width: 300px; height: 300px; top: -80px; left: -100px; }
    .expert-hero-glow--2 { width: 250px; height: 250px; }
    .expert-hero-glow--3 { display: none; }
    .decor-circle--1 { width: 180px; height: 180px; }
    .decor-circle--2 { width: 100px; height: 100px; }
    .decor-circle--3 { display: none; }
    .decor-line--1, .decor-line--2 { display: none; }
    .expert-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .expert-hero-ctas .btn-primary,
    .expert-hero-ctas .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* How it works — annotated */
    .how-annotated {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }
    .how-mockup {
        grid-column: 1;
        grid-row: 1;
    }
    .how-annotation--1,
    .how-annotation--2,
    .how-annotation--3 {
        grid-column: 1;
        flex-direction: row;
        padding: 0;
    }
    .how-annotation--1 { grid-row: 2; transform: translateX(-20px); }
    .how-annotation--2 { grid-row: 3; transform: translateX(-20px); }
    .how-annotation--3 { grid-row: 4; transform: translateX(-20px); }
    .how-annotation-line { display: none; }
    .how-annotation-pill { max-width: 100%; }
    .how-chat-bubble { max-width: 95%; }

    /* Topics */
    .topics-pills {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding-bottom: 16px;
    }
    .topics-pill {
        font-size: 11px;
        padding: 6px 10px;
        text-align: center;
    }
    .topics-progress { display: none; }
    .topics-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .topics-panel-left {
        flex-direction: row;
        align-items: center;
    }
    .topics-panel-title {
        font-size: clamp(20px, calc(18px + 0.5vw), 24px);
    }

    /* Comparison — stacked cards */
    .comparison-table-wrap {
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }
    .comparison-table {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .comparison-row {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border-light);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(28, 42, 58, 0.04);
    }
    .comparison-row.comparison-row--header { display: none; }
    .comparison-row:last-child { border-bottom: 1px solid var(--border-light); }
    .comparison-cell--label {
        background: var(--bg-light);
        padding: 12px 16px;
        font-size: 15px;
        border-bottom: 1px solid var(--border-light);
    }
    .comparison-cell--competitor,
    .comparison-cell--ncp {
        padding: 10px 16px;
        border-left: none;
    }
    .comparison-cell--competitor::before,
    .comparison-cell--ncp::before {
        font-family: var(--font-body);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-right: 8px;
        flex-shrink: 0;
    }
    .comparison-cell--competitor:nth-child(2)::before { content: 'Banque :'; color: var(--text-muted); }
    .comparison-cell--competitor:nth-child(3)::before { content: 'CGP :'; color: var(--text-muted); }
    .comparison-cell--ncp::before { content: 'NCP :'; color: var(--ncp-primary); }
    .comparison-cell--ncp {
        background: rgba(28, 42, 58, 0.02);
        border-left: 2px solid var(--ncp-primary);
    }

    /* Final CTA */
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .final-cta-actions .btn-primary,
    .final-cta-actions .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .expert-hero-headline {
        font-size: clamp(28px, calc(24px + 2vw), 40px);
    }
    .comparison-cell {
        padding: 12px 10px;
        font-size: 12px;
    }
}
