.pfs-wrap {
    max-width: 760px;
    margin: 32px auto;
    padding: 0 16px;
    font-family: inherit;
}

.pfs-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    padding: 30px;
}

.pfs-header {
    text-align: center;
    margin-bottom: 22px;
}

.pfs-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
    opacity: .7;
    margin: 0 0 8px;
}

.pfs-header h2,
.pfs-thanks h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.05;
    margin: 0 0 12px;
}

.pfs-header p,
.pfs-thanks p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 560px;
}

.pfs-privacy {
    background: rgba(0,0,0,.045);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    margin: 18px 0 22px;
}

.pfs-rating-field {
    border: 0;
    padding: 0;
    margin: 0 0 22px;
}

.pfs-rating-field legend,
.pfs-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.pfs-rating-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    direction: rtl;
}

.pfs-rating-options label {
    cursor: pointer;
}

.pfs-rating-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pfs-rating-options span {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    font-size: 18px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.pfs-rating-options small {
    font-size: 12px;
    opacity: .75;
    margin-top: 2px;
}

.pfs-rating-options input:checked + span,
.pfs-rating-options label:hover span {
    border-color: rgba(0,0,0,.45);
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    transform: translateY(-1px);
}

.pfs-form textarea,
.pfs-form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
}

.pfs-form textarea:focus,
.pfs-form input[type="text"]:focus {
    outline: 3px solid rgba(0,0,0,.08);
    border-color: rgba(0,0,0,.5);
}

.pfs-contact-box {
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,.035);
}

.pfs-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-weight: 600;
}

.pfs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pfs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 15px 24px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: #143d59;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(20,61,89,.24);
}

.pfs-button:hover {
    filter: brightness(1.08);
}

.pfs-thanks {
    text-align: center;
}

.pfs-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.pfs-thanks .pfs-button {
    margin-top: 22px;
    width: auto;
}

@media (max-width: 640px) {
    .pfs-card {
        padding: 22px 16px;
        border-radius: 18px;
    }
    .pfs-rating-options {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .pfs-rating-options span {
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
        padding: 0 16px;
    }
    .pfs-grid {
        grid-template-columns: 1fr;
    }
}
