/* ============================================
   BECOME A DEALER — TOKENS
   ============================================ */
:root {
    --bd-obsidian: #0A0B0D;
    --bd-surface: #15181C;
    --bd-surface-2: #1D2126;
    --bd-hairline: #2C3238;
    --bd-steel: #9AA6AE;
    --bd-white: #F3F6F7;
    --bd-red: #D91C1C;
    --bd-red-dim: #A01515;
    --bd-font: 'Barlow', sans-serif;
    --bd-radius: 6px;
    --bd-ease: .25s ease;
}

.desktop {
    display: block;
}

.phone {
    display: none;
}


@media (max-width: 576px) {


    .phone {
        display: block;
    }

    .desktop {
        display: none;
    }
}

/* ============================================
   BASE — type scale matches home.css exactly
   ============================================ */
.bd-body {
    background: var(--bd-obsidian) !important;
    color: var(--bd-white) !important;
    font-family: var(--bd-font) !important;
    line-height: 1.6;
    overflow-x: hidden;
}
.top-sele{
    align-content: center;
}

.bd-body ::selection {
    background: var(--bd-red);
    color: #fff;
}

.bd-body h1,
.bd-body h2 {
    font-weight: 700 !important;
    margin: 0;
    color: #fff !important;
    text-transform: uppercase;
}

.bd-body h1 {
    font-size: 40px;
}

.bd-body h2 {
    font-size: 35px;
}

@media(max-width:991px) {
    .bd-body h1 {
        font-size: 32px;
    }

    .bd-body h2 {
        font-size: 30px;
    }
}

@media(max-width:480px) {
    .bd-body h1 {
        font-size: 25px;
    }

    .bd-body h2 {
        font-size: 23px;
    }
}

.bd-body h3 {
    font-weight: 700 !important;
    margin: 0;
    color: var(--bd-red) !important;
    text-transform: uppercase;
}

.bd-body h4 {
    font-weight: 700 !important;
    margin: 0;
    color: #fff !important;
    text-transform: uppercase;
}

.bd-body p {
    font-size: 17px !important;
    color: var(--bd-steel) !important;
}

@media(max-width:480px) {
    .bd-body p {
        font-size: 15px !important;
    }
}

.bd-body li,
.bd-body span {
    color: var(--bd-steel) !important;
}

.bd-eyebrow {
    font-size: 17px;
    text-transform: uppercase;
    color: red !important;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}

.bd-eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--bd-red);
    display: inline-block;
}

/* ---- section shell: every section picks --dark or --light ---- */
.bd-section {
    position: relative;
    padding: 6rem 0;
}

@media(max-width:768px) {
    .bd-section {
        padding: 4rem 0;
    }
}

.bd-section--dark {
    background: var(--bd-obsidian);
}

.bd-section--dark h2,
.bd-section--dark h4 {
    color: #fff !important;
}

.bd-section--dark p,
.bd-section--dark li,
.bd-section--dark span {
    color: var(--bd-steel) !important;
    font-size: 17px !important;
}

.bd-section--light {
    background: #F3F5F7;
    border-top: 1px solid #E3E6E9;
    border-bottom: 1px solid #E3E6E9;
}

.bd-section--light h2,
.bd-section--light h4 {
    color: #101214 !important;
}

.bd-section--light p,
.bd-section--light li,
.bd-section--light span {
    color: #5b6470 !important;
}

.bd-section--light .bd-eyebrow {
    color: var(--bd-red) !important;
}

/* ---- reveal on scroll ---- */
.bd-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.bd-reveal.in {
    opacity: 1;
    transform: none;
}

@media(prefers-reduced-motion:reduce) {
    .bd-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---- buttons: one system used everywhere ---- */
.bd-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--bd-red);
    border: 1.5px solid var(--bd-red);
    color: #fff !important;
    font-family: var(--bd-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    transition: .2s;
    text-decoration: none;
    cursor: pointer;
}

.bd-btn:hover {
    background: var(--bd-red-dim);
    border-color: var(--bd-red-dim);
}

.bd-btn--ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .85) !important;
    font-family: var(--bd-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    transition: .2s;
    text-decoration: none;
}

.bd-btn--ghost:hover {
    border-color: rgba(255, 255, 255, .55);
    color: #fff !important;
}

.bd-section--light .bd-btn--ghost {
    border-color: #D3D8DE;
    color: #101214 !important;
}

.bd-section--light .bd-btn--ghost:hover {
    border-color: var(--bd-red);
    color: var(--bd-red) !important;
}

@media(max-width:768px) {
    .bd-actions {
        flex-direction: column;
    }

    .bd-actions .bd-btn,
    .bd-actions .bd-btn--ghost {
        width: 100%;
        justify-content: center;
    }
}



/* =====================================================
   SECTION 1 — HERO (.pg-hero)
===================================================== */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--obsidian);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .22);
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: 17px;
}

.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* H1 (.pg-hero .hero-title): 40px desktop / 32px tablet / 25px phone */
@media (max-width: 768px) {
    .pg-hero .hero-title {
        font-size: 32px;
    }
}

.pg-hero .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    max-width: 58ch;
    margin: 0 0 1.8rem;
}

/* Hero — tablet & mobile */
@media (max-width: 768px) {

    .pg-hero,
    .pg-hero .hero-body {
        min-height: auto;
    }

    .pg-hero .hero-body {
        padding: 2rem 0 3rem;
    }

    .pg-hero .hero-tagline {
        font-size: 15px;
    }

    .pg-hero .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .pg-hero .hero-badges {
        gap: .45rem;
        margin-bottom: 1.5rem;
    }

    .pg-hero .badge-pill {
        font-size: 15px;
        padding: .26rem .7rem;
    }

    .pg-hero .hero-actions {
        gap: .55rem;
    }

    .pg-hero .hero-actions a {
        padding: .72rem 1.15rem;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .pg-hero .hero-title {
        font-size: 25px;
    }
}


/* =====================================================
   SECTION 2 — STATS BAR (.pg-stat-bar)
===================================================== */
.pg-stat-bar {
    background: #1A1D22;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.pg-stat-bar .pg-stat-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.pg-stat-bar .pg-stat-cell {
    padding: 1.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--hairline);
}

.pg-stat-bar .pg-stat-cell:last-child {
    border-right: none;
}

.pg-stat-bar .pg-stat-num {
    font-size: 28.8px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.pg-stat-bar .pg-stat-num span {
    color: var(--red);
    font-size: 17.6px;
}

.pg-stat-bar .pg-stat-label {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .3rem;
    color: rgba(255, 255, 255, .42);
}

/* Stats bar — mobile (2 columns) */
@media (max-width: 768px) {
    .pg-stat-bar .pg-stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-stat-bar .pg-stat-cell:nth-child(2n) {
        border-right: none;
    }

    .pg-stat-bar .pg-stat-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--hairline);
    }
}

/* Legacy stat grid (unused class left in from earlier hero layout — safe to delete if not referenced in HTML) */
@media (max-width: 992px) {
    .ppf-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ppf-hero-stats {
        grid-template-columns: 1fr;
    }
}



/* ============================================
   STATS BAND — dark accent strip right under hero
   ============================================ */
.bd-stats {
    background: var(--bd-surface);
    border-top: 1px solid var(--bd-hairline);
    border-bottom: 1px solid var(--bd-hairline);
    padding: 3.2rem 0 !important;
}

.bd-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.bd-stats__num {
    display: block;
    font-size: 33.6px;
    font-weight: 900;
    color: #fff !important;
    line-height: 1;
}

.bd-stats__num span {
    color: var(--bd-red) !important;
}

.bd-stats__lbl {
    display: block;
    margin-top: .4rem;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--bd-steel) !important;
}

@media(max-width:900px) {
    .bd-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .bd-stats {
        padding: 2rem 0 !important;
    }

    .bd-stats__grid {
        gap: 1.1rem 1rem;
    }

    .bd-stats__num {
        font-size: 25.6px;
    }
}

@media(max-width:560px) {
    .bd-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   SPLIT (image + copy) — light section #1
   ============================================ */
.bd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bd-split__media {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bd-hairline);
}

.bd-split__media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media(max-width:992px) {
    .bd-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


/* ============================================
   WHY ULTRAGUARD — dark section #2
   Heading block full-width on top, then all
   points as a card grid below (one row, wraps).
   ============================================ */
.bd-why-head {
    /* max-width: 70ch; */
}

.bd-cred {
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 8px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.bd-cred:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.bd-cred i {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    color: var(--bd-red) !important;
    font-size: 18.4px;
    margin-bottom: 1rem;
}

.bd-cred strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: .5rem;
}

.bd-cred p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.bd-section--light .bd-cred {
    background: #fff;
    border-color: #E3E6E9;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.bd-section--light .bd-cred strong {
    color: #101214 !important;
}

.bd-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    opacity: .85;
}

.bd-partners img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bd-section--light .bd-partners img {
    filter: none;
}

@media(max-width:768px) {
    .bd-cred {
        padding: 1.5rem 1.3rem;
    }
}


/* ============================================
   BENEFITS (tabbed cards) — light section #2
   ============================================ */
.bd-tabs {
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
}

.bd-tab {
    background: #fff;
    border: 1px solid #E3E6E9;
    color: #5b6470 !important;
    font-family: var(--bd-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: .7rem 1.4rem;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
}

.bd-tab.active,
.bd-tab:hover {
    background: var(--bd-red);
    border-color: var(--bd-red);
    color: #fff !important;
    font-size: 16px;
}

.bd-tab-panel {
    display: none;
}

.bd-tab-panel.active {
    display: block;
}

.bd-benefit {
    background: #fff !important;
    border: 1px solid #E3E6E9 !important;
    border-radius: 8px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.bd-benefit:hover {
    border-color: rgba(217, 28, 28, .35) !important;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 18, 20, .12);
}

.bd-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-red) !important;
    font-size: 20.8px;
    margin-bottom: 1rem;
}

.bd-benefit h3 {
    font-size: 16.8px !important;
}

.bd-benefit p {
    font-size: 15px !important;
    margin: .5rem 0 0;
    color: #5b6470 !important;
}

@media(max-width:768px) {
    .bd-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: .3rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        scrollbar-width: none;
    }

    .bd-tabs::-webkit-scrollbar {
        display: none;
    }

    .bd-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 15px;
        padding: .65rem 1.1rem;
    }
}


/* ============================================
   TRAINING & CERTIFICATION — dark section #3
   ============================================ */
.bd-train-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.bd-train {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 8px;
    padding: 1rem 1.1rem;
    transition: .25s ease;
}

.bd-train:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.bd-train i {
    font-size: 20.8px;
    color: var(--bd-red) !important;
    flex-shrink: 0;
}

.bd-train span {
    font-size: 15px !important;
    font-weight: 700;
    line-height: 1.3;
    color: #fff !important;
}

.bd-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .7rem;
    margin-top: 1.8rem;
}

.bd-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--bd-hairline);
    display: block;
}

@media(max-width:768px) {
    .bd-train-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bd-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .bd-train-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   DEALER WELCOME KIT — light section #3
   ============================================ */
.bd-kit {
    background: #fff !important;
    border: 1px solid #E3E6E9 !important;
    border-radius: 8px;
    padding: 1.6rem;
    height: 100%;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
    transition: .28s cubic-bezier(.16, 1, .3, 1);
}

.bd-kit:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 18, 20, .12);
}

.bd-kit__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    /* background: var(--bd-red); */
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    padding: .35rem .8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.bd-kit ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.bd-kit li {
    font-size: 15px !important;
    color: #5b6470 !important;
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.bd-kit li i {
    color: var(--bd-red) !important;
    font-size: 11.2px;
    margin-top: .3rem;
    flex-shrink: 0;
}

.bd-kit-strip {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E3E6E9;
}

.bd-kit-strip span {
    font-size: 15px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #5b6470 !important;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bd-kit-strip i {
    color: var(--bd-red) !important;
}


/* ============================================
   PARTNERSHIP TIERS — dark section #4
   ============================================ */
.bd-tier {
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 10px;
    padding: 2.2rem 2rem;
    height: 100%;
    position: relative;
    transition: .3s;
}

.bd-tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.bd-tier--featured {
    border-color: var(--bd-red);
    background: linear-gradient(160deg, rgba(217, 28, 28, .1), rgba(217, 28, 28, .02));
}

.bd-tier__badge {
    position: absolute;
    top: -13px;
    left: 2rem;
    background: var(--bd-red);
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 20px;
}

.bd-tier__name {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bd-red) !important;
    margin-bottom: .6rem;
}

.bd-tier h3 {
    font-size: 24px !important;
    margin-bottom: 1.3rem;
}

.bd-tier__list {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.bd-tier__list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: 15px !important;
}

.bd-tier__list li i {
    color: var(--bd-red) !important;
    font-size: 14.4px;
    margin-top: .2rem;
    flex-shrink: 0;
}

@media(max-width:768px) {
    .bd-tier {
        padding: 1.8rem 1.5rem;
    }

    .bd-tier__badge {
        left: 1.5rem;
    }
}


/* ============================================
   COMPARISON TABLE — light section #4
   ============================================ */
.bd-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #E3E6E9;
    border-radius: 10px;
    overflow: hidden;
}

.bd-table th,
.bd-table td {
    padding: 1rem 1.3rem;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #E3E6E9;
}

.bd-table th:first-child,
.bd-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: black;
    font-size: 17px;
}

.bd-table thead th {
    background: #EEF0F3;
    color: #101214 !important;
    text-transform: uppercase;
    font-size: 15px;
}

.bd-table thead th.hl {
    background: var(--bd-red);
    color: #fff !important;
}

.bd-table tbody tr:last-child td {
    border-bottom: none;
}

.bd-table .yes {
    color: #2bd47d;
    font-size: 17.6px;
}

.bd-table .no {
    color: #ff6b78;
    font-size: 17.6px;
}

@media(max-width:768px) {

    .bd-table th,
    .bd-table td {
        padding: .75rem .8rem;
        font-size: 15px;
    }
}


/* ============================================
   ELIGIBILITY REQUIREMENTS — dark section #5
   ============================================ */
.bd-req-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.bd-req {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bd-req__num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 28, 28, .12);
    border: 1px solid rgba(217, 28, 28, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: var(--bd-red) !important;
}

.bd-req p {
    margin: 0;
    font-size: 17px;
    padding-top: .3rem;

}

@media(max-width:768px) {
    .bd-req p {
        font-size: 15px !important;
    }
}


/* ============================================
   4 STEPS — light section #5
   ============================================ */
.bd-step {
    background: #fff !important;
    border: 1px solid #E3E6E9 !important;
    border-radius: 8px;
    padding: 2rem 1.6rem;
    height: 100%;
    position: relative;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.bd-step__num {
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: 2px solid var(--bd-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17.6px;
    font-weight: 900;
    color: var(--bd-red) !important;
    margin-bottom: 1rem;
}

.bd-step__idx {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    font-size: 15px;
    font-weight: 900;
    color: var(--bd-red) !important;
    opacity: .3;
}

.bd-step h3 {
    font-size: 16.8px !important;
}

.bd-step p {
    font-size: 15px !important;
    margin: .5rem 0 0;
    color: #5b6470 !important;
}


/* ============================================
   TESTIMONIALS — dark section #6
   ============================================ */
.bd-quote {
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 10px;
    padding: 2rem 1.8rem;
    height: 100%;
}

.bd-quote__stars {
    color: #f5b400;
    font-size: 15px;
    margin-bottom: 1rem;
}

.bd-quote p {
    font-size: 15px !important;
    font-style: italic;
    line-height: 1.7;
}

.bd-quote__who {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--bd-hairline);
}

.bd-quote__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bd-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.bd-quote__who strong {
    display: block;
    font-size: 15px;
    color: #fff !important;
}

.bd-quote__who span {
    font-size: 15px !important;
    color: var(--bd-steel) !important;
}



/* =====================================================
   FAQ SECTION (.faq-*)
   Uses existing tokens: --obsidian, --surface, --hairline, --steel, --red
===================================================== */
.faq-sec {
    background: white;
    padding: 50px 0px 80px 0px;
}

.faq-header {
    margin: 0 auto 3rem;
    text-align: start;
}

.faq-header .eyebrow {
    color: red !important;
}

.faq-desc {
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease;
    border: 1px solid rgba(0, 0, 0, 0.386);
}

.faq-item span {
    color: black !important;
    font-size: 18px;
}

.faq-header .faq-heading {
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
    color: black !important;
}

.faq-header p {
    color: black !important;
}

.faq-item.active {
    border-color: rgba(217, 28, 28, .4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    font-family: inherit;

}

.faq-item.active .faq-question {
    color: var(--red);
}

/* Plus/minus icon built from two bars */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 28, 28, .1);
}

.faq-icon span {
    position: absolute;
    background: var(--red);
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transition: transform .25s ease;
}

.faq-icon span:first-child {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 1.3rem 1.2rem;
    line-height: 1.6;
    color: #464747;
}

/* Responsive: tablet — reduce gap */
@media (max-width: 992px) {
    .faq-grid {
        gap: 0 1.5rem;
    }
}

/* Responsive: mobile — single column, all 10 stacked */
@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .faq-col {
        gap: .8rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 1.1rem 1rem;
    }

    .faq-item span {
        font-size: 17px;
    }
}


/* ============================================
   APPLICATION FORM + CONTACT INFO — dark section #7
   ============================================ */
.bd-form {
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 10px;
    padding: 2.5rem;
}

.bd-form label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bd-steel) !important;
    margin-bottom: 1.1rem;
}

.bd-form input,
.bd-form select,
.bd-form textarea {
    display: block;
    width: 100%;
    margin-top: .4rem;
    background: var(--bd-obsidian) !important;
    border: 1px solid var(--bd-hairline) !important;
    border-radius: 5px;
    color: #fff !important;
    font-family: var(--bd-font);
    font-size: 15px;
    padding: .7rem .9rem;
    outline: none;
    transition: border-color .2s;
}

.bd-form input:focus,
.bd-form select:focus,
.bd-form textarea:focus {
    border-color: var(--bd-red) !important;
}

.bd-form textarea {
    min-height: 110px;
    resize: vertical;
}

.bd-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}

.bd-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-red) !important;
    font-size: 17.6px;
    flex-shrink: 0;
}

.bd-info strong {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff !important;
}

.bd-info a,
.bd-info span {
    font-size: 15px !important;
    color: var(--bd-steel) !important;
    text-decoration: none;
}

.bd-info a:hover {
    color: var(--bd-red) !important;
}

@media(max-width:576px) {
    .bd-form {
        padding: 1.6rem;
    }
}

@media(max-width:768px) {

    .bd-form input,
    .bd-form select,
    .bd-form textarea {
        font-size: 16px;
        padding: .85rem .9rem;
    }

    .bd-form label {
        margin-bottom: .9rem;
    }

    .bd-form .bd-btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
}


/* ============================================
   FRANCHISE APPLICATION MODAL — theme independent
   ============================================ */
.bd-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.bd-modal.open {
    display: flex;
}

.bd-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 7, 9, .78);
    backdrop-filter: blur(4px);
    animation: bdFade .25s ease;
}

.bd-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--bd-surface);
    border: 1px solid var(--bd-hairline);
    border-radius: 12px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .65);
    animation: bdRise .3s cubic-bezier(.16, 1, .3, 1);
}

@keyframes bdFade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes bdRise {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.bd-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--bd-surface-2);
    border-bottom: 1px solid var(--bd-hairline);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.bd-modal__head h3 {
    font-size: 20px !important;
    color: #fff !important;
    margin: .3rem 0 0;
}

.bd-modal__head p {
    font-size: 15px !important;
    margin: .45rem 0 0;
    color: var(--bd-steel) !important;
    max-width: 52ch;
}

.bd-modal__close {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--bd-hairline);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-steel);
    font-size: 17.6px;
    transition: .2s;
}

.bd-modal__close:hover {
    border-color: var(--bd-red);
    color: #fff;
    background: rgba(217, 28, 28, .15);
}

.bd-modal__body {
    padding: 1.8rem;
}

.bd-modal .bd-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.bd-modal__note {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--bd-hairline);
    font-size: 15px !important;
    color: var(--bd-steel) !important;
}

.bd-modal__note i {
    color: var(--bd-red) !important;
    font-size: 15.2px;
    margin-top: .1rem;
    flex-shrink: 0;
}

.bd-modal__success {
    text-align: center;
    padding: 2rem 1rem;
}

.bd-modal__success i {
    font-size: 48px;
    color: var(--bd-red) !important;
}

.bd-modal__success h4 {
    font-size: 18.4px !important;
    margin: 1rem 0 .5rem;
    color: #fff !important;
}

.bd-modal__success p {
    font-size: 15px !important;
    color: var(--bd-steel) !important;
    margin: 0 auto;
    max-width: 44ch;
}

body.bd-lock {
    overflow: hidden;
}

@media(max-width:576px) {
    .bd-modal {
        padding: 0;
    }

    .bd-modal__panel {
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
        max-width: none;
    }

    .bd-modal__head {
        border-radius: 0;
        padding: 1.2rem 1.2rem;
    }

    .bd-modal__body {
        padding: 1.2rem;
    }
}