.hcq-wrapper{width:100%;}
/* ===== QUIZ MODAL ===== */
    .quiz-modal {
        position: fixed;
        inset: 0;
        background: rgba(31, 27, 22, .7);
        backdrop-filter: blur(10px);
        z-index: 1001;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px
    }

    .quiz-modal.open {
        display: flex
    }

    .quiz-panel {
        width: min(640px, 100%);
        max-height: 92vh;
        overflow: auto;
        background: #EEF2EB;
        border-radius: 28px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, .3);
        position: relative
    }

    .quiz-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #FFFFFF;
        border: 1px solid #E5DDD2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #1F1B16;
        cursor: pointer;
        transition: all .25s;
        font-family: 'Fraunces';
        font-weight: 300;
        z-index: 5
    }

    .quiz-close:hover {
        background: #1F1B16;
        color: #F5EFE5;
        border-color: #1F1B16
    }

    .quiz-progress {
        padding: 36px 44px 0;
        display: flex;
        align-items: center;
        gap: 14px
    }

    .quiz-progress-bar {
        flex: 1;
        height: 4px;
        background: #E5DDD2;
        border-radius: 100px;
        overflow: hidden
    }

    .quiz-progress-fill {
        height: 100%;
        background: #B66E5F;
        transition: width .4s ease;
        border-radius: 100px
    }

    .quiz-progress-text {
        font-size: 11px;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: #9A9089;
        font-weight: 600;
        flex-shrink: 0
    }

    .quiz-step {
        padding: 32px 44px 44px;
        display: none
    }

    .quiz-step.active {
        display: block;
        animation: fadeIn .4s ease
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(8px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .quiz-eyebrow {
        font-size: 11px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #B66E5F;
        font-weight: 700;
        margin-bottom: 14px
    }

    .quiz-q {
        font-family: 'Fraunces';
        font-size: 30px;
        font-weight: 300;
        line-height: 1.15;
        letter-spacing: -.015em;
        color: #1F1B16;
        margin-bottom: 8px
    }

    .quiz-q em {
        font-style: italic;
        color: #B66E5F
    }

    .quiz-q-sub {
        font-size: 14px;
        color: #5C544B;
        line-height: 1.6;
        margin-bottom: 28px
    }

    .quiz-options {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .quiz-option {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        background: #FFFFFF;
        border: 1.5px solid #E5DDD2;
        border-radius: 14px;
        cursor: pointer;
        transition: all .2s;
        text-align: left;
        font-family: 'Inter';
        width: 100%
    }

    .quiz-option:hover {
        border-color: #B66E5F;
        transform: translateX(4px)
    }

    .quiz-option.selected {
        border-color: #B66E5F;
        background: rgba(182, 110, 95, .06)
    }

    .quiz-option-letter {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #FAF7F2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fraunces';
        font-style: italic;
        color: #B66E5F;
        font-weight: 500;
        font-size: 13px;
        transition: all .2s
    }

    .quiz-option.selected .quiz-option-letter {
        background: #B66E5F;
        color: #fff;
        font-style: normal;
        font-weight: 600
    }

    .quiz-option-text {
        flex: 1;
        font-size: 14.5px;
        color: #1F1B16;
        line-height: 1.45
    }

    .quiz-option-text strong {
        display: block;
        font-family: 'Fraunces';
        font-weight: 500;
        margin-bottom: 2px;
        font-size: 15px
    }

    .quiz-option-text small {
        display: block;
        font-size: 12.5px;
        color: #5C544B;
        margin-top: 3px;
        line-height: 1.4
    }

    .quiz-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 44px 36px;
        gap: 10px
    }

    .quiz-back {
        background: transparent;
        border: none;
        font-size: 12px;
        letter-spacing: .05em;
        color: #9A9089;
        font-weight: 500;
        cursor: pointer;
        font-family: 'Inter';
        padding: 10px 0;
        transition: color .2s
    }

    .quiz-back:hover {
        color: #1F1B16
    }

    .quiz-back:disabled {
        visibility: hidden
    }

    .quiz-next {
        background: #1F1B16;
        color: #F5EFE5;
        padding: 13px 28px;
        border: none;
        border-radius: 100px;
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        font-family: 'Inter';
        transition: background .25s;
        display: inline-flex;
        align-items: center;
        gap: 8px
    }

    .quiz-next:hover:not(:disabled) {
        background: #B66E5F
    }

    .quiz-next:disabled {
        opacity: .3;
        cursor: not-allowed
    }

    .quiz-next::after {
        content: '→';
        font-family: 'Fraunces';
        font-style: italic
    }

    /* Quiz Result */
    .quiz-result {
        padding: 48px 44px;
        text-align: center;
        display: none
    }

    .quiz-result.active {
        display: block;
        animation: fadeIn .6s ease
    }

    .quiz-result-eyebrow {
        font-size: 11px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #B66E5F;
        font-weight: 700;
        margin-bottom: 14px
    }

    .quiz-result-archetype {
        font-family: 'Fraunces';
        font-size: 36px;
        font-weight: 300;
        line-height: 1.1;
        letter-spacing: -.02em;
        color: #1F1B16;
        margin-bottom: 14px
    }

    .quiz-result-archetype em {
        font-style: italic;
        color: #B66E5F;
        font-weight: 400
    }

    .quiz-result-tagline {
        font-family: 'Fraunces';
        font-style: italic;
        font-size: 18px;
        color: #5C544B;
        margin-bottom: 32px;
        line-height: 1.5
    }

    .quiz-result-desc {
        font-size: 15px;
        color: #1F1B16;
        line-height: 1.65;
        margin-bottom: 30px;
        text-align: left;
        background: #FFFFFF;
        padding: 24px 26px;
        border-radius: 14px;
        border-left: 3px solid #B66E5F
    }

    .quiz-result-card {
        background: #1F1B16;
        color: #F5EFE5;
        border-radius: 18px;
        padding: 28px 30px;
        text-align: left;
        margin-bottom: 20px
    }

    .quiz-result-card .label {
        font-size: 10px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #E3B5A8;
        font-weight: 700;
        margin-bottom: 8px
    }

    .quiz-result-card h4 {
        font-family: 'Fraunces';
        font-size: 24px;
        font-weight: 400;
        color: #fff;
        line-height: 1.2;
        letter-spacing: -.01em
    }

    .quiz-result-card h4 em {
        font-style: italic;
        color: #E3B5A8
    }

    .quiz-result-card .price {
        font-family: 'Fraunces';
        font-size: 34px;
        color: #fff;
        font-weight: 300;
        margin-top: 10px;
        letter-spacing: -.02em
    }

    .quiz-result-card .price-sub {
        font-size: 12px;
        color: rgba(245, 239, 229, .5);
        letter-spacing: .04em;
        margin-top: 4px
    }

    .quiz-result-keepers {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(245, 239, 229, .12);
        font-size: 12.5px;
        line-height: 1.55;
        color: rgba(245, 239, 229, .65)
    }

    .quiz-result-keepers em {
        color: #E3B5A8;
        font-style: italic;
        font-family: 'Fraunces';
        font-weight: 400
    }

    .quiz-result-keepers strong {
        color: #F5EFE5;
        font-weight: 500
    }

    .quiz-result-form {
        background: #FFFFFF;
        border-radius: 18px;
        padding: 24px 26px;
        margin-top: 20px;
        text-align: left
    }

    .quiz-gift-badge {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        background: linear-gradient(135deg, #F3EBE0 0%, #F0D4CB 100%);
        border-radius: 14px;
        padding: 18px 20px;
        margin-bottom: 18px
    }

    .gift-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #B66E5F;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fraunces';
        font-style: italic;
        font-size: 20px;
        flex-shrink: 0
    }

    .gift-eyebrow {
        font-size: 10px;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: #B66E5F;
        font-weight: 700;
        margin-bottom: 4px
    }

    .gift-title {
        font-family: 'Fraunces';
        font-size: 18px;
        font-weight: 500;
        color: #1F1B16;
        line-height: 1.25;
        letter-spacing: -.005em;
        margin-bottom: 6px
    }

    .gift-title em {
        font-style: italic;
        color: #B66E5F
    }

    .gift-sub {
        font-size: 12.5px;
        color: #5C544B;
        line-height: 1.5
    }

    .quiz-form-note {
        font-size: 11px;
        color: #9A9089;
        text-align: center;
        margin-top: 10px;
        letter-spacing: .02em
    }

    .quiz-thanks {
        text-align: center;
        padding: 8px 0 4px
    }

    .thanks-icon {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: linear-gradient(135deg, #F0D4CB 0%, #B66E5F 100%);
        color: #fff;
        font-family: 'Fraunces';
        font-style: italic;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px
    }

    .quiz-thanks h5 {
        font-family: 'Fraunces';
        font-size: 22px;
        font-weight: 400;
        color: #1F1B16;
        margin-bottom: 14px;
        letter-spacing: -.005em
    }

    .quiz-thanks h5 em {
        font-style: italic;
        color: #B66E5F
    }

    .quiz-thanks p {
        font-size: 14px;
        color: #5C544B;
        line-height: 1.6;
        margin-bottom: 14px
    }

    .quiz-thanks p strong {
        color: #1F1B16;
        font-weight: 600
    }

    .quiz-thanks .thanks-sub {
        font-size: 13px;
        color: #9A9089;
        line-height: 1.55
    }

    .quiz-thanks .thanks-sub a {
        color: #B66E5F;
        border-bottom: 1px solid #B66E5F;
        font-weight: 500
    }

    .quiz-thanks .thanks-sub a:hover {
        color: #1F1B16;
        border-color: #1F1B16
    }

    .quiz-result-form .form-eyebrow {
        font-size: 10px;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: #B66E5F;
        font-weight: 700;
        margin-bottom: 10px
    }

    .quiz-result-form h5 {
        font-family: 'Fraunces';
        font-size: 18px;
        font-weight: 500;
        color: #1F1B16;
        margin-bottom: 14px;
        line-height: 1.3
    }

    .quiz-result-form input {
        width: 100%;
        padding: 13px 14px;
        border: 1.5px solid #E5DDD2;
        border-radius: 10px;
        font-family: 'Inter';
        font-size: 14px;
        background: #FAF7F2;
        margin-bottom: 8px
    }

    .quiz-result-form input:focus {
        outline: none;
        border-color: #B66E5F;
        background: #fff
    }

    .quiz-result-form button {
        width: 100%;
        padding: 14px;
        background: #B66E5F;
        color: #fff;
        border: none;
        border-radius: 100px;
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        font-family: 'Inter';
        margin-top: 8px;
        transition: background .25s
    }

    .quiz-result-form button:hover {
        background: #1F1B16
    }

    .quiz-result-restart {
        display: inline-block;
        margin-top: 18px;
        font-size: 12px;
        color: #9A9089;
        text-decoration: none;
        border-bottom: 1px solid #E5DDD2;
        padding-bottom: 2px;
        font-weight: 500;
        cursor: pointer;
        background: transparent;
        border-top: none;
        border-left: none;
        border-right: none;
        font-family: 'Inter'
    }

    .quiz-result-restart:hover {
        color: #B66E5F;
        border-color: #B66E5F
    }

    .quiz-calculating {
        padding: 60px 44px;
        text-align: center;
        display: none
    }

    .quiz-calculating.active {
        display: block
    }

    .quiz-spinner {
        width: 60px;
        height: 60px;
        border: 3px solid #E5DDD2;
        border-top-color: #B66E5F;
        border-radius: 50%;
        margin: 0 auto 24px;
        animation: spin 1s linear infinite
    }

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

    .quiz-calculating-text {
        font-family: 'Fraunces';
        font-style: italic;
        font-size: 18px;
        color: #5C544B;
        line-height: 1.4
    }

    .quiz-calculating-text em {
        color: #B66E5F
    }