/* ============================================
   FB Theme - Complete Mobile-First Design
   For gold-ira.us.com
   ============================================ */

/* === CSS Variables === */
:root {
    --gfbk-primary: #172033;
    --gfbk-secondary: #e2a717;
    --gfbk-secondary-dark: #b4840a;
    --gfbk-accent: #0a72b7;
    --gfbk-dark: #0c0f2d;
    --gfbk-text: #243135;
    --gfbk-text-dim: #6e7683;
    --gfbk-text-light: #96a1b6;
    --gfbk-white: #ffffff;
    --gfbk-gray-50: #f9fafb;
    --gfbk-gray-100: #f3f4f6;
    --gfbk-gray-200: #dcebf3;
    --gfbk-gray-300: #d1d5d4;
    --gfbk-midnight: #0a1225;
    --gfbk-success: #2abc5e;
    --gfbk-warning: #ee4b49;
    --gfbk-radius: 15px;
    --gfbk-radius-sm: 7px;
    --gfbk-radius-lg: 18px;
    --gfbk-shadow: 0 5px 16px rgba(0,0,0,0.08);
    --gfbk-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --gfbk-transition: all 0.3s ease;
}

/* === HEADER / TOPBAR === */
.gfbk-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--gfbk-white);
    border-bottom: 1px solid var(--gfbk-gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.gfbk-topbar__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px 16px;
    min-height: 59px;
}

.gfbk-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--gfbk-dark) !important;
    text-decoration: none !important;
    flex-shrink: 0;
}

.gfbk-brand svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Desktop nav menu */
.gfbk-menu {
    display: flex;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.gfbk-menu__link {
    color: var(--gfbk-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
}

.gfbk-menu__link:hover {
    color: var(--gfbk-secondary-dark);
}

/* Header CTA */
.gfbk-topbar__action {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--gfbk-secondary-dark), var(--gfbk-secondary));
    color: var(--gfbk-white) !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--gfbk-radius-sm);
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gfbk-topbar__action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178,133,10,0.3);
}

/* === HAMBURGER BUTTON === */
.gfbk-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 39px;
    padding: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.gfbk-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--gfbk-dark);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.gfbk-hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.gfbk-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.gfbk-hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* === MOBILE DRAWER === */
.gfbk-drawer {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gfbk-white);
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gfbk-drawer.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.gfbk-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 5px;
}

.gfbk-drawer__nav a {
    display: block;
    padding: 16px 13px;
    color: var(--gfbk-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--gfbk-radius-sm);
    transition: background 0.2s;
}

.gfbk-drawer__nav a:hover {
    background: var(--gfbk-gray-100);
}

/* === MOBILE: show hamburger, hide menu === */
@media (max-width: 768px) {
    .gfbk-menu {
        display: none !important;
    }
    .gfbk-topbar__action {
        display: none !important;
    }
    .gfbk-hamburger {
        display: flex !important;
    }
}

/* === MAIN CONTENT === */
.gfbk-content {
    min-height: 60vh;
}

.gfbk-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 13px;
}

@media (max-width: 768px) {
    .gfbk-wrapper {
        padding: 0 11px;
    }
}

.gfbk-article {
    padding-bottom: 42px;
}

/* === HERO SECTION === */
.gfbk-hero {
    background: linear-gradient(135deg, #211d25 0%, #14213a 50%, #153061 100%);
    color: var(--gfbk-white);
    text-align: center;
    padding: 29px 19px 27px;
    margin-bottom: 0;
    border-radius: 0 0 var(--gfbk-radius-lg) var(--gfbk-radius-lg);
}

.gfbk-hero__tag {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    background: rgba(213,158,39,0.2);
    color: var(--gfbk-secondary);
    border-radius: 23px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
}

.gfbk-hero__heading {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: var(--gfbk-white);
}

.gfbk-hero__desc {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-top: 11px;
}

/* === PROVIDERS / COMPANIES TABLE === */
.gfbk-providers {
    padding: 14px 0;
}

.gfbk-providers__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Desktop header row */
.gfbk-providers__head {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 9px;
    padding: 12px 19px;
    background: linear-gradient(135deg, #161334, #1b283c);
    color: var(--gfbk-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--gfbk-radius) var(--gfbk-radius) 0 0;
    text-align: center;
}

/* Company row - desktop grid */
.gfbk-providers__row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 5px;
    align-items: center;
    padding: 23px 15px;
    background: var(--gfbk-white);
    border-bottom: 1px solid var(--gfbk-gray-200);
    transition: background 0.2s, box-shadow 0.2s;
}

.gfbk-providers__row:last-child {
    border-radius: 0 0 var(--gfbk-radius) var(--gfbk-radius);
    border-bottom: none;
}

.gfbk-providers__row:hover {
    background: #fffdf5;
}

.gfbk-providers__row.top-pick {
    background: linear-gradient(135deg, #fefce8, #f5f5bb);
    border-left: 4px solid var(--gfbk-secondary);
}

/* Company cell */
.gfbk-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.gfbk-company-cell__logo {
    max-height: 63px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--gfbk-radius-sm);
}

.gfbk-company-cell__tagline {
    font-size: 9px;
    color: var(--gfbk-accent);
    font-weight: 600;
}

/* Perks / Features */
.gfbk-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
}

.gfbk-perk {
    display: inline-block;
    padding: 3px 8px;
    background: var(--gfbk-gray-100);
    color: var(--gfbk-text);
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
    border: 2px solid var(--gfbk-gray-200);
}

/* Score / Rating */
.gfbk-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.gfbk-stars {
    display: flex;
    gap: 1px;
    justify-content: center;
}

.gfbk-stars__star {
    font-size: 16px;
}
.gfbk-stars__star.lit {
    color: #ed970a;
}
.gfbk-stars__star.dim {
    color: var(--gfbk-gray-300);
}

.gfbk-score__num {
    font-size: 14px;
    font-weight: 700;
    color: var(--gfbk-dark);
}

.gfbk-score__bbb {
    font-size: 11px;
    color: var(--gfbk-text-dim);
    font-weight: 500;
}

/* Investment */
.gfbk-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gfbk-invest__amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--gfbk-dark);
}

.gfbk-invest__label {
    font-size: 11px;
    color: var(--gfbk-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* CTA Cell */
.gfbk-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gfbk-cta-cell__main {
    display: inline-block;
    padding: 7px 27px;
    background: linear-gradient(135deg, var(--gfbk-secondary-dark), var(--gfbk-secondary));
    color: var(--gfbk-white) !important;
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--gfbk-radius-sm);
    text-decoration: none !important;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.gfbk-cta-cell__main:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(177,128,17,0.3);
}

.gfbk-cta-cell__alt {
    display: inline-block;
    padding: 7px 18px;
    color: var(--gfbk-accent) !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid var(--gfbk-accent);
    border-radius: var(--gfbk-radius-sm);
    transition: background 0.2s;
}

.gfbk-cta-cell__alt:hover {
    background: rgba(10,123,175,0.08);
}

/* === MOBILE: Card Layout for Companies === */
@media (max-width: 768px) {
    .gfbk-providers__head {
        display: none;
    }

    .gfbk-providers__row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 17px;
        margin: 8px 0;
        border-radius: var(--gfbk-radius);
        border: 2px solid var(--gfbk-gray-200);
        border-bottom: 1px solid var(--gfbk-gray-200);
        box-shadow: var(--gfbk-shadow);
        gap: 13px;
    }

    .gfbk-providers__row.top-pick {
        border-color: var(--gfbk-secondary);
        border-left-width: 1px;
        box-shadow: 0 4px 16px rgba(225,163,33,0.15);
    }

    .gfbk-company-cell__logo {
        max-height: none;
        max-width: 40vw;
        width: 40vw;
        height: auto;
    }

    .gfbk-perks {
        justify-content: center;
    }

    .gfbk-cta-cell {
        width: 100%;
        gap: 11px;
    }

    .gfbk-cta-cell__main {
        width: 100%;
        padding: 14px 27px;
        font-size: 17px;
    }

    .gfbk-cta-cell__alt {
        width: 100%;
        padding: 7px 19px;
        font-size: 12px;
        text-align: center;
    }
}

/* === TABLE OF CONTENTS === */
.gfbk-toc {
    background: linear-gradient(135deg, rgba(222,158,24,0.08), rgba(223,168,32,0.03));
    border: 2px solid rgba(220,162,27,0.3);
    border-radius: var(--gfbk-radius);
    padding: 0;
    margin: 25px 0;
    max-width: 400px;
    overflow: hidden;
}

.gfbk-toc__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 17px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--gfbk-dark);
    font-family: inherit;
    text-align: left;
    border-radius: var(--gfbk-radius);
}

.gfbk-toc__toggle:hover {
    background: rgba(221,169,35,0.07);
}

.gfbk-toc__toggle-icon {
    font-size: 11px;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 7px;
    color: var(--gfbk-secondary-dark);
}

.gfbk-toc.toc-open .gfbk-toc__toggle-icon {
    transform: rotate(180deg);
}

.gfbk-toc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.gfbk-toc.toc-open .gfbk-toc__body {
    max-height: 1000px;
    padding-bottom: 13px;
}

.gfbk-toc__list {
    list-style: none;
    padding: 0 18px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.gfbk-toc__list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 13px;
    color: var(--gfbk-text);
    text-decoration: none;
    font-size: 13.5px;
    border-radius: var(--gfbk-radius-sm);
    transition: background 0.2s;
}

.gfbk-toc__list li a::before {
    content: '92';
    color: var(--gfbk-secondary-dark);
    font-weight: bold;
    flex-shrink: 0;
}

.gfbk-toc__list li a:hover {
    background: rgba(218,163,26,0.12);
    color: var(--gfbk-secondary-dark);
}

/* === CONTENT BLOCKS === */
.gfbk-block {
    margin: 22px 0;
}

.gfbk-block h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gfbk-dark);
    margin: 0 0 17px;
    line-height: 1.3;
    padding-left: 16px;
    border-left: 5px solid var(--gfbk-secondary);
}

.gfbk-block__body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gfbk-text);
}

.gfbk-block__body p {
    margin-bottom: 13px;
}

.gfbk-block__body ul, .gfbk-block__body ol {
    padding-left: 27px;
    margin-bottom: 15px;
}

.gfbk-block__body li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Section intro */
.gfbk-section-intro {
    text-align: center;
    margin-bottom: 33px;
}

.gfbk-section-intro__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gfbk-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.gfbk-section-intro__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gfbk-dark);
    margin: 0 0 5px;
}

.gfbk-section-intro__text {
    font-size: 15px;
    color: var(--gfbk-text-dim);
}

/* === TESTIMONIALS / REVIEWS CAROUSEL === */
.gfbk-reviews {
    padding: 39px 0;
    overflow: hidden;
}

.gfbk-reviews__carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 9px 0 16px;
    scrollbar-width: none;
}

.gfbk-reviews__carousel::-webkit-scrollbar {
    display: none;
}

.gfbk-review-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--gfbk-white);
    border: 1px solid var(--gfbk-gray-200);
    border-radius: var(--gfbk-radius);
    padding: 17px;
    box-shadow: var(--gfbk-shadow);
}

.gfbk-review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 11px;
}

.gfbk-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gfbk-secondary-dark), var(--gfbk-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gfbk-white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.gfbk-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gfbk-review-card__author {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gfbk-review-card__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gfbk-dark);
}

.gfbk-review-card__location {
    font-size: 12px;
    color: var(--gfbk-text-dim);
}

.gfbk-review-card__verified {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gfbk-success);
    color: var(--gfbk-white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.gfbk-review-card__stars {
    margin-bottom: 8px;
}

.gfbk-review-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gfbk-text);
    margin: 0;
}

.gfbk-review-card__date {
    display: block;
    font-size: 12px;
    color: var(--gfbk-text-light);
    margin-top: 13px;
}

@media (max-width: 768px) {
    .gfbk-review-card {
        flex: 0 0 280px;
    }
}

/* === FAQ SECTION === */
.gfbk-faq {
    padding: 43px 0;
}

.gfbk-faq-header {
    text-align: center;
    margin-bottom: 31px;
}

.gfbk-faq-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gfbk-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px 15px;
    background: rgba(219,157,34,0.1);
    border-radius: 22px;
    margin-bottom: 9px;
}

.gfbk-faq-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gfbk-dark);
    margin: 0;
}

.gfbk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.gfbk-faq-item {
    background: var(--gfbk-white);
    border: 1px solid var(--gfbk-gray-200);
    border-radius: var(--gfbk-radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.gfbk-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gfbk-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 23px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--gfbk-dark);
    text-align: left;
    line-height: 1.4;
    gap: 9px;
}

.gfbk-faq-icon {
    width: 23px;
    height: 19px;
    flex-shrink: 0;
    color: var(--gfbk-text-dim);
    transition: transform 0.3s ease;
}

.gfbk-faq-item.active .gfbk-faq-icon {
    transform: rotate(180deg);
}

.gfbk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.gfbk-faq-item.active .gfbk-faq-answer {
    max-height: 600px;
}

.gfbk-faq-answer-inner {
    padding: 0 21px 20px;
}

.gfbk-faq-answer-inner p {
    color: var(--gfbk-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* === FOOTER === */
.gfbk-footer {
    background: var(--gfbk-primary);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 21px;
    margin-top: 51px;
}

.gfbk-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 14px;
}

.gfbk-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 41px;
    margin-bottom: 32px;
}

.gfbk-footer__brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--gfbk-white);
    margin-bottom: 14px;
}

.gfbk-footer__desc {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.gfbk-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--gfbk-white);
    margin: 0 0 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gfbk-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gfbk-footer__links li {
    margin-bottom: 9px;
}

.gfbk-footer__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.gfbk-footer__links a:hover {
    color: var(--gfbk-secondary);
}

.gfbk-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    text-align: center;
}

.gfbk-footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

@media (max-width: 768px) {
    .gfbk-footer__grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
}

/* === STICKY FOOTER BAR === */
.gfbk-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 16px;
    background: var(--gfbk-white);
    border-top: 1px solid var(--gfbk-gray-200);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    animation: slideUpBar 0.5s ease 2s both;
}

@keyframes slideUpBar {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.gfbk-sticky-bar img {
    height: 32px !important;
    border-radius: 7px;
}

.gfbk-sticky-bar .gfbk-sticky-close {
    position: absolute;
    top: -12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gfbk-white);
    border: 2px solid var(--gfbk-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--gfbk-text-dim);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.gfbk-sticky-bar .gfbk-sticky-close:hover {
    background: var(--gfbk-gray-100);
}

@media (max-width: 768px) {
    .gfbk-sticky-bar {
        gap: 9px;
        padding: 6px 15px;
        flex-wrap: nowrap;
    }
    .gfbk-sticky-bar span {
        font-size: 11px !important;
        white-space: nowrap;
    }
    .gfbk-sticky-bar a[href*="gokiiit"] {
        font-size: 11px !important;
        padding: 7px 11px !important;
    }
}

/* === CONTENT IMAGES === */
.gfbk-content-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--gfbk-radius);
    margin: 22px auto;
    box-shadow: var(--gfbk-shadow);
}

/* === PROCESS STEPS (override for light theme) === */
.process-header h2 {
    color: var(--gfbk-dark) !important;
}
.process-header p {
    color: var(--gfbk-text-dim) !important;
}
.step-title {
    color: var(--gfbk-dark) !important;
}
.step-description {
    color: var(--gfbk-text-dim) !important;
}
.process-section {
    background: var(--gfbk-gray-50);
    border-radius: var(--gfbk-radius-lg);
    margin: 33px 0;
}

/* === CHECKLIST (override) === */
.checklist--boxed {
    margin: 24px 0;
}

/* === Fix body padding for sticky bar === */
body.gfbk-page {
    padding-bottom: 63px;
}

/* === Content width edge-to-edge on mobile === */
@media (max-width: 768px) {
    .gfbk-wrapper {
        padding: 0 5px !important;
        max-width: 100% !important;
    }

    .gfbk-article {
        padding: 0 3px;
    }

    .gfbk-block {
        padding: 0 3px;
    }

    .gfbk-hero {
        padding: 22px 13px 20px;
        border-radius: 0;
        margin-left: -7px;
        margin-right: -7px;
    }

    .gfbk-toc {
        margin-left: 0;
        margin-right: 0;
        padding: 13px;
    }

    .gfbk-faq .gfbk-wrapper {
        padding: 0 !important;
    }
}

/* === Schema / invisible markup === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


/* ============================================
   COMPREHENSIVE FIX - March 2026
   ============================================ */

/* === Desktop: wider wrapper for home page table === */
@media (min-width: 769px) {
    .gfbk-wrapper {
        max-width: 1500px !important;
        padding: 0 27px !important;
    }

    /* Keep text content blocks at readable width */
    .gfbk-block,
    .gfbk-toc,
    .gfbk-faq,
    .gfbk-reviews,
    .process-section {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Table full width within 1500px wrapper */
    .gfbk-providers {
        max-width: 1500px !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Company logos in table: 170-230px */
    .gfbk-company-cell__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        max-height: none !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Content images: 30% width with text wrapping */
    .gfbk-content-img {
        max-width: 30% !important;
        height: auto !important;
        margin: 19px 26px 13px 0 !important;
        float: left !important;
        clear: left !important;
    }

    .gfbk-content-img:nth-of-type(even) {
        float: right !important;
        margin: 19px 0 15px 22px !important;
        clear: right !important;
    }

    /* Review page content image */
    .gfbk-block .gfbk-content-img {
        max-width: 30% !important;
    }

    /* Topbar wider */
    .gfbk-topbar__wrap {
        max-width: 1500px !important;
    }

    /* Footer wider */
    .gfbk-footer__inner {
        max-width: 1500px !important;
    }

    /* Hero section full width within wrapper */
    .gfbk-hero {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* === CTA button text centering === */
.gfbk-cta-cell {
    text-align: center !important;
}
.gfbk-cta-cell__main,
.gfbk-cta-cell__alt {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Also for exq-style buttons */
.exq-cta-cell {
    text-align: center !important;
}
.exq-btn-cta,
.exq-btn-review {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* === Review page: company logo with semi-transparent white background === */
.gfbk-article > .gfbk-block:first-of-type img[src*="logo"],
.gfbk-article div[style*="text-align:center"] img[src*="logo"],
.gfbk-article div[style*="text-align:center"] img[alt*="logo" i],
.gfbk-article div[style*="text-align:center"] img[alt*="Gold" i] {
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 18px 21px !important;
    border-radius: 19px !important;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08) !important;
}

/* === FAQ: compact height, no bloated margins === */
[class*="-faq"],
#faq,
[id="faq"] {
    max-width: 900px !important;
    padding: 0 !important;
}

.gfbk-faq {
    padding: 24px 0 !important;
}

.gfbk-faq-question {
    padding: 15px 18px !important;
    font-size: 11px !important;
    min-height: 0 !important;
}

.gfbk-faq-answer-inner {
    padding: 0 19px 11px !important;
}

.gfbk-faq-answer-inner p {
    margin: 0 !important;
    font-size: 11px !important;
}

.gfbk-faq-item {
    margin-bottom: 5px !important;
}

.gfbk-faq-list {
    gap: 4px !important;
}

/* === Mobile fixes === */
@media (max-width: 768px) {
    /* Content images full width on mobile */
    .gfbk-content-img {
        float: none !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 18px 0 !important;
        clear: both !important;
    }

    /* Company card logos: 40-50% width */
    .gfbk-company-cell__logo {
        width: 50vw !important;
        max-width: 50vw !important;
        min-width: 40vw !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Center everything in cards */
    .gfbk-providers__row {
        align-items: center !important;
        text-align: center !important;
    }

    .gfbk-cta-cell {
        width: 100% !important;
        align-items: center !important;
    }

    /* Ensure min side padding */
    .gfbk-wrapper {
        padding: 0 5px !important;
    }

    .gfbk-block {
        padding: 0 5px !important;
    }

    /* Breadcrumbs within content */
    nav[aria-label="breadcrumb"],
    .breadcrumbs,
    .gfbk-breadcrumbs {
        overflow-x: hidden !important;
        max-width: 100% !important;
        word-break: break-word !important;
    }

    /* FAQ compact on mobile */
    .gfbk-faq-question {
        padding: 9px 10px !important;
        font-size: 14px !important;
    }

    /* Review page company logo */
    .gfbk-article div[style*="text-align:center"] img {
        max-width: 60% !important;
    }
}

/* === Breadcrumbs never overflow === */
nav[aria-label="breadcrumb"],
.breadcrumbs,
.gfbk-breadcrumbs {
    max-width: 1500px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* === Clear floats after content blocks === */
.gfbk-block::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* === Banner centering === */
img[src*="banner"],
img[src*="gold-ira-kit"],
a[href*="gokiiit"] img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* === Sticky footer on review pages (already global) === */
/* === Exit intent popup (already global) === */


/* === Inner page content images constrained === */
.gfbk-block__body img:not(.gfbk-company-cell__logo) {
    max-width: 300px !important;
    height: auto !important;
    display: block !important;
    margin: 18px auto !important;
}

.gfbk-block__body svg,
.gfbk-block__body img[src*="svg"] {
    max-width: 200px !important;
    max-height: 200px !important;
    display: block !important;
    margin: 15px auto !important;
}

/* But NOT company logos on review page - those should be bigger */
.gfbk-article div[style*="text-align:center"] img[src*="logo"] {
    max-width: 250px !important;
    max-height: 100px !important;
}

/* Content images in text blocks on desktop - override for home page */
@media (min-width: 769px) {
    .gfbk-block__body .gfbk-content-img {
        max-width: 30% !important;
        float: left !important;
        margin: 11px 22px 5px 0 !important;
    }
    .gfbk-block__body .gfbk-content-img:nth-of-type(even) {
        float: right !important;
        margin: 11px 0 7px 18px !important;
    }
}

/* Mobile: content images full width */
@media (max-width: 768px) {
    .gfbk-block__body img {
        max-width: 100% !important;
        float: none !important;
    }
}
