/*
 * BFU Freedom Quiz — Styles v2.1.4
 *
 * BFU Brand Palette v2 Evolved (locked April 2026):
 *   Royal Navy      #1B2A4A  — dominant (~55%) · backgrounds, headings, authority
 *   Aged Gold       #D4A843  — accent (~20%) · CTAs, highlights, premium moments
 *   Kingdom Emerald #1E6F42  — signature (~15%) · hero color · success, "Land of More Than Enough"
 *   Cream           #FFF9ED  — warm neutral (~10%) · soft backgrounds, callouts
 *   Deep Navy       #0A1F3F  — variant · gradient depth
 *   Navy Hover      #2C4A7C  — variant · hover states, secondary navy
 *   Gold Hover      #B8912D  — darker aged gold for button hover
 *   Soft Red        #E25B5B  — warnings · "red" pillar status · Matrix Math villain bar
 *
 * Retired (do NOT use): old canary gold, old near-black navy, old pastel green, rainbow semantic colors
 */

/* ========================================
   RESET & BASE
   ======================================== */

.bfu-quiz-wrapper {
    font-family: Arial, Helvetica, sans-serif;
    color: #FFFFFF;
    background: #1B2A4A;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.bfu-quiz-wrapper * {
    box-sizing: border-box;
}

.bfu-quiz-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
}

.bfu-screen {
    display: none;
    animation: bfuFadeIn 0.4s ease-out;
}

.bfu-screen.active {
    display: block;
}

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

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

.bfu-btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.bfu-btn--primary {
    background: #D4A843;
    color: #1B2A4A;
}

.bfu-btn--primary:hover {
    background: #B8912D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.bfu-btn--primary:active {
    transform: translateY(0);
}

/* ========================================
   SCREEN 1: INTRO
   ======================================== */

.bfu-screen--intro {
    text-align: center;
    padding-top: 20px;
}

.bfu-intro-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    color: #D4A843;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 28px;
}

.bfu-intro-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.bfu-intro-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.bfu-intro-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.bfu-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.bfu-feature-icon {
    font-size: 18px;
}

.bfu-start-quiz {
    width: 100%;
    max-width: 420px;
    font-size: 18px;
    padding: 20px 40px;
}

.bfu-trust-bar {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* ========================================
   SCREEN 2: QUESTIONS
   ======================================== */

.bfu-screen--questions {
    padding-top: 20px;
}

.bfu-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bfu-progress-fill {
    height: 100%;
    background: #D4A843;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.bfu-progress-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    text-align: center;
}

.bfu-question-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 32px;
    text-align: center;
}

.bfu-answers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bfu-answer-btn {
    display: block;
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: Arial, Helvetica, sans-serif;
}

/* v2.1.3 — answer selection uses Kingdom Emerald (affirmation / "on the path"),
   preserving Aged Gold for true CTAs only. */
.bfu-answer-btn:hover {
    border-color: #1E6F42;
    background: rgba(30, 111, 66, 0.08);
    transform: translateX(4px);
}

.bfu-answer-btn.selected {
    border-color: #1E6F42;
    background: rgba(30, 111, 66, 0.15);
    color: #1E6F42;
}

/* ========================================
   SCREEN 3: LEAD CAPTURE
   ======================================== */

.bfu-screen--capture {
    text-align: center;
    padding-top: 20px;
}

.bfu-capture-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bfu-capture-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    color: #D4A843;
    margin: 0 0 16px;
}

.bfu-capture-subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.bfu-capture-prompt {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.bfu-capture-form {
    max-width: 400px;
    margin: 0 auto;
}

.bfu-form-group {
    margin-bottom: 16px;
}

.bfu-form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    transition: border-color 0.3s ease;
}

.bfu-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.bfu-form-group input:focus {
    outline: none;
    border-color: #D4A843;
    background: rgba(212, 168, 67, 0.05);
}

.bfu-form-group input.bfu-input-error {
    border-color: #E25B5B;
}

.bfu-submit-lead {
    width: 100%;
    margin-top: 8px;
}

.bfu-tcpa-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.bfu-capture-error {
    color: #E25B5B;
    font-size: 14px;
    margin-top: 12px;
}

/* ========================================
   SCREEN 4: DYNAMIC RESULTS
   ======================================== */

.bfu-screen--results {
    padding-top: 10px;
}

.bfu-results-container {
    max-width: 780px;
}

.bfu-result-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    color: #D4A843;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.bfu-result-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 700;
    color: #D4A843;
    margin: 0 0 8px;
    text-align: center;
}

.bfu-result-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 36px;
    text-align: center;
    letter-spacing: 1px;
}

.bfu-result-hero {
    background: rgba(212, 168, 67, 0.06);
    border-left: 4px solid #D4A843;
    padding: 28px 32px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.bfu-result-hero-line {
    font-size: 20px;
    line-height: 1.7;
    color: #FFFFFF;
    margin: 0;
    font-style: italic;
}

.bfu-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 36px;
}

/* George Section */
.bfu-george-section {
    text-align: center;
    margin-bottom: 40px;
}

.bfu-george-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid #D4A843;
}

.bfu-george-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfu-george-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Section Headings */
.bfu-result-section {
    margin-bottom: 40px;
}

.bfu-section-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px;
}

.bfu-section-body {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.bfu-land-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.bfu-land-body {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
    line-height: 1.8;
}

/* ========================================
   FREEDOM CALENDAR
   ======================================== */

.bfu-freedom-calendar {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.bfu-cal-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
}

.bfu-cal-row:last-child {
    border-bottom: none;
}

.bfu-cal-months {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    grid-row: 1;
    grid-column: 1;
}

.bfu-cal-owner {
    font-size: 15px;
    color: #FFFFFF;
    grid-row: 1;
    grid-column: 2;
}

.bfu-cal-bar {
    height: 6px;
    border-radius: 3px;
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 4px;
    transition: width 1s ease-out;
}

/* Matrix Math villain bars — navy family + soft red. Emerald is reserved for YOU. */
.bfu-cal-gov       .bfu-cal-bar { background: #E25B5B; } /* Taxes — literal extraction, Soft Red */
.bfu-cal-housing   .bfu-cal-bar { background: #1B2A4A; } /* Housing — Royal Navy, the dominant system */
.bfu-cal-debt      .bfu-cal-bar { background: #2C4A7C; } /* Debt — Navy Hover */
.bfu-cal-transport .bfu-cal-bar { background: #0A1F3F; } /* Transport — Deep Navy */
.bfu-cal-health    .bfu-cal-bar { background: #E25B5B; } /* Health — another literal cost, Soft Red */

/* YOU — the hero of the calendar. Emerald is the "Land of More Than Enough" signature color. */
.bfu-cal-you .bfu-cal-months,
.bfu-cal-you .bfu-cal-owner {
    color: #1E6F42;
    font-weight: 700;
}

.bfu-cal-you .bfu-cal-bar {
    background: #1E6F42;
}

.bfu-calendar-punchline {
    font-size: 18px;
    color: #D4A843;
    text-align: center;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   MINDSET (Always Shown)
   ======================================== */

.bfu-mindset-section {
    margin-top: 40px;
}

.bfu-challenge--always {
    background: rgba(45, 106, 46, 0.12);
    border: 1px solid rgba(45, 106, 46, 0.3);
    border-radius: 12px;
    padding: 32px;
}

.bfu-challenge--always .bfu-challenge-title {
    color: #1E6F42;
}

.bfu-challenge--always .bfu-challenge-timeline {
    background: rgba(45, 106, 46, 0.12);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
    display: inline-block;
}

/* ========================================
   DYNAMIC CHALLENGE BLOCKS
   ======================================== */

.bfu-challenges-section {
    margin-top: 48px;
}

.bfu-challenge-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: bfuSlideUp 0.5s ease-out;
}

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

.bfu-challenge--red {
    border-left: 4px solid #E25B5B;
}

.bfu-challenge--yellow {
    border-left: 4px solid #D4A843;
}

.bfu-challenge--green {
    border-left: 4px solid #1E6F42;
}

/* Chain Connection */
.bfu-chain-connection {
    position: relative;
    padding: 16px 0 20px;
    margin-bottom: 16px;
    text-align: center;
}

.bfu-chain-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 12px;
    background: rgba(212, 168, 67, 0.3);
}

.bfu-chain-text {
    font-size: 16px;
    font-style: italic;
    color: #D4A843;
    line-height: 1.6;
    margin: 0;
    padding: 0 16px;
}

/* Challenge Header */
.bfu-challenge-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.bfu-challenge-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bfu-challenge-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.bfu-challenge-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 16px;
}

/* Solution — stands out as the key benefit */
.bfu-challenge-solution {
    background: linear-gradient(135deg, rgba(45, 106, 46, 0.15), rgba(212, 168, 67, 0.1));
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-left: 4px solid #D4A843;
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 20px 0;
}

.bfu-solution-label {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: #D4A843;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.bfu-solution-body {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1.9;
    margin: 0;
    font-weight: 500;
}

/* Challenge Meta */
.bfu-challenge-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.bfu-meta-item {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.bfu-meta-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.bfu-meta-item strong {
    display: block;
    font-size: 15px;
    color: #FFFFFF;
}

.bfu-meta-highlight {
    color: #D4A843 !important;
    font-size: 16px !important;
}

/* ========================================
   FREEDOM COMPANY SECTION
   ======================================== */

.bfu-freedom-company {
    margin-top: 48px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bfu-freedom-company .bfu-section-heading {
    color: #D4A843;
    font-size: 26px;
}

.bfu-freedom-company .bfu-section-body {
    font-size: 17px;
    line-height: 1.9;
}

/* ========================================
   DESTINATION (PILLAR 6)
   ======================================== */

.bfu-destination-section {
    margin-top: 40px;
}

.bfu-destination-block {
    background: linear-gradient(135deg, rgba(45, 106, 46, 0.15), rgba(212, 168, 67, 0.08));
    border: 1px solid rgba(45, 106, 46, 0.25);
    border-radius: 16px;
    padding: 40px 36px;
}

.bfu-destination-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 700;
    color: #D4A843;
    margin: 0 0 20px;
}

.bfu-destination-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin: 0 0 20px;
}

.bfu-destination-subline {
    font-size: 18px;
    color: #D4A843;
    margin: 0;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 168, 67, 0.15);
}

/* ========================================
   FREEDOM PATH TIMELINE
   ======================================== */

.bfu-path-section {
    margin-top: 48px;
}

.bfu-path-timeline {
    position: relative;
    padding-left: 40px;
}

.bfu-path-step {
    position: relative;
    padding: 16px 0 24px;
}

.bfu-path-connector {
    position: absolute;
    left: -28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.bfu-path-step:last-child .bfu-path-connector {
    display: none;
}

.bfu-path-icon {
    position: absolute;
    left: -40px;
    top: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1;
}

.bfu-path-content {
    padding-left: 8px;
}

.bfu-path-pillar {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.bfu-path-timeline-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bfu-path-outcome {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.bfu-path-step--red .bfu-path-connector { background: #E25B5B; }
.bfu-path-step--yellow .bfu-path-connector { background: #D4A843; }
.bfu-path-step--green .bfu-path-pillar { color: rgba(255, 255, 255, 0.6); }
.bfu-path-step--green .bfu-path-connector { background: #1E6F42; }

.bfu-path-step--destination {
    background: rgba(212, 168, 67, 0.06);
    border-radius: 10px;
    padding: 20px 16px;
    margin-left: -8px;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.bfu-path-step--destination .bfu-path-pillar {
    color: #D4A843;
}

.bfu-path-step--destination .bfu-path-outcome {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */

.bfu-result-cta {
    text-align: center;
    margin: 56px 0 40px;
    padding: 40px 24px;
    background: rgba(212, 168, 67, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 67, 0.1);
}

.bfu-cta-preline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0 0 12px;
    line-height: 1.5;
}

.bfu-cta-value {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px;
    line-height: 1.7;
}

.bfu-cta-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 28px;
    line-height: 1.7;
}

.bfu-enroll-btn {
    width: 100%;
    max-width: 480px;
    font-size: 20px;
    padding: 22px 40px;
}

.bfu-cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

/* Closing Quote */
.bfu-result-quote {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bfu-closing-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 16px;
    quotes: none;
}

.bfu-closing-quote::before {
    content: '\201C';
    color: #D4A843;
    font-size: 32px;
}

.bfu-closing-quote::after {
    content: '\201D';
    color: #D4A843;
    font-size: 32px;
}

.bfu-quote-author {
    font-size: 15px;
    color: #D4A843;
    font-style: normal;
    font-weight: 700;
}

/* ========================================
   LOADING SPINNER
   ======================================== */

.bfu-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #D4A843;
    border-radius: 50%;
    animation: bfuSpin 0.8s linear infinite;
    margin: 0 auto 24px;
}

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

.bfu-loading-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .bfu-quiz-container {
        padding: 28px 18px;
    }

    .bfu-intro-headline {
        font-size: 30px;
    }

    .bfu-intro-subheadline {
        font-size: 16px;
    }

    .bfu-intro-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .bfu-question-text {
        font-size: 22px;
    }

    .bfu-answer-btn {
        padding: 16px 18px;
        font-size: 15px;
    }

    .bfu-capture-headline {
        font-size: 28px;
    }

    .bfu-result-title {
        font-size: 32px;
    }

    .bfu-result-hero {
        padding: 20px 22px;
    }

    .bfu-result-hero-line {
        font-size: 17px;
    }

    .bfu-cal-row {
        grid-template-columns: 100px 1fr;
    }

    .bfu-cal-months {
        font-size: 11px;
    }

    .bfu-cal-owner {
        font-size: 13px;
    }

    .bfu-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .bfu-closing-quote {
        font-size: 18px;
    }

    .bfu-freedom-calendar {
        padding: 16px;
    }

    .bfu-challenge-block {
        padding: 24px 18px;
    }

    .bfu-challenge-title {
        font-size: 19px;
    }

    .bfu-challenge-solution {
        padding: 16px 18px;
    }

    .bfu-challenge-meta {
        flex-direction: column;
    }

    .bfu-meta-item {
        min-width: auto;
    }

    .bfu-destination-block {
        padding: 28px 22px;
    }

    .bfu-destination-heading {
        font-size: 22px;
    }

    .bfu-section-heading {
        font-size: 24px;
    }

    .bfu-path-timeline {
        padding-left: 36px;
    }

    .bfu-result-cta {
        padding: 32px 18px;
    }

    .bfu-cta-preline {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .bfu-intro-headline {
        font-size: 26px;
    }

    .bfu-question-text {
        font-size: 20px;
    }

    .bfu-result-title {
        font-size: 26px;
    }

    .bfu-section-heading {
        font-size: 21px;
    }

    .bfu-challenge-title {
        font-size: 17px;
    }

    .bfu-trust-bar {
        font-size: 11px;
    }

    .bfu-chain-text {
        font-size: 14px;
    }

    .bfu-destination-heading {
        font-size: 20px;
    }
}

/* ================================================================== */
/* v2.1.0 — AI-GENERATED SECTIONS (hero, 90-day plan, closing)        */
/* ================================================================== */

/* AI-generated hero (replaces templated hero when AI is enabled) */
/* v2.1.4 — AI hero sits on the dark navy quiz background.
   Text must be cream (not navy) or it vanishes into the background. */
.bfu-result-hero--ai {
    background: linear-gradient(180deg, rgba(212,168,67,0.18), rgba(212,168,67,0.06));
    border-left: 4px solid #D4A843;
    padding: 24px 28px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.bfu-result-hero--ai .bfu-result-hero-line {
    font-size: 18px;
    line-height: 1.65;
    color: #FFF9ED;
    margin: 0 0 14px;
}
.bfu-result-hero--ai .bfu-result-hero-line:last-child {
    margin-bottom: 0;
}
.bfu-result-hero--ai .bfu-result-hero-line strong {
    color: #D4A843;
    font-weight: 700;
}
.bfu-result-hero--ai .bfu-result-hero-line em {
    color: #FFF9ED;
}

/* AI-generated 90-day plan section */
.bfu-ai-plan-section {
    background: #FFF9ED;
    border: 1px solid #E8E0CC;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
}
.bfu-ai-plan-section .bfu-section-heading {
    color: #1B2A4A;
    margin-top: 0;
    margin-bottom: 18px;
}
.bfu-ai-plan-body {
    color: #2d3748;
    line-height: 1.6;
}
.bfu-ai-plan-body p {
    margin: 0 0 12px;
}
.bfu-ai-plan-body p strong {
    color: #1B2A4A;
    font-size: 16px;
    display: inline-block;
    margin-top: 14px;
}
.bfu-ai-plan-list {
    margin: 8px 0 18px;
    padding-left: 22px;
}
.bfu-ai-plan-list li {
    margin-bottom: 8px;
    line-height: 1.55;
}
.bfu-ai-plan-heading {
    color: #1E6F42;
    font-size: 17px;
    margin: 18px 0 8px;
}

/* AI-generated closing — sits right before the CTA */
.bfu-ai-closing-section {
    background: #1B2A4A;
    color: #FFF9ED;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0 24px;
}
.bfu-ai-closing-line {
    color: #FFF9ED;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.bfu-ai-closing-line:last-child {
    margin-bottom: 0;
}
.bfu-ai-closing-line strong {
    color: #D4A843;
}

/* Mobile adjustments for AI sections */
@media (max-width: 640px) {
    .bfu-result-hero--ai { padding: 16px 18px; }
    .bfu-result-hero--ai .bfu-result-hero-line { font-size: 16px; }
    .bfu-ai-plan-section { padding: 20px 20px; }
    .bfu-ai-closing-section { padding: 22px 20px; }
    .bfu-ai-closing-line { font-size: 15px; }
}
