:root {
    --qz-forest: #071f11;
    --qz-river: #0e859e;
    --qz-river-lt: #00e1ff;
    --qz-moss: #123d24;
    --qz-leaf: #10b981;
    --qz-amber: #f59e0b;
    --qz-white: #ffffff;
    --qz-text: #1e293b;
    --qz-muted: #64748b;
    --qz-radius: 20px;
    --qz-radius-sm: 12px;
    --qz-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    --qz-shadow-lg: 0 20px 60px rgba(0, 0, 0, .1);
    --qz-tr: .3s cubic-bezier(.175, .885, .32, 1.275);
    --qz-glass-bg: rgba(255, 255, 255, 0.03);
    --qz-glass-border: rgba(255, 255, 255, 0.08);
}

.qz-main {
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
    overflow-x: hidden;
    background: #f8fafc;
}

.qz-hero {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #0c2d1c 0%, #020617 70%, #000 100%);
    padding: clamp(8rem, 15vw, 12rem) 1rem 8rem;
    overflow: hidden;
    min-height: 95vh;
    display: block;
}

.qz-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 60%);
    filter: blur(60px);
    border-radius: 50%;
}

.qz-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 133, 158, 0.2), transparent 60%);
    filter: blur(60px);
    border-radius: 50%;
}

.qz-hero__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.qz-river-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px
}

.qz-river-path {
    fill: rgba(14, 116, 144, .18)
}

.qz-river-path--1 {
    animation: qz-river-flow 8s ease-in-out infinite
}

.qz-river-path--2 {
    animation: qz-river-flow 12s ease-in-out infinite reverse;
    fill: rgba(34, 211, 238, .08)
}

@keyframes qz-river-flow {

    0%,
    100% {
        d: path("M0,60 C240,20 480,100 720,60 C960,20 1200,100 1440,60 L1440,120 L0,120 Z")
    }

    50% {
        d: path("M0,60 C240,90 480,30 720,60 C960,90 1200,30 1440,60 L1440,120 L0,120 Z")
    }
}

.qz-particle {
    position: absolute;
    left: var(--px);
    bottom: -20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, .6), transparent);
    animation: qz-particle-float var(--pd) var(--pdelay) ease-in infinite
}

@keyframes qz-particle-float {
    0% {
        transform: translateY(0) scale(.5);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: .4
    }

    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0
    }
}

.qz-hero__content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    background: var(--qz-glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--qz-glass-border);
    padding: 3.5rem 2rem;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.qz-hero__eyebrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2rem;
}

.qz-eyebrow-chip {
    background: rgba(0, 225, 255, .1);
    border: 1px solid rgba(0, 225, 255, .3);
    color: var(--qz-river-lt);
    padding: .4rem 1rem;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 225, 255, 0.15);
}

.qz-hero__title {
    margin: 0 0 1.5rem;
    line-height: 1.1;
    min-height: clamp(4.5rem, 12vw, 9.5rem);
}

.qz-title-line1 {
    display: block;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    letter-spacing: -.01em
}

.qz-title-line2 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    background: linear-gradient(to right, #ffffff, #a5f3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qz-title-line2 em {
    font-style: normal;
    color: var(--qz-river-lt);
    -webkit-text-fill-color: var(--qz-river-lt);
    text-shadow: 0 0 30px rgba(0, 225, 255, 0.4);
}

.qz-hero__desc {
    color: rgba(255, 255, 255, .7);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 3rem;
    font-weight: 300;
    min-height: clamp(4rem, 15vw, 7rem);
}

.qz-hero__desc strong {
    color: #fff;
    font-weight: 600;
}

.qz-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.qz-cta-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.qz-cta-btn--sm {
    padding: .8rem 1.5rem;
    font-size: .9rem;
    background: #fff;
    color: var(--qz-text);
    box-shadow: var(--qz-shadow)
}

.qz-cta-btn__icon {
    font-size: 1.5rem
}

.qz-cta-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.qz-cta-btn__text strong {
    font-size: 1.1rem;
    letter-spacing: -.01em
}

.qz-cta-btn__text small {
    font-size: .75rem;
    opacity: .85;
    font-weight: 500
}

.qz-profiles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
    min-height: 48px;
}

.qz-profile-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.qz-profile-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.qz-profile-chip__emoji {
    font-size: 1.2rem;
}

.qz-profile-chip__label {
    font-weight: 600;
    font-size: 0.9rem;
}

.qz-profile-chip__sub {
    display: none;
}

.qz-section {
    padding: 7rem 1rem;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.qz-section.qz-why-section {
    min-height: 450px;
}

.qz-section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--qz-text);
    margin: 0 0 1rem;
    letter-spacing: -.03em;
}

.qz-section-desc {
    text-align: center;
    color: var(--qz-muted);
    font-size: 1.15rem;
    margin: 0 auto 3rem;
    max-width: 650px;
    line-height: 1.6;
}

.qz-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.qz-why-card {
    background: #ffffff;
    border-radius: var(--qz-radius);
    padding: 2.5rem 2rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--qz-tr);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.qz-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 133, 158, 0.03) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.qz-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.qz-why-card:hover::before {
    opacity: 1;
}

.qz-why-card__icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qz-why-card:hover .qz-why-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.qz-why-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--qz-text);
    margin: 0 0 1rem;
}

.qz-why-card p {
    color: var(--qz-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.qz-why-cta {
    text-align: center;
}

.qz-parcours-section {
    background: #f8fafc;
}

.qz-parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qz-parcours-card {
    background: #fff;
    border-radius: var(--qz-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--qz-tr);
    position: relative;
    border-top: 5px solid var(--pc);
    display: flex;
    flex-direction: column;
}

.qz-parcours-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--qz-shadow-lg);
    border-color: rgba(0, 0, 0, 0.05);
}

.qz-parcours-card__header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.qz-parcours-card__emoji {
    font-size: 2.5rem;
    background: var(--pc-bg);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.05);
}

.qz-parcours-card__nom {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--qz-text)
}

.qz-parcours-card__sous {
    margin: 0;
    font-size: .9rem;
    color: var(--qz-muted);
    font-weight: 600;
}

.qz-parcours-card__stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

.qz-parcours-stat {
    flex: 1;
    text-align: center;
    background: rgba(248, 250, 252, 0.8);
    padding: 1rem 0.5rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.qz-parcours-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--qz-text);
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.qz-parcours-stat small {
    font-size: .7rem;
    color: var(--qz-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.qz-parcours-card__profil {
    font-size: .95rem;
    color: var(--qz-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qz-parcours-card__profil::before {
    content: '👥';
}

.qz-parcours-card__excerpt {
    flex-grow: 1;
}

.qz-parcours-card__quiz-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--pc-bg);
    color: var(--qz-forest);
    border: 2px solid var(--pc);
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--qz-tr);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-top: auto;
}

.qz-parcours-card__quiz-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background: var(--pc);
    color: #fff;
}

.qz-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--qz-tr), visibility var(--qz-tr)
}

.qz-modal.is-open {
    opacity: 1;
    visibility: visible
}

.qz-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 43, 26, .6);
    backdrop-filter: blur(8px)
}

.qz-modal__panel {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 540px;
    height: auto;
    max-height: 90vh;
    border-radius: var(--qz-radius);
    display: flex;
    flex-direction: column;
    box-shadow: var(--qz-shadow-lg);
    transform: translateY(20px) scale(.98);
    transition: transform var(--qz-tr)
}

.qz-modal.is-open .qz-modal__panel {
    transform: translateY(0) scale(1)
}

.qz-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #E2E8F0
}

.qz-modal__header-left {
    display: flex;
    align-items: center;
    gap: .75rem
}

.qz-modal__logo {
    font-size: 1.25rem
}

.qz-modal__title-text {
    font-weight: 700;
    font-size: .95rem;
    color: var(--qz-forest)
}

.qz-modal__close {
    background: rgba(100, 116, 139, .1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--qz-text);
    font-size: 1.1rem;
    transition: background var(--qz-tr)
}

.qz-modal__close:hover {
    background: rgba(100, 116, 139, .2)
}

.qz-progress-bar {
    height: 6px;
    background: #E2E8F0;
    position: relative;
    width: 100%
}

.qz-progress-bar__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--qz-river);
    width: 0;
    transition: width .4s ease
}

.qz-progress-bar__steps {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    pointer-events: none
}

.qz-progress-step {
    width: 20px;
    height: 20px;
    background: #E2E8F0;
    border: 3px solid #fff;
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    transition: background var(--qz-tr)
}

.qz-progress-step.active {
    background: var(--qz-river);
    box-shadow: 0 0 0 3px rgba(34, 213, 238, .3)
}

.qz-progress-step.done {
    background: var(--qz-leaf)
}

.qz-modal__body {
    flex: 1;
    overflow-y: auto;
    position: relative
}

.qz-screen {
    padding: 2rem 2.5rem;
    animation: qz-fade-in .3s ease forwards
}

@keyframes qz-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.qz-screen--intro {
    text-align: center
}

.qz-intro-visual {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative
}

.qz-intro-emoji {
    animation: qz-float 3s ease-in-out infinite
}

.qz-intro-waves {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: -10px
}

.qz-wave {
    width: 20px;
    height: 3px;
    background: var(--qz-river-lt);
    border-radius: 2px;
    animation: qz-wave 1.5s infinite ease-in-out
}

.qz-wave:nth-child(2) {
    animation-delay: .2s;
    width: 30px
}

.qz-wave:nth-child(3) {
    animation-delay: .4s
}

@keyframes qz-wave {

    0%,
    100% {
        transform: scaleX(.8);
        opacity: .5
    }

    50% {
        transform: scaleX(1.2);
        opacity: 1
    }
}

@keyframes qz-float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg)
    }

    50% {
        transform: translateY(-10px) rotate(2deg)
    }
}

.qz-intro-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--qz-forest);
    margin: 0 0 .75rem;
    line-height: 1.2
}

.qz-intro-desc {
    color: var(--qz-muted);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0 0 2rem
}

.qz-intro-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem
}

.qz-intro-chips span {
    background: #F1F5F9;
    color: var(--qz-text);
    padding: .3rem .75rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600
}

.qz-btn-primary {
    width: 100%;
    padding: 1.1rem;
    background: var(--qz-forest);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--qz-tr)
}

.qz-btn-primary:hover {
    background: #082010
}

.qz-q-header {
    margin-bottom: 1.5rem
}

.qz-q-counter {
    font-size: .8rem;
    color: var(--qz-river);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 .5rem
}

.qz-q-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--qz-text);
    margin: 0 0 .5rem;
    line-height: 1.2
}

.qz-q-hint {
    font-size: .9rem;
    color: var(--qz-muted);
    margin: 0
}

.qz-answers {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.qz-answer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all .2s ease;
    font-family: inherit
}

.qz-answer:hover:not(:disabled) {
    border-color: var(--qz-river-lt);
    background: #F8FAFC
}

.qz-answer:focus-visible {
    outline: 3px solid var(--qz-river-lt);
    outline-offset: 2px
}

.qz-answer.selected {
    border-color: var(--qz-river);
    background: #F0F9FF;
    box-shadow: 0 4px 12px rgba(14, 116, 144, .08)
}

.qz-answer__emoji {
    font-size: 1.75rem;
    flex-shrink: 0
}

.qz-answer__text {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.qz-answer__label {
    font-weight: 700;
    color: var(--qz-text);
    font-size: 1rem
}

.qz-answer__sub {
    font-size: .8rem;
    color: var(--qz-muted)
}

.qz-btn-next {
    margin-top: 2rem;
    width: 100%;
    padding: 1.1rem;
    background: var(--qz-river);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: all var(--qz-tr)
}

.qz-btn-next:disabled {
    opacity: .5;
    cursor: not-allowed;
    background: #94A3B8
}

.qz-btn-next:not(:disabled):hover {
    background: #0B5D73;
    transform: translateY(-2px)
}

.qz-screen--computing {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px
}

.qz-computing-visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem
}

.qz-computing-kayak {
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: qz-rock .8s infinite alternate ease-in-out
}

.qz-computing-ripples div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--qz-river-lt);
    border-radius: 50%;
    animation: qz-ripple 2s infinite cubic-bezier(.4, auto, .2, 1);
    opacity: 0
}

.qz-computing-ripples div:nth-child(2) {
    animation-delay: .6s
}

.qz-computing-ripples div:nth-child(3) {
    animation-delay: 1.2s
}

@keyframes qz-rock {
    from {
        transform: translate(-50%, -50%) rotate(-5deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(5deg)
    }
}

@keyframes qz-ripple {
    0% {
        width: 40px;
        height: 40px;
        opacity: 1;
        border-width: 3px
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 0
    }
}

.qz-computing-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--qz-forest);
    margin: 0 0 .5rem
}

.qz-computing-desc {
    color: var(--qz-muted);
    font-size: .95rem;
    margin: 0 0 2rem
}

.qz-computing-bar {
    width: 100%;
    max-width: 240px;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden
}

.qz-computing-bar__fill {
    height: 100%;
    background: var(--qz-river);
    width: 0;
    animation: qz-fill-bar 2s ease-in-out forwards
}

@keyframes qz-fill-bar {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.qz-result__hero {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(145deg, var(--rc, #2D9E6B), #0D2B1A);
    color: #fff;
    border-radius: 0 0 24px 24px;
    position: relative;
    overflow: hidden
}

.qz-result__congrats {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    color: rgba(255, 255, 255, .8);
    margin: 0 0 1rem
}

.qz-result__emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: qz-bounce .5s cubic-bezier(.175, .885, .32, 1.27) forwards
}

@keyframes qz-bounce {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

.qz-result__nom {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 .5rem;
    line-height: 1.1
}

.qz-result__sous {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 1.5rem
}

.qz-result__stats {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    background: rgba(0, 0, 0, .2);
    padding: .6rem 1rem;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600
}

.qz-result__stat {
    display: flex;
    align-items: center;
    gap: .3rem
}

.qz-result__body {
    padding: 2rem 2.5rem
}

.qz-result__desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--qz-text);
    margin: 0 0 2rem
}

.qz-result__section-title {
    font-weight: 800;
    font-size: .9rem;
    text-transform: uppercase;
    color: var(--qz-muted);
    margin: 0 0 1rem;
    letter-spacing: .05em
}

.qz-result__pts-forts,
.qz-result__conseille {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem
}

.qz-result__pt,
.qz-result__conseille-item {
    background: #F1F5F9;
    color: var(--qz-text);
    padding: .4rem .8rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid #E2E8F0
}

.qz-result__tarifs {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.qz-result__tarif {
    text-align: center
}

.qz-result__tarif-prix {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--qz-text);
    display: block
}

.qz-result__tarif-label {
    font-size: .72rem;
    color: var(--qz-muted)
}

.qz-result__ctas {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.qz-result__cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--rc, #2D9E6B), #0E7490);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: opacity var(--qz-tr), transform var(--qz-tr);
    text-align: center
}

.qz-result__cta-primary:hover {
    opacity: .92;
    transform: translateY(-2px)
}

.qz-result__cta-secondary {
    text-align: center;
    color: var(--qz-muted) !important;
    font-size: .85rem;
    cursor: pointer;
    background: 0 0;
    border: none;
    font-family: inherit;
    text-decoration: underline;
    padding: .4rem
}

.qz-result__cta-secondary:hover {
    color: var(--qz-river) !important
}

.qz-result__share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F3F4F6;
    padding-top: 1rem;
    margin-top: 1.25rem
}

.qz-result__share-label {
    font-size: .78rem;
    color: var(--qz-muted)
}

.qz-result__share-btns {
    display: flex;
    gap: .4rem
}

.qz-share-sm {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: opacity var(--qz-tr)
}

.qz-share-sm--fb {
    background: #1877F2
}

.qz-share-sm--wa {
    background: #25D366
}

.qz-share-sm--tw {
    background: #000
}

.qz-share-sm:hover {
    opacity: .85
}

.qz-screen[hidden] {
    display: none
}

@media (max-width:600px) {
    .qz-answers {
        grid-template-columns: 1fr
    }

    .qz-hero {
        padding: 3.5rem 1rem 5rem
    }

    .qz-modal {
        align-items: flex-end;
        padding: 0
    }

    .qz-modal__panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        max-height: 92vh;
        margin: 0;
        border-radius: 16px 16px 0 0
    }

    .qz-screen {
        padding: 1.5rem 1.25rem 2rem
    }

    .qz-result__body {
        padding: 1.25rem 1.25rem 1.75rem
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation: none !important;
        transition: none !important
    }
}