/* =========================
   BASE LAYOUT
========================= */

:root {
  --comfortpro-red: #EC1C25;
}


#bmtqf-app {
    max-width: 720px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111;
}

/* =========================
   HERO HEADER
========================= */

.bmtqf-hero {
    background: #111;
    color: #fff;
    padding: 30px;
    border-radius: 12px 12px 0 0;
}

.bmtqf-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.bmtqf-hero-text {
    flex: 1;
    min-width: 0;
}

.bmtqf-hero h1 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.bmtqf-hero p {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.85;
    color: #fff;
}

.bmtqf-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-start;
    padding-top: 2px;
}

.bmtqf-logo {
    max-width: 220px;
    max-height: 90px;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 640px) {
    .bmtqf-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bmtqf-logo-wrap {
        justify-content: flex-start;
    }

    .bmtqf-logo {
        max-width: 180px;
        max-height: 70px;
    }
}


/* =========================
   PANEL
========================= */

.bmtqf-panel {
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 25px;
}

/* =========================
   STEPS
========================= */

.bmtqf-step {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.bmtqf-step.active {
    display: block;
    animation: bmtqfStepIn 0.28s ease forwards;
}

@keyframes bmtqfStepIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   PROGRESS BAR
========================= */

.bmtqf-progress {
    height: 6px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bmtqf-progress-bar {
    height: 100%;
    width: 33%;
    background: var(--comfortpro-red);
    transition: width 0.3s ease;
}

.bmtqf-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 30px;
}

.bmtqf-step-indicator {
    flex: 1;
    min-width: 96px;
    text-align: center;
    font-size: 12px;
    color: #999;
    opacity: 0.6;
    transition: color 0.8s ease, opacity 0.8s ease;
}

/* Container for bars */
.bmtqf-step-indicator::before,
.bmtqf-step-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 999px;
}

/* Grey base */
.bmtqf-step-indicator::before {
    top: 0;
    background: #ddd;
}

/* Red fill */
.bmtqf-step-indicator::after {
    top: 0;
    background: var(--comfortpro-red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Make parent relative */
.bmtqf-step-indicator {
    position: relative;
    padding-top: 14px; /* space for bar */
}

/* Fill animation */
.bmtqf-step-indicator.completed::after {
    transform: scaleX(1);
}

/* Active step (outlined look) */
.bmtqf-step-indicator.active::before {
    background: #ddd;
    box-sizing: border-box;
}

/* Text states */
.bmtqf-step-indicator.completed,
.bmtqf-step-indicator.active {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 1;
}





/* =========================
   SECTION CARD
========================= */

.bmtqf-section {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    background: #fafafa;
}

.bmtqf-section h2 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 10px;
}

.bmtqf-section h3 {
    margin-top: 0;
    font-size: 16px;
}

.bmtqf-intro-content {
    font-size: 16px;
    line-height: 1.6;
}

.bmtqf-intro-content > :first-child {
    margin-top: 0;
}

.bmtqf-intro-content > :last-child {
    margin-bottom: 0;
}

.bmtqf-intro-content img,
.bmtqf-intro-content video,
.bmtqf-intro-content iframe {
    max-width: 100%;
}

.bmtqf-intro-content img {
    height: auto;
}

.bmtqf-section label + input,
.bmtqf-section label + select {
    margin-bottom: 10px;
    border-radius: 20px;
}

.bmtqf-section label {
    display: block;
    margin-top: 24px;
    margin-bottom: 6px; /* 👈 key spacing */
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.bmtqf-section label:first-of-type {
    margin-top: 0;
}


/* =========================
   INPUTS
========================= */

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 20px; /* 👈 more rounded */
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;
    appearance: none;
}

/* Focus state */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--comfortpro-red);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.1);
}

select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}


/* Slider Styling */

.bmtqf-slider-wrap {
    margin-top: 6px;
}

.bmtqf-slider-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.bmtqf-slider-value {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.bmtqf-slider-shell {
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fff;
    padding: 18px 16px 14px;
}

.bmtqf-slider-shell input[type="range"] {
    width: 100%;
    margin: 0;
    appearance: none;
    background: transparent;
}

.bmtqf-slider-shell input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--comfortpro-red) 0%, var(--comfortpro-red) var(--fill-percent, 0%), #e5e7eb var(--fill-percent, 0%), #e5e7eb 100%);
}

.bmtqf-slider-shell input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--comfortpro-red);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-top: -8px;
    cursor: pointer;
}

.bmtqf-slider-shell input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
}

.bmtqf-slider-shell input[type="range"]::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--comfortpro-red);
}

.bmtqf-slider-shell input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--comfortpro-red);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}

.bmtqf-slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}


/* Add Ons */

.bmtqf-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.bmtqf-addons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bmtqf-photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.bmtqf-photo-item {
    position: relative;
}

.bmtqf-photo-upload {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: center;
    margin-top: 0;
    padding: 16px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-right: 58px;
}

.bmtqf-photo-upload:hover {
    background: #f9fafb;
    border-color: #ddd;
}

.bmtqf-photo-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bmtqf-photo-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / span 2;
    background: #e5e7eb;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.bmtqf-photo-label {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.bmtqf-photo-file {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.bmtqf-photo-info {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: var(--comfortpro-red);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.bmtqf-photo-info:hover {
    background: #c81a28;
    color: #fff;
}

.bmtqf-photo-tooltip {
    position: absolute;
    right: 48px;
    bottom: 0;
    width: min(520px, calc(100vw - 56px));
    max-width: 100%;
    padding: 16px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
    z-index: 5;
}

.bmtqf-photo-tooltip[hidden] {
    display: none;
}

.bmtqf-photo-tooltip > :first-child {
    margin-top: 0;
}

.bmtqf-photo-tooltip > :last-child {
    margin-bottom: 0;
}

.bmtqf-photo-tooltip img,
.bmtqf-photo-tooltip video,
.bmtqf-photo-tooltip iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 640px) {
    .bmtqf-photo-tooltip {
        top: calc(100% + 8px);
        right: 0;
        bottom: auto;
    }
}

.bmtqf-photo-upload.has-file {
    border-color: rgba(34, 197, 94, 0.45);
    background: #f0fdf4;
}

.bmtqf-photo-upload.has-file .bmtqf-photo-check {
    background: #22c55e;
}

.bmtqf-photo-upload.needs-file {
    border-color: rgba(236, 28, 37, 0.55);
    background: #fff7f7;
}

.bmtqf-clear-photos {
    margin-top: 14px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.bmtqf-clear-photos:hover {
    border-color: var(--comfortpro-red);
    color: var(--comfortpro-red);
}

/* Card */
.bmtqf-addon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.bmtqf-addon:hover {
    background: #f9fafb;
    border-color: #ddd;
}

.bmtqf-addon-discount-message {
    display: none;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid #d6e4ff;
    border-radius: 8px;
    background: #f5f9ff;
    color: #1f2937;
}

.bmtqf-addon-discount-message strong,
.bmtqf-addon-discount-message span {
    display: block;
}

.bmtqf-addon-discount-message strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.bmtqf-addon-discount-message span {
    font-size: 14px;
}

.bmtqf-addon-discount-message.is-qualified {
    border-color: #b7ebc6;
    background: #f0fff4;
}

.bmtqf-addon-discount-message.is-qualified span {
    font-size: 17px;
    font-weight: 800;
    color: #166534;
}

/* Left side (checkbox + text) */
.bmtqf-addon-left {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-left: 10px;
}

/* Price */
.bmtqf-addon-price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* Checkbox spacing */
.bmtqf-addon input[type="checkbox"] {
    margin-right: 10px;
}

/* Selected state */
.bmtqf-addon input[type="checkbox"]:checked + .bmtqf-addon-left {
    color: var(--comfortpro-red);
}

.bmtqf-addon input[type="checkbox"]:checked ~ .bmtqf-addon-price {
    color: var(--comfortpro-red);
}

.bmtqf-addon input[type="checkbox"]:checked {
    accent-color: var(--comfortpro-red);
}




/* =========================
   CHECKBOXES
========================= */

label {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* =========================
   BUTTONS
========================= */

button.bmtqf-back, button.bmtqf-next {
    margin-top: 30px;
    padding: 14px 22px;
    background: var(--comfortpro-red);
    color: #fff;
    border: none;
    border: 1px solid var(--comfortpro-red);
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

button.bmtqf-back, button.bmtqf-next:hover {
    color: var(--comfortpro-red);
    background: #fff;
    border: 1px solid var(--comfortpro-red);
}

button.bmtqf-back:hover {
    background: var(--comfortpro-red);
    color: #ffffff;
}

.bmtqf-back {
    display: inline-block;
    width: auto;
    background: #fff;
    color: #c81a28;
    margin-right: 10px;
}

.bmtqf-back:hover {
    background: var(--comfortpro-red);
}

/* =========================
   SUBMIT BUTTON
========================= */

#bmtqf-submit {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px 22px;
    background: var(--comfortpro-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

#bmtqf-submit:hover {
    background: #c81a28;
}


/* =========================
   FORM MESSAGING
========================= */

.bmtqf-error {
    border-color: #e11d2e !important;
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.12);
}

.bmtqf-error-message {
    margin-top: 8px;
    color: var(--comfortpro-red);
    font-size: 13px;
    font-weight: 500;
}



/* =========================
   RESULTS SCREEN
========================= */

.bmtqf-results-hero {
    background: #111;
    color: #fff;
}

.bmtqf-results-hero h2,
.bmtqf-results-hero .bmtqf-subtext {
    color: #fff;
}

.bmtqf-results-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* key change */
    gap: 24px;
}

.bmtqf-results-hero-text {
    flex: 1;
}

.bmtqf-results-hero-logo {
    flex: 0 0 auto;
    margin-left: auto; /* pushes it fully right */
    align-self: center;  
}

.bmtqf-results-logo {
    max-width: 100px;   /* 🔥 THIS is the big fix */
    height: auto;
    display: block;
    opacity: 0.85;
}

.bmtqf-results-options {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.bmtqf-results-option-card {
    border-color: #d6d9de;
}

.bmtqf-results-option-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
}

.bmtqf-results-option-tone-1 {
    background: #f5f6f8;
}

.bmtqf-results-option-tone-2 {
    background: #ebeef2;
}

.bmtqf-results-option-tone-3 {
    background: #e0e5eb;
}

.bmtqf-results-option-total {
    font-size: 32px;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.bmtqf-results-option-monthly {
    margin-top: 8px;
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
}

.bmtqf-results-option-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-top: 8px;
}

.bmtqf-results-option-header .bmtqf-results-option-name {
    margin: 0;
    font-size: 28px !important;
    line-height: 1.2;
    font-weight: 400 !important;
    text-align: right;
    flex: 1 1 auto;
}

.bmtqf-results-option-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--comfortpro-red);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.bmtqf-results-option-link:hover {
    color: #b31218;
}

.bmtqf-results-option-breakdown {
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    padding-top: 10px;
}

.bmtqf-results-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.bmtqf-results-total {
    font-weight: 700;
    border-bottom: 0;
    padding-top: 14px;
}

.bmtqf-results-warning {
    background: #fff7ed;
    border-color: #fdba74;
}

.bmtqf-results-message {
    background: #f0f9ff;
    border-color: #7dd3fc;
    color: #0f172a;
}

.bmtqf-results-message > :first-child {
    margin-top: 0;
}

.bmtqf-results-message > :last-child {
    margin-bottom: 0;
}

.bmtqf-results-message a {
    color: var(--comfortpro-red);
    font-weight: 700;
}

.bmtqf-extra-questions {
    margin-top: 22px;
}

.bmtqf-extra-question-description {
    margin: -2px 0 8px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.45;
}

.bmtqf-extra-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 10px !important;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.bmtqf-extra-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--comfortpro-red);
}

.bmtqf-extra-checkbox strong,
.bmtqf-extra-checkbox small {
    display: block;
}

.bmtqf-extra-checkbox small {
    margin-top: 3px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

.bmtqf-consent-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 10px;
}

.bmtqf-consent-field input[type="checkbox"] {
    margin-top: 4px;
    flex: 0 0 auto;
}

.bmtqf-consent-copy {
    display: block;
    font-size: 14px;
    line-height: 1.55;
}

.bmtqf-consent-copy > :first-child {
    margin-top: 0;
}

.bmtqf-consent-copy > :last-child {
    margin-bottom: 0;
}

body.bmtqf-modal-open {
    overflow: hidden;
}

.bmtqf-modal[hidden] {
    display: none;
}

.bmtqf-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.bmtqf-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.bmtqf-modal-dialog {
    position: relative;
    max-width: 640px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.28);
}

.bmtqf-modal-content > :first-child {
    margin-top: 0;
}

.bmtqf-modal-content > :last-child {
    margin-bottom: 0;
}

.bmtqf-modal-content img,
.bmtqf-modal-content video,
.bmtqf-modal-content iframe {
    max-width: 100%;
    height: auto;
}

.bmtqf-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bmtqf-modal-button {
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
}

#bmtqf-photo-skip-stay.bmtqf-modal-button-primary {
    background: var(--comfortpro-red);
    color: #fff;
    border-color: var(--comfortpro-red);
    box-shadow: none;
}

#bmtqf-photo-skip-stay.bmtqf-modal-button-primary:hover {
    background: #c81720;
    border-color: #c81720;
    color: #fff;
}

#bmtqf-photo-skip-continue.bmtqf-modal-button-secondary {
    background: #fff;
    color: #111827;
    border-color: #cfd5dc;
}

#bmtqf-photo-skip-continue.bmtqf-modal-button-secondary:hover {
    border-color: #aeb7c2;
    background: #f8fafc;
    color: #111827;
}

.bmtqf-results-actions {
    margin-top: 24px;
    text-align: center;
}

.bmtqf-results-cta-group {
    display: grid;
    justify-content: center;
    align-items: start;
    gap: 32px 72px;
    margin-bottom: 18px;
}

.bmtqf-results-cta-count-1 {
    grid-template-columns: minmax(280px, 420px);
}

.bmtqf-results-cta-count-2 {
    grid-template-columns: repeat(2, minmax(240px, 340px));
}

.bmtqf-results-cta-count-3 {
    grid-template-columns: repeat(3, minmax(210px, 300px));
}

.bmtqf-results-cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bmtqf-results-cta-note {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    text-align: center;
    min-height: 2.8em;
}

.bmtqf-results-cta {
    min-width: 220px;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.bmtqf-results-cta:hover {
    transform: translateY(-1px);
}

.bmtqf-results-cta-primary {
    background: var(--comfortpro-red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(236, 28, 37, 0.18);
}

.bmtqf-results-cta-primary:hover {
    background: #c81720;
    color: #fff;
}

.bmtqf-results-cta-secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #cfd5dc;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.bmtqf-results-cta-secondary:hover {
    color: #111827;
    border-color: #aeb7c2;
}

.bmtqf-results-download {
    display: inline-block;
    margin-top: 6px;
    background: transparent;
    color: #4b5563;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #d6d9de;
}

.bmtqf-results-download:hover {
    background: #f8fafc;
    color: #111827;
}

.bmtqf-results-reference {
    margin: 14px 0 0;
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 640px) {
    .bmtqf-results-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bmtqf-results-hero-logo {
        justify-content: flex-start;
    }

    .bmtqf-results-logo {
        max-width: 90px;
        max-height: 70px;
    }

    .bmtqf-results-option-total {
        font-size: 28px;
    }

    .bmtqf-results-option-header .bmtqf-results-option-name {
        font-size: 22px !important;
        text-align: left;
    }

    .bmtqf-results-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bmtqf-results-option-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bmtqf-results-cta-group {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bmtqf-results-cta-item,
    .bmtqf-results-cta {
        width: 100%;
    }

    .bmtqf-results-cta {
        min-width: 0;
    }

    .bmtqf-results-cta-note {
        min-height: 0;
    }

    .bmtqf-modal {
        align-items: flex-start;
    }

    .bmtqf-modal-actions {
        flex-direction: column-reverse;
    }

    .bmtqf-modal-button {
        width: 100%;
    }
    
}
