/* =============================================
   Panel Finder Quiz — Styles
   Redesigned: Bebas Neue + Work Sans, teal accent
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --pfq-font: 'Work Sans', system-ui, sans-serif;
    --pfq-heading: 'Bebas Neue', sans-serif;
    --pfq-bg-dark: #0e1426;
    --pfq-bg-mid: #121b30;
    --pfq-bg-light: #16243a;
    --pfq-teal: #399db1;
    --pfq-teal-light: #5BC0D4;
    --pfq-green: #3BA58F;
    --pfq-green-light: #5FCBB3;
    --pfq-warm: #E4D3BC;
    --pfq-warm-bg: #E9DCC9;
    --pfq-white: #ffffff;
    --pfq-text: #eaf0f8;
    --pfq-text-sub: #93a2b8;
    --pfq-text-card: #b6c2d4;
    --pfq-text-card-alt: #aab6c9;
    --pfq-card-bg: linear-gradient(160deg, rgba(31, 43, 63, 0.85), rgba(21, 30, 49, 0.8));
    --pfq-card-border: rgba(255, 255, 255, 0.08);
    --pfq-radius-pill: 999px;
    --pfq-radius-card: 18px;
    --pfq-radius-btn: 7px;
    --pfq-shadow-card: 0 14px 34px rgba(5, 11, 26, 0.32);
    --pfq-transition: 0.22s ease;
}

/* ---------- Section ---------- */
.pfq-section {
    font-family: var(--pfq-font);
    background: radial-gradient(70% 55% at 50% -5%, rgba(57, 157, 177, 0.16), transparent 60%),
        radial-gradient(50% 50% at 100% 100%, rgba(57, 157, 177, 0.10), transparent 65%),
        linear-gradient(158deg, #0d1326 0%, #121b30 48%, #16243a 100%);
    color: var(--pfq-text);
    padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 64px);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Ambient glow */
.pfq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 620px;
    max-width: 90vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 157, 177, 0.14), transparent 65%);
    filter: blur(20px);
    animation: pfq-glow 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pfq-glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.85;
    }
}

/* ---------- Container ---------- */
.pfq-container {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

/* ---------- Heading ---------- */
.pfq-heading {
    text-align: center;
    margin: 0 0 clamp(34px, 5vw, 60px);
}

.pfq-heading-top {
    font-family: var(--pfq-heading);
    font-size: clamp(26px, 3.4vw, 46px);
    letter-spacing: 0.13em;
    color: var(--pfq-white);
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 400;
}

.pfq-heading-highlight {
    margin: 0;
    font-family: var(--pfq-heading);
    font-size: clamp(52px, 9.5vw, 122px);
    letter-spacing: 0.03em;
    line-height: 0.92;
    font-weight: 400;
    background: linear-gradient(100deg, #5BC0D4 0%, #399db1 44%, #3BA58F 80%, #cfe6da 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.pfq-heading-sub {
    margin: 18px auto 0;
    max-width: 540px;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: var(--pfq-text-sub);
}

/* ---------- Sentence ---------- */
.pfq-sentence {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.4vw, 16px);
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 500;
    color: #e7eef8;
    line-height: 1.9;
    text-align: center;
}

/* ---------- Select Wrapper ---------- */
.pfq-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pfq-select-wrapper select {
    font-family: var(--pfq-font);
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 600;
    color: #4b5a72;
    background: var(--pfq-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--pfq-radius-pill);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: 0 8px 22px rgba(6, 12, 28, 0.35);
    transition: box-shadow 0.2s, transform 0.2s;
    white-space: nowrap;
    min-width: 160px;
    background-image: none !important;
}

/* Remove native arrow in IE/Edge */
.pfq-select-wrapper select::-ms-expand {
    display: none;
}

.pfq-select-wrapper select:hover,
.pfq-select-wrapper select:focus {
    box-shadow: 0 12px 30px rgba(57, 157, 177, 0.35);
    transform: translateY(-1px);
}

.pfq-chevron {
    position: absolute;
    right: 18px;
    width: 14px;
    height: 14px;
    pointer-events: none;
    transition: transform var(--pfq-transition);
}

.pfq-chevron path {
    stroke: #399db1;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pfq-select-wrapper select:focus~.pfq-chevron {
    transform: rotate(180deg);
}

/* ---------- Select Error State ---------- */
.pfq-select-wrapper--error {
    animation: pfq-shake 0.4s ease;
}

.pfq-select-wrapper--error select {
    border-color: #ef4444 !important;
    background: #fff0f0 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.pfq-error-msg {
    position: absolute;
    top: 100%;
    left: 12px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #f87171;
    white-space: nowrap;
    animation: pfq-fadeIn 0.3s ease;
}

@keyframes pfq-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-6px);
    }

    30% {
        transform: translateX(5px);
    }

    45% {
        transform: translateX(-4px);
    }

    60% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-2px);
    }
}

@keyframes pfq-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* ---------- CTA Row ---------- */
.pfq-cta-row {
    margin-top: clamp(26px, 3.5vw, 44px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.pfq-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pfq-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pfq-white);
    background: linear-gradient(135deg, #399db1, #3BA58F);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 8px 24px rgba(57, 157, 177, 0.3);
}

.pfq-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(57, 157, 177, 0.45);
}

.pfq-btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pfq-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pfq-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a3346;
    background: #eef1f4;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}

.pfq-btn-link:hover {
    background: var(--pfq-white);
    transform: translateY(-2px);
}

.pfq-btn-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---------- Results Area ---------- */
.pfq-results {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

/* Results header */
.pfq-results-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
    padding-top: clamp(48px, 6vw, 80px);
}

.pfq-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pfq-results-badge-line {
    height: 1px;
    width: 36px;
}

.pfq-results-badge-line--left {
    background: linear-gradient(90deg, transparent, rgba(57, 157, 177, 0.7));
}

.pfq-results-badge-line--right {
    background: linear-gradient(90deg, rgba(57, 157, 177, 0.7), transparent);
}

.pfq-results-badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #399db1;
}

.pfq-results-title {
    margin: 0;
    font-family: var(--pfq-heading);
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: 0.04em;
    color: var(--pfq-white);
    line-height: 1;
    font-weight: 400;
}

.pfq-results-sub {
    margin-top: 10px;
    font-size: 15px;
    color: var(--pfq-text-sub);
}

/* ---------- Featured Best-Match Card ---------- */
.pfq-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto clamp(28px, 3vw, 40px);
    border: 1px solid rgba(57, 157, 177, 0.4);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(33, 48, 68, 0.92), rgba(20, 30, 49, 0.92));
    box-shadow: 0 26px 60px rgba(5, 11, 26, 0.5), 0 0 0 1px rgba(57, 157, 177, 0.08);
    animation: pfq-cardIn 0.5s ease both;
}

.pfq-featured-visual {
    position: relative;
    min-height: 240px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 100% at 30% 20%, rgba(57, 157, 177, 0.22), transparent 60%),
        linear-gradient(145deg, #1b2c44, #16243a);
}

.pfq-best-match-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #E9DCC9;
    color: #1a2236;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: var(--pfq-radius-pill);
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(233, 220, 201, 0.35);
}

/* CSS panel mock illustration */
.pfq-panel-mock {
    display: none;
}

/* Product featured image */
.pfq-featured-img {
    max-width: 220px;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.pfq-featured:hover .pfq-featured-img {
    transform: scale(1.04) rotate(0deg);
}

.pfq-featured-details {
    padding: clamp(26px, 3vw, 38px);
    text-align: left;
}

.pfq-featured-product {
    margin: 0 0 14px;
    font-family: var(--pfq-heading);
    font-size: clamp(28px, 3.4vw, 38px);
    letter-spacing: 0.03em;
    color: var(--pfq-white);
    line-height: 1.08;
    font-weight: 400;
}

.pfq-featured-rationale {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--pfq-text-card);
}

.pfq-match-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pfq-teal-light);
    margin-bottom: 10px;
}

/* ---------- Results Grid ---------- */
.pfq-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 24px);
    max-width: 1120px;
    margin: 0 auto;
}

/* ---------- Result Card ---------- */
@keyframes pfq-cardIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.pfq-card {
    display: flex;
    flex-direction: column;
    background: var(--pfq-card-bg);
    border: 1px solid var(--pfq-card-border);
    border-radius: var(--pfq-radius-card);
    padding: 26px;
    box-shadow: var(--pfq-shadow-card);
    transition: transform var(--pfq-transition), border-color var(--pfq-transition), box-shadow var(--pfq-transition);
    animation: pfq-cardIn 0.5s ease both;
}

.pfq-card:nth-child(1) {
    animation-delay: 0.05s;
}

.pfq-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pfq-card:nth-child(3) {
    animation-delay: 0.15s;
}

.pfq-card:nth-child(4) {
    animation-delay: 0.2s;
}

.pfq-card:nth-child(5) {
    animation-delay: 0.25s;
}

.pfq-card:nth-child(6) {
    animation-delay: 0.3s;
}

.pfq-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 157, 177, 0.55);
    box-shadow: 0 22px 46px rgba(5, 11, 26, 0.5);
}

/* Card pill tags */
.pfq-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pfq-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--pfq-radius-pill);
    white-space: nowrap;
}

.pfq-tag--medium {
    color: var(--pfq-warm);
    background: rgba(233, 220, 201, 0.1);
    border: 1px solid rgba(233, 220, 201, 0.35);
}

.pfq-tag--char {
    color: var(--pfq-teal-light);
    background: rgba(57, 157, 177, 0.13);
    border: 1px solid rgba(57, 157, 177, 0.45);
}

.pfq-tag--core {
    color: var(--pfq-green-light);
    background: rgba(59, 165, 143, 0.13);
    border: 1px solid rgba(59, 165, 143, 0.4);
}

/* Card product name */
.pfq-card-product {
    font-family: var(--pfq-heading);
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--pfq-white);
    margin: 0 0 12px;
    line-height: 1.08;
}

/* Card rationale */
.pfq-card-rationale {
    font-size: 15px;
    font-weight: 400;
    color: var(--pfq-text-card-alt);
    line-height: 1.6;
    margin: 0 0 22px;
    flex: 1;
}

/* Card Actions Row */
.pfq-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

/* Card CTA link */
.pfq-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pfq-teal-light);
    text-decoration: none;
    transition: gap 0.18s;
}

.pfq-card-link:hover {
    gap: 11px;
}

.pfq-card-link svg {
    width: 15px;
    height: 15px;
}

/* Watch Video Button */
.pfq-card-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pfq-font);
    font-size: 13px;
    font-weight: 700;
    color: #2a3346;
    background: rgba(238, 241, 244, 0.95);
    border: none;
    border-radius: 25px;
    padding: 9px 15px;
    cursor: pointer;
    transition: background 0.18s;
}

.pfq-card-video-btn:hover {
    background: var(--pfq-white);
}

.pfq-card-video-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ---------- No Results ---------- */
.pfq-no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--pfq-text-sub);
    font-size: 16px;
    font-weight: 500;
}

/* ---------- Warning note ---------- */
.pfq-card--warning .pfq-card-rationale {
    color: rgba(240, 184, 77, 0.8);
}

.pfq-card--warning {
    border-color: rgba(232, 93, 4, 0.3);
}

/* ---------- Video Modal ---------- */
.pfq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pfq-modal--open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.pfq-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pfq-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pfq-modal--open .pfq-modal-content {
    transform: scale(1) translateY(0);
}

.pfq-modal-content video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
    background: #000;
    display: block;
}

.pfq-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--pfq-white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    z-index: 2;
    opacity: 0.8;
}

.pfq-modal-close:hover {
    background: rgba(239, 68, 68, 0.7);
    border-color: rgba(239, 68, 68, 0.5);
    opacity: 1;
    transform: scale(1.1);
}

/* ---------- Choose Panel Size button ---------- */
button.pfq-card-link.pfq-choose-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--pfq-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pfq-white);
    background: linear-gradient(135deg, #399db1, #3BA58F);
    border: none;
    border-radius: 25px;
    padding: 11px 22px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 14px rgba(57, 157, 177, 0.3);
    text-decoration: none;
}

button.pfq-card-link.pfq-choose-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(57, 157, 177, 0.45);
    background: linear-gradient(135deg, #43b0c5, #45b89f);
}

button.pfq-card-link.pfq-choose-panel-btn svg path {
    stroke: var(--pfq-white);
}

/* ---------- Email Capture Modal ---------- */
.pfq-email-modal-content {
    position: relative;
    width: 90%;
    max-width: 440px;
    z-index: 1;
    background: linear-gradient(160deg, rgba(28, 40, 62, 0.97), rgba(18, 27, 48, 0.97));
    border: 1px solid rgba(57, 157, 177, 0.35);
    border-radius: 22px;
    padding: clamp(32px, 5vw, 48px);
    text-align: center;
    box-shadow: 0 32px 80px rgba(5, 11, 26, 0.65), 0 0 0 1px rgba(57, 157, 177, 0.08);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pfq-modal--open .pfq-email-modal-content {
    transform: scale(1) translateY(0);
}

.pfq-email-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
}

.pfq-email-modal-icon {
    margin-bottom: 18px;
    opacity: 0.9;
}

.pfq-email-modal-title {
    margin: 0 0 10px;
    font-family: var(--pfq-heading);
    font-size: clamp(26px, 4vw, 34px);
    letter-spacing: 0.03em;
    color: var(--pfq-white);
    font-weight: 400;
    line-height: 1.1;
}

.pfq-email-modal-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pfq-text-sub);
}

.pfq-email-input-wrap {
    position: relative;
    margin-bottom: 8px;
}

.pfq-email-input-wrap input[type="email"] {
    width: 100%;
    font-family: var(--pfq-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--pfq-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 18px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.pfq-email-input-wrap input[type="email"]::placeholder {
    color: rgba(147, 162, 184, 0.6);
}

.pfq-email-input-wrap input[type="email"]:focus {
    border-color: var(--pfq-teal);
    background: rgba(57, 157, 177, 0.06);
    box-shadow: 0 0 0 3px rgba(57, 157, 177, 0.15);
}

.pfq-email-error {
    font-size: 13px;
    font-weight: 600;
    color: #f87171;
    margin-bottom: 8px;
    min-height: 20px;
    display: none;
    text-align: left;
    padding-left: 4px;
    animation: pfq-fadeIn 0.3s ease;
}

.pfq-email-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px 28px;
    font-size: 14px;
}

.pfq-email-optional-label {
    display: block;
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    color: rgba(147, 162, 184, 0.7);
    margin-top: 6px;
    padding-left: 4px;
    letter-spacing: 0.03em;
}

.pfq-email-skip-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(147, 162, 184, 0.75);
    font-family: var(--pfq-font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.pfq-email-skip-btn:hover {
    color: var(--pfq-teal);
}

/* ---------- Compact Variant (pfq-section--compact) ---------- */
.pfq-section--compact {
    padding: clamp(18px, 2.5vw, 32px) clamp(16px, 4vw, 48px);
}

.pfq-section--compact::before {
    width: 280px;
    height: 280px;
    top: -60px;
    filter: blur(35px);
}

.pfq-section--compact .pfq-heading {
    margin: 0 0 clamp(10px, 1.5vw, 18px);
}

.pfq-section--compact .pfq-heading-top {
    font-size: clamp(15px, 2vw, 22px);
    margin-bottom: 0;
}

.pfq-section--compact .pfq-heading-highlight {
    font-size: clamp(28px, 5vw, 54px);
}

.pfq-section--compact .pfq-heading-sub {
    margin-top: 6px;
    font-size: clamp(12px, 1.2vw, 14px);
}

.pfq-section--compact .pfq-sentence {
    font-size: 16px;
    gap: clamp(5px, 0.8vw, 10px);
    line-height: 1.6;
}

.pfq-section--compact .pfq-select-wrapper select {
    font-size: 16px;
    padding: 8px 34px 8px 16px;
    min-width: 120px;
    box-shadow: 0 4px 14px rgba(6, 12, 28, 0.25);
}

.pfq-section--compact .pfq-cta-row {
    margin-top: clamp(12px, 1.8vw, 60px);
    gap: 8px;
}

.pfq-section--compact .pfq-btn-primary,
.pfq-section--compact .pfq-btn-link {
    padding: 10px 22px;
    font-size: 12px;
}

.pfq-section--compact .pfq-results {
    padding: 0 clamp(10px, 2.5vw, 32px);
}

.pfq-section--compact .pfq-results-header {
    margin-bottom: clamp(14px, 2vw, 22px);
    padding-top: clamp(20px, 3vw, 34px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .pfq-section {
        padding: 48px 16px 56px;
    }

    .pfq-sentence {
        gap: 8px 10px;
        font-size: 18px;
        line-height: 2.4;
    }

    .pfq-select-wrapper select {
        min-width: 140px;
        font-size: 15px;
    }

    .pfq-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pfq-featured {
        grid-template-columns: 1fr;
    }

    .pfq-card {
        padding: 22px;
    }

    .pfq-section--compact {
        padding: 14px 12px 20px;
    }

    .pfq-section--compact .pfq-sentence {
        font-size: 15px;
        line-height: 2;
    }

    .pfq-section--compact .pfq-select-wrapper select {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pfq-sentence {
        flex-direction: column;
        gap: 6px;
    }

    .pfq-select-wrapper {
        width: 100%;
    }

    .pfq-select-wrapper select {
        width: 100%;
        text-align: center;
    }

    .pfq-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .pfq-btn-primary,
    .pfq-btn-link {
        width: 100%;
        justify-content: center;
    }
}