/* ============================================
   FORMULARIO — Perfil Olfativo
   ============================================ */

.page-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    line-height: 1.6;
}

.pf-question {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-question-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.pf-question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.pf-option {
    cursor: pointer;
}

.pf-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pf-option span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 10px 20px;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.pf-option:hover span {
    border-color: rgba(212, 175, 125, 0.45);
    color: rgba(255, 255, 255, 0.9);
}

.pf-option input:checked + span {
    background: rgba(212, 175, 125, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.pf-text-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: white;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin-top: 16px;
}

.pf-text-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.pf-text-input:focus {
    border-color: rgba(212, 175, 125, 0.5);
}

.pf-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #e07070;
    margin-bottom: 16px;
    min-height: 18px;
}

.pf-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 16px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 16px;
}

.pf-submit-btn:hover {
    background: #1fb957;
}

.pf-submit-btn img {
    width: 18px;
    height: 18px;
}

.pf-privacy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}

.pf-privacy strong {
    color: rgba(255, 255, 255, 0.55);
}

.pf-final-note {
    margin-top: 56px;
    background: rgba(212, 175, 125, 0.06);
    border: 1px solid rgba(212, 175, 125, 0.2);
    border-radius: 8px;
    padding: 32px 28px;
    text-align: center;
}

.pf-final-note p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 10px;
}

.pf-final-note p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ── Mobile ──────────────────────────────── */

@media (max-width: 599px) {
    .pf-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .pf-option {
        width: 100%;
    }

    .pf-option span {
        border-radius: 10px;
        padding: 13px 10px;
        text-align: center;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    /* Letzte Option volle Breite wenn sie allein in einer Zeile steht */
    .pf-option:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}
