/* =====================================================================
   BETPRO SIGN UP PAGE — Scoped under .bpsu-page
   Font sizes in px as requested. No emojis — SVG icons only.
   ===================================================================== */

/* ── Global Page Wrapper ── */
.bpsu-page {
    font-family: 'Inter', var(--font-body-family), sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
}

/* ── Image-with-text padding for new sections ── */
.bpsu-iwt-padding {
    padding-top: 30px;
    padding-bottom: 20px;
}

@media screen and (min-width: 750px) {
    .bpsu-iwt-padding {
        padding-top: 45px;
        padding-bottom: 60px;
    }
}

/* ── Intro-section reverse layout ── */
.bpsu-page .intro-section__content--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 749px) {
    .bpsu-page .intro-section__content--reverse {
        flex-direction: column;
    }
}

/* ── Intro-section extra paragraphs styling ── */
.bpsu-page .intro-section__description {
    margin-bottom: 12px;
}

.bpsu-page .intro-section__description:last-child {
    margin-bottom: 0;
}

/* ── Image-with-text list items inside new sections ── */
.bpsu-page .image-with-text__text ul {
    margin: 12px 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.bpsu-page .image-with-text__text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.bpsu-page .image-with-text__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #16E0A8;
    border-radius: 50%;
}

/* ── Hero Badge ── */
.bpsu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 224, 168, 0.1);
    color: #0d9668;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.bpsu-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #16E0A8;
    border-radius: 50%;
    display: inline-block;
    animation: bpsuPulse 2s infinite;
}

@keyframes bpsuPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.bpsu-highlight {
    color: #16E0A8;
}

/* ── Hero Trust Badges ── */
.bpsu-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bpsu-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.bpsu-trust-item svg {
    flex-shrink: 0;
}

/* ── Section Headers (reusable) ── */
.bpsu-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.bpsu-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.bpsu-section-badge--primary {
    background: rgba(22, 224, 168, 0.1);
    color: #0d9668;
}

.bpsu-section-badge--warning {
    background: rgba(239, 68, 68, 0.08);
    color: #DC2626;
}

.bpsu-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
    margin-bottom: 12px;
}

@media screen and (min-width: 750px) {
    .bpsu-section-header h2 {
        font-size: 36px;
    }
}

.bpsu-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================================
   SECTION 2  –  THE HARD TRUTH
   ===================================================================== */
.bpsu-hard-truth {
    padding: 60px 0;
    background: #fafafa;
}

.bpsu-truth-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media screen and (min-width: 990px) {
    .bpsu-truth-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bpsu-truth-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpsu-truth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bpsu-truth-card--danger {
    border-color: rgba(239, 68, 68, 0.2);
}

.bpsu-truth-card--success {
    border-color: rgba(22, 224, 168, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
}

.bpsu-truth-card__icon {
    margin-bottom: 16px;
}

.bpsu-truth-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bpsu-truth-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* =====================================================================
   SECTION 3  –  STEP-BY-STEP GUIDE
   ===================================================================== */
.bpsu-steps {
    padding: 60px 0;
}

.bpsu-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media screen and (min-width: 750px) {
    .bpsu-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media screen and (min-width: 990px) {
    .bpsu-steps-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bpsu-step-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.bpsu-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 224, 168, 0.12);
    border-color: #16E0A8;
}

.bpsu-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #16E0A8 0%, #12b885 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.bpsu-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bpsu-step-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.bpsu-step-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #16E0A8;
    margin-bottom: 6px;
}

.bpsu-steps-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(22, 224, 168, 0.06);
    border: 1px solid rgba(22, 224, 168, 0.2);
    border-radius: 12px;
    font-size: 16px;
    color: #333;
}

/* =====================================================================
   SECTION 4  –  DEALER CHECKLIST + SCAM ALERTS
   ===================================================================== */
.bpsu-dealer-check {
    padding: 60px 0;
    background: #fafafa;
}

.bpsu-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media screen and (min-width: 750px) {
    .bpsu-checklist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.bpsu-checklist-col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 2px solid transparent;
}

.bpsu-checklist-col--safe {
    border-color: rgba(22, 224, 168, 0.25);
}

.bpsu-checklist-col--danger {
    border-color: rgba(239, 68, 68, 0.2);
}

.bpsu-checklist-col__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.bpsu-checklist-col__header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
}

.bpsu-checklist-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bpsu-checklist-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

.bpsu-checklist-list li:last-child {
    border-bottom: none;
}

.bpsu-checklist-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* =====================================================================
   SECTION 5  –  FEATURES GRID
   ===================================================================== */
.bpsu-features {
    padding: 60px 0;
}

.bpsu-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media screen and (min-width: 750px) {
    .bpsu-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.bpsu-feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpsu-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bpsu-feature-card__icon {
    margin-bottom: 16px;
}

.bpsu-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 10px;
}

.bpsu-feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* =====================================================================
   SECTION 6  –  SAFETY TIPS
   ===================================================================== */
.bpsu-safety {
    padding: 60px 0;
    background: #fafafa;
}

.bpsu-safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media screen and (min-width: 750px) {
    .bpsu-safety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media screen and (min-width: 990px) {
    .bpsu-safety-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bpsu-safety-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpsu-safety-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.bpsu-safety-item__number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(22, 224, 168, 0.2);
    line-height: 1;
    min-width: 48px;
}

.bpsu-safety-item__content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 6px;
    line-height: 1.3;
}

.bpsu-safety-item__content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =====================================================================
   SECTION 7  –  FAQ ACCORDION
   ===================================================================== */
.bpsu-faq {
    padding: 60px 0;
}

.bpsu-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bpsu-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.bpsu-faq-item[open] {
    border-color: #16E0A8;
}

.bpsu-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    cursor: pointer;
    transition: background 0.2s ease;
    list-style: none;
}

.bpsu-faq-question::-webkit-details-marker {
    display: none;
}

.bpsu-faq-question:hover {
    background: #fafafa;
}

.bpsu-faq-question span {
    flex: 1;
    padding-right: 16px;
}

.bpsu-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #999;
}

.bpsu-faq-item[open] .bpsu-faq-chevron {
    transform: rotate(180deg);
    color: #16E0A8;
}

.bpsu-faq-answer {
    padding: 0 24px 20px;
}

.bpsu-faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* =====================================================================
   SECTION 8  –  FINAL CTA
   ===================================================================== */
.bpsu-cta {
    padding: 60px 0;
}

.bpsu-cta-inner {
    background: linear-gradient(135deg, #121212 0%, #1a2e28 50%, #0d3d2e 100%);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bpsu-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 224, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bpsu-cta-content {
    position: relative;
    z-index: 1;
}

.bpsu-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

@media screen and (min-width: 750px) {
    .bpsu-cta-content h2 {
        font-size: 36px;
    }
}

.bpsu-cta-content>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.bpsu-cta-buttons {
    margin-bottom: 16px;
}

.bpsu-btn--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #16E0A8 0%, #12b885 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.bpsu-btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(22, 224, 168, 0.3);
    color: #fff;
}

.bpsu-btn--cta:visited {
    color: #fff;
}

.bpsu-cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================================
   DISCLAIMER
   ===================================================================== */
.bpsu-disclaimer {
    padding: 24px 0;
    border-top: 1px solid #eee;
}

.bpsu-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    text-align: center;
}

/* =====================================================================
   DARK MODE SUPPORT
   ===================================================================== */
body.pi-dark-mode .bpsu-page {
    color: #e0e0e0;
}

body.pi-dark-mode .bpsu-section-header h2,
body.pi-dark-mode .bpsu-truth-card h3,
body.pi-dark-mode .bpsu-step-content h3,
body.pi-dark-mode .bpsu-checklist-col__header h3,
body.pi-dark-mode .bpsu-feature-card h3,
body.pi-dark-mode .bpsu-safety-item__content h3,
body.pi-dark-mode .bpsu-faq-question {
    color: #fff;
}

body.pi-dark-mode .bpsu-section-subtitle,
body.pi-dark-mode .bpsu-truth-card p,
body.pi-dark-mode .bpsu-step-content p,
body.pi-dark-mode .bpsu-checklist-list li,
body.pi-dark-mode .bpsu-feature-card p,
body.pi-dark-mode .bpsu-safety-item__content p,
body.pi-dark-mode .bpsu-faq-answer p {
    color: #aaa;
}

body.pi-dark-mode .bpsu-hard-truth,
body.pi-dark-mode .bpsu-dealer-check,
body.pi-dark-mode .bpsu-safety {
    background: #0a0a0a;
}

body.pi-dark-mode .bpsu-truth-card,
body.pi-dark-mode .bpsu-step-card,
body.pi-dark-mode .bpsu-checklist-col,
body.pi-dark-mode .bpsu-feature-card,
body.pi-dark-mode .bpsu-safety-item,
body.pi-dark-mode .bpsu-faq-item {
    background: #1a1a1a;
    border-color: #333;
}

body.pi-dark-mode .bpsu-truth-card--success {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d2820 100%);
}

body.pi-dark-mode .bpsu-truth-card--danger {
    border-color: rgba(239, 68, 68, 0.3);
}

body.pi-dark-mode .bpsu-checklist-col--safe {
    border-color: rgba(22, 224, 168, 0.3);
}

body.pi-dark-mode .bpsu-checklist-col--danger {
    border-color: rgba(239, 68, 68, 0.3);
}

body.pi-dark-mode .bpsu-checklist-col__header {
    border-bottom-color: #333;
}

body.pi-dark-mode .bpsu-checklist-list li {
    border-bottom-color: #222;
}

body.pi-dark-mode .bpsu-faq-question:hover {
    background: #222;
}

body.pi-dark-mode .bpsu-steps-total {
    background: rgba(22, 224, 168, 0.08);
    border-color: rgba(22, 224, 168, 0.2);
    color: #ccc;
}

body.pi-dark-mode .bpsu-disclaimer {
    border-top-color: #333;
}

body.pi-dark-mode .bpsu-disclaimer p {
    color: #666;
}

body.pi-dark-mode .bpsu-hero-badge {
    background: rgba(22, 224, 168, 0.15);
}

body.pi-dark-mode .bpsu-trust-item {
    color: #bbb;
}

body.pi-dark-mode .bpsu-hero-trust {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.pi-dark-mode .bpsu-safety-item__number {
    color: rgba(22, 224, 168, 0.3);
}

/* =====================================================================
   MOBILE OPTIMIZATIONS
   ===================================================================== */
@media screen and (max-width: 749px) {

    .bpsu-hard-truth,
    .bpsu-steps,
    .bpsu-dealer-check,
    .bpsu-features,
    .bpsu-safety,
    .bpsu-faq,
    .bpsu-cta {
        padding: 40px 0;
    }

    .bpsu-section-header {
        margin-bottom: 32px;
    }

    .bpsu-section-header h2 {
        font-size: 24px;
    }

    .bpsu-step-card {
        padding: 20px 16px;
    }

    .bpsu-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .bpsu-checklist-col {
        padding: 24px 20px;
    }

    .bpsu-cta-inner {
        padding: 36px 20px;
        border-radius: 16px;
    }

    .bpsu-cta-content h2 {
        font-size: 24px;
    }

    .bpsu-btn--cta {
        padding: 14px 24px;
        font-size: 15px;
    }

    .bpsu-faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }

    .bpsu-faq-answer {
        padding: 0 16px 16px;
    }

    .bpsu-hero-trust {
        gap: 12px;
    }
}