/* ==========================================================
 *  PB Landing Page – Styles
 *  BEM prefix: .pb-lp__
 * ========================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --pb-lp-bg:           #01061a;
    --pb-lp-bg-card:      #111827;
    --pb-lp-bg-card-alt:  #0f172a;
    --pb-lp-bg-section:   #0e0e1a;
    --pb-lp-border:       #1e293b;
    --pb-lp-text:         #ffffff;
    --pb-lp-text-muted:   #8b92a5;
    --pb-lp-primary:      #3b82f6;
    --pb-lp-primary-dark: #2563eb;
    --pb-lp-accent:       #06b6d4;
    --pb-lp-gradient:     linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --pb-lp-gradient-btn: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --pb-lp-radius:       12px;
    --pb-lp-radius-lg:    16px;
    --pb-lp-radius-xl:    24px;
    --pb-lp-transition:   .3s ease;
}

/* ---------- Hide site-wide header/footer ---------- */
body:has(.pb-lp) .site-footer,
body:has(.pb-lp) #colophon,
body:has(.pb-lp) .header-section {
    display: none !important;
}

/* ---------- Base ---------- */
.pb-lp {
    background: var(--pb-lp-bg);
    color: var(--pb-lp-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.pb-lp *,
.pb-lp *::before,
.pb-lp *::after {
    box-sizing: border-box;
}

.pb-lp a {
    text-decoration: none;
    color: inherit;
    transition: color var(--pb-lp-transition);
}

.pb-lp a:hover {
    color: inherit;
}

.pb-lp img {
    max-width: 100%;
    height: auto;
}

/* ---------- Section Spacing ---------- */
.pb-lp__section {
    padding: 80px 0;
}

.pb-lp__section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pb-lp__section-subtitle {
    font-size: 1rem;
    color: var(--pb-lp-text-muted);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ---------- Widescreen container override (2200px+ only) ---------- */
@media (min-width: 2200px) {
    .pb-lp .container,
    .pb-lp__navbar .container {
        max-width: 1700px;
    }
}

@media (min-width: 2500px) {
    .pb-lp .container,
    .pb-lp__navbar .container {
        max-width: 1900px;
    }
}

/* ---------- Widescreen typography scale-up (2200px+ only) ---------- */
@media (min-width: 2200px) {
    .pb-lp__section-title {
        font-size: 3rem;
    }
    .pb-lp__hero-title {
        font-size: 7em;
    }
    .pb-lp__section-subtitle {
        font-size: 1.15rem;
        max-width: 750px;
    }
}

@media (min-width: 2500px) {
    .pb-lp__section-title {
        font-size: 3.5rem;
    }
    .pb-lp__hero-title {
        font-size: 8em;
    }
    .pb-lp__section-subtitle {
        font-size: 1.25rem;
        max-width: 850px;
    }
}

/* ============================================================
 *  1. NAVBAR
 * ============================================================ */
.pb-lp__navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 14px 0;
    transition: background var(--pb-lp-transition), box-shadow var(--pb-lp-transition);
}

/* Offset for WP admin bar when logged in */
.admin-bar .pb-lp__navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .pb-lp__navbar {
        top: 46px;
    }
}

.pb-lp__navbar--scrolled {
    background: transparent;
}

/* Floating pill bar */
.pb-lp__navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg,
        rgba(12, 58, 129, 0.25) 0%,
        rgba(12, 58, 129, 0.55) 20%,
        rgba(12, 58, 129, 0.55) 80%,
        rgba(12, 58, 129, 0.25) 100%
    );
    border: none;
    border-radius: 16px;
    padding: 10px 12px 10px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pb-lp__navbar-logo img {
    display: block;
    height: 30px;
    width: auto;
}

.pb-lp__mobile-nav-logo-image {
    display: block;
    height: 28px;
    width: auto;
}

.pb-lp__navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb-lp__navbar-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--pb-lp-text-muted);
    transition: color var(--pb-lp-transition);
    white-space: nowrap;
}

.pb-lp__navbar-link:hover,
.pb-lp__navbar-link.active {
    color: #fff;
}

.pb-lp__navbar-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

/* Shared button base */
.pb-lp__navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    transition: all var(--pb-lp-transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

/* Discord button – border glow style */
.pb-lp__navbar-btn--discord {
    background: transparent;
    border: 1px solid #298dff;
    color: var(--pb-lp-text-muted);
    padding: 8px 20px 8px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.pb-lp__navbar-btn--discord:hover {
    border-color: #298dff;
    box-shadow: 0 0 16px rgba(0, 179, 255, .3);
    color: #fff;
}

/* Discord icon square */
.pb-lp__navbar-btn-discord-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #5865F2;
    border-radius: 8px;
    color: #fff;
    flex-shrink: 0;
}

/* Sign Up / My Account button */
.pb-lp__navbar-btn--signup {
    background: #3287ff;
    border: 3px solid #00b4ff;
    color: #fff;
    padding: 6px 18px;
    border-radius: 12px;
    font-weight: 700;
    gap: 6px;
}

.pb-lp__navbar-btn--signup:hover {
    opacity: .92;
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 179, 255, .3);
}

.pb-lp__navbar-btn--signup svg {
    transition: transform var(--pb-lp-transition);
}

.pb-lp__navbar-btn--signup:hover svg {
    transform: translateX(3px);
}

/* Mobile toggle */
.pb-lp__navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pb-lp-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* Offcanvas mobile nav */
.pb-lp__mobile-nav {
    background: var(--pb-lp-bg) !important;
    border-left: 1px solid var(--pb-lp-border) !important;
    max-width: 300px;
    z-index: 1060 !important;
}

.pb-lp__mobile-nav .offcanvas-header {
    border-bottom: 1px solid var(--pb-lp-border);
}

.pb-lp__mobile-nav .btn-close {
    filter: invert(1);
}

.pb-lp__mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pb-lp__mobile-nav-links li {
    border-bottom: none;
}

.pb-lp__mobile-nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--pb-lp-text);
}

.pb-lp__mobile-nav-links a:hover {
    color: var(--pb-lp-primary);
}

/* Mobile nav CTA area */
.pb-lp__mobile-nav-cta {
    padding: 24px 20px;
    background: #0f172a;
    margin: 0 -16px -16px;
    border-radius: 0;
}

.pb-lp__mobile-nav-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pb-lp-text);
    text-align: center;
    margin-bottom: 16px;
}

.pb-lp__mobile-nav-cta .pb-lp__navbar-btn {
    color: #fff !important;
}

/* ============================================================
 *  2. HERO
 * ============================================================ */
.pb-lp__hero {
    padding: 180px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../img/hero-bg.jpg') top center / cover no-repeat;
}

.pb-lp__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, .3);
    color: #ffffff;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pb-lp__hero-title {
    font-size: 5.5em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pb-lp__hero-title span {
    background: var(--pb-lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-lp__hero-subtitle {
    font-size: 1.4rem;
    color: var(--pb-lp-text-muted);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.2em;
}

.pb-lp__hero-ctas {
    display: flex;
    align-items: stretch;
    gap: 16px;
    justify-content: center;
}

.pb-lp__hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all var(--pb-lp-transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

/* Discord outline button */
.pb-lp__hero-btn--discord {
    background: transparent;
    border: 1px solid #00b3ff;
    color: var(--pb-lp-text);
    padding: 10px 32px 10px 10px;
}

.pb-lp__hero-btn--discord:hover {
    border-color: #00b3ff;
    box-shadow: 0 0 16px rgba(0, 179, 255, .3);
    color: #fff;
}

/* Discord icon square inside hero button */
.pb-lp__hero-btn-discord-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #5865F2;
    border-radius: 8px;
    color: #fff;
    flex-shrink: 0;
}

/* Get Started / Primary button */
.pb-lp__hero-btn--primary {
    background: #05b0ff;
    border: 3px solid #3088ff;
    color: #fff;
    padding: 10px 32px;
    gap: 10px;
}

.pb-lp__hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 255, .35);
    color: #fff;
    opacity: .92;
}

.pb-lp__hero-btn--primary svg {
    transition: transform var(--pb-lp-transition);
}

.pb-lp__hero-btn--primary:hover svg {
    transform: translateX(3px);
}

/* Hero Preview Image */
.pb-lp__hero-preview {
    margin-top: 60px;
    width: 90vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.pb-lp__hero-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
 *  3. JOURNEY
 * ============================================================ */
.pb-lp__journey {
    padding: 80px 0;
}

.pb-lp__journey-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.pb-lp__journey-header-left {
    flex: 1;
}

.pb-lp__journey-header-right {
    flex: 1;
    color: #fff;
    font-size: 1.0125rem;
    line-height: 1.7;
    padding-top: 8px;
    max-width: 470px;
}

.pb-lp__journey-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.pb-lp__journey-title span {
    background: var(--pb-lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-lp__journey-cards-wrap {
    background: #0c152e;
    border: 1px solid rgba(59, 130, 246, .15);
    border-radius: 20px;
    padding: 32px;
}

.pb-lp__journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.pb-lp__journey-card {
    background: linear-gradient(to bottom, #0a3c68 0%, #091229 40%) padding-box,
                linear-gradient(to bottom, #024fa5 0%, #024fa5 20%, #151d31 50%) border-box;
    border: 1px solid transparent;
    border-radius: var(--pb-lp-radius-lg);
    padding: 48px 40px;
    transition: all var(--pb-lp-transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.pb-lp__journey-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: radial-gradient(circle, #272d3e 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 100%);
}

.pb-lp__journey-card > * {
    position: relative;
    z-index: 1;
}

.pb-lp__journey-card:hover {
    border-color: rgba(59, 130, 246, .4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.pb-lp__journey-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.pb-lp__journey-card-text {
    font-size: 1rem;
    color: #b5b8c0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pb-lp__journey-card-preview {
    margin-top: auto;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: -48px;
    border-radius: 0 0 var(--pb-lp-radius-lg) var(--pb-lp-radius-lg);
    overflow: hidden;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pb-lp__journey-card-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

.pb-lp__journey-card:nth-child(2) .pb-lp__journey-card-preview {
    margin-left: 0;
    margin-right: 0;
}

/* ============================================================
 *  4. ABOUT / FEATURES  (Tailwind handles layout; kept minimal)
 * ============================================================ */

/* ============================================================
 *  5. COMPARE
 * ============================================================ */
.pb-lp__compare {
    padding: 80px 0;
}

/* Outer card wrapper */
.pb-lp__compare-card {
    background: #071334;
    border-radius: var(--pb-lp-radius-xl);
    padding: 48px;
}

.pb-lp__compare-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.pb-lp__compare-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pb-lp__compare-subtitle {
    font-size: 1.2rem;
    color: var(--pb-lp-text-muted);
    line-height: 1.6;
    /* Must wrap: this is a long sentence. `white-space: nowrap` forced it
       onto one ~1200px line, which made the header's left block too wide
       for the space-between flex row, pushing the "Get Recommendation"
       button past the card's right edge. Letting it wrap keeps the button
       inside the container. */
}

/* CTA button — matches navbar signup style */
.pb-lp__compare-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    border-radius: 12px;
    background: #2095fe;
    border: 2px solid #00b4ff;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--pb-lp-transition);
    text-decoration: none;
    flex-shrink: 0;
}

.pb-lp__compare-cta-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 179, 255, .3);
    color: #fff;
}

.pb-lp__compare-cta-btn svg {
    transition: transform var(--pb-lp-transition);
}

.pb-lp__compare-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Table layout */
.pb-lp__compare-table {
    width: 100%;
}

/* Table header */
.pb-lp__compare-thead {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.5fr 1.2fr 1.2fr;
    padding: 15px 24px;
    border: 1px solid #26263c;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #0c192c;
    position: relative;
    overflow: hidden;
}

.pb-lp__compare-th {
    font-size: .85rem;
    font-weight: 600;
    color: #94a3b7;
    letter-spacing: 1px;
    text-align: center;
    border-right: 1px solid #2a3a51;
}

.pb-lp__compare-th:last-child {
    border-right: none;
}

.pb-lp__compare-th.pb-lp__compare-col-firm {
    text-align: left;
}

.pb-lp__compare-thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-left: 1px solid #1560d0;
    border-right: 1px solid #1560d0;
    border-bottom: 1px solid #1560d0;
    border-radius: 0 0 12px 12px;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Rows */
.pb-lp__compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.5fr 1.2fr 1.2fr;
    padding: 20px 24px;
    border: 1px solid #26263c;
    border-radius: 12px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #01122e 0%, #151d31 50%, #05274b 100%);
    transition: all var(--pb-lp-transition);
    position: relative;
    overflow: hidden;
}

.pb-lp__compare-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-left: 1px solid #1560d0;
    border-right: 1px solid #1560d0;
    border-bottom: 1px solid #1560d0;
    border-radius: 0 0 12px 12px;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.pb-lp__compare-row:last-child {
    margin-bottom: 0;
}

.pb-lp__compare-row:hover {
    background: linear-gradient(to right, #021a3a 0%, #1a2438 50%, #0a3158 100%);
}

/* Column dividers */
.pb-lp__compare-row > div {
    border-right: 1px solid #2a3a51;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.pb-lp__compare-row > div.pb-lp__compare-col-firm {
    justify-content: flex-start;
}

.pb-lp__compare-row > div:last-child {
    border-right: none;
    padding-right: 0;
}

/* FIRM column */
.pb-lp__compare-col-firm {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.pb-lp__compare-firm-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: #1a1a2e;
    padding: 4px;
    flex-shrink: 0;
}

.pb-lp__compare-firm-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

/* TP SCORE column */
.pb-lp__compare-col-score {
    text-align: center;
}

.pb-lp__compare-score-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #2a3a51;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

.pb-lp__compare-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* DETAILS column */
.pb-lp__compare-col-details {
    text-align: center;
}

.pb-lp__compare-detail-text {
    font-size: .85rem;
    color: #fff;
    line-height: 1.5;
}

/* OFFER column */
.pb-lp__compare-col-offer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
}

.pb-lp__compare-offer-percent {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0fa5fa;
}

.pb-lp__compare-offer-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px dashed #0fa5fa;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all var(--pb-lp-transition);
}

.pb-lp__compare-offer-code:hover {
    background: rgba(15, 165, 250, .1);
    color: #0fa5fa;
}

/* ACTION column */
.pb-lp__compare-col-action {
    text-align: center;
}

.pb-lp__compare-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    background: linear-gradient(to right, #0d99f1 0%, #0453bf 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all var(--pb-lp-transition);
    display: inline-block;
    text-decoration: none;
}

.pb-lp__compare-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, .3);
    color: #fff;
}

/* ============================================================
 *  6. DISCORD CTA
 * ============================================================ */
.pb-lp__discord {
    padding: 60px 0;
}

.pb-lp__discord-inner {
    background: linear-gradient(150deg, #02102a 0%, #02102a 25%, #08376e 45%, #0d308e 60%, #14447d 75%, #0a4587 100%);
    border: none;
    border-radius: 20px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

/* Bottom blue glow line */
.pb-lp__discord-inner::before {
    display: none;
}

/* Bottom blue glow spread */
.pb-lp__discord-inner::after {
    display: none;
}

.pb-lp__discord-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.pb-lp__discord-title {
    font-size: 2.6rem;
    font-weight: 800;
    font-style: normal;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.2;
}

.pb-lp__discord-text {
    font-size: 1rem;
    color: #ccd2ec;
    margin: 0 0 28px;
    line-height: 1.7;
    max-width: 494px;
}

.pb-lp__discord-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pb-lp__discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--pb-lp-transition);
    text-decoration: none;
    white-space: nowrap;
}

.pb-lp__discord-btn--signup {
    background: #05afff;
    border: 2px solid #2b8dff;
}

.pb-lp__discord-btn--signup:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, .3);
    color: #fff;
}

.pb-lp__discord-btn--join {
    background: transparent;
    border: 1px solid #00b3ff;
}

.pb-lp__discord-btn--join:hover {
    border-color: #00b3ff;
    box-shadow: 0 0 16px rgba(0, 179, 255, .3);
    transform: translateY(-2px);
    color: #fff;
}

.pb-lp__discord-graphic {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-right: 60px;
}

.pb-lp__discord-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.pb-lp__discord-glow {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(1, 7, 100, .5) 0%, rgba(1, 7, 100, .2) 40%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
 *  7. LIVE DISCOUNTS
 * ============================================================ */
.pb-lp__discounts {
    padding: 80px 0;
}

.pb-lp__discounts-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pb-lp__discounts-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.pb-lp__discounts-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.pb-lp__discounts-title span {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-lp__discounts-subtitle {
    font-size: .95rem;
    color: var(--pb-lp-text-muted);
}

.pb-lp__discounts-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(to right, #0d99f1 0%, #0453bf 100%);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--pb-lp-transition);
    text-decoration: none;
    flex-shrink: 0;
}

.pb-lp__discounts-viewall-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff;
}

/* Cards Grid */
.pb-lp__discounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */
.pb-lp__ld-card {
    background: #1e243d;
    border: 1px solid #131d33;
    border-radius: 14px;
    padding: 16px;
    gap: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pb-lp__ld-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-left: 1px solid #1560d0;
    border-right: 1px solid #1560d0;
    border-bottom: 1px solid #1560d0;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Top section: logo (30%) + name/rating (70%) */
.pb-lp__ld-top {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.pb-lp__ld-logo-wrap {
    width: 30%;
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.pb-lp__ld-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pb-lp__ld-info {
    width: 70%;
    padding-left: 14px;
    min-width: 0;
}

.pb-lp__ld-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pb-lp__ld-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #077bdc;
    font-size: .8rem;
    color: #6b7a94;
}

.pb-lp__ld-rating-num {
    font-weight: 600;
    color: #fff;
    margin-right: 2px;
}

.pb-lp__ld-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.pb-lp__ld-review-count {
    color: #0fa5fa;
    margin-left: 2px;
}

/* Offer box (voucher) */
.pb-lp__ld-offer-box {
    position: relative;
}

.pb-lp__ld-voucher-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pb-lp__ld-offer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 16px 14px 14px;
    min-height: 123px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pb-lp__ld-offer-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0fa5fa;
    display: block;
    margin-bottom: 6px;
}

.pb-lp__ld-offer-desc {
    font-size: .85rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.pb-lp__ld-offer-desc--no-discount {
    font-size: 1.05rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* Action buttons */
.pb-lp__ld-actions {
    display: flex;
    gap: 8px;
}

.pb-lp__ld-btn-firminfo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #1e293b;
    border: 1px solid #2592ff;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    transition: all var(--pb-lp-transition);
    white-space: nowrap;
    text-decoration: none;
    flex: 1;
}

.pb-lp__ld-btn-firminfo:hover {
    border-color: #0fa5fa;
    color: #fff;
}

.pb-lp__ld-btn-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 10px;
    background: transparent;
    border: 2px dashed #077bdc;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--pb-lp-transition);
    white-space: nowrap;
    overflow: visible;
    flex: 1;
    min-width: fit-content;
}

.pb-lp__ld-btn-code:hover {
    border-color: #0fa5fa;
}

.pb-lp__ld-btn-code-left {
    padding: 12px 12px;
    color: #0fa5fa;
    font-weight: 600;
}

.pb-lp__ld-code-divider {
    width: 1px;
    align-self: stretch;
    background: #1a2e52;
}

.pb-lp__ld-btn-code-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    min-width: 0;
}

.pb-lp__ld-code-text {
    font-weight: 700;
}

/* Go To Firm full-width button */
.pb-lp__ld-btn-go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    background: #2691ff;
    border: 3px solid #04b0ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--pb-lp-transition);
    text-decoration: none;
    margin-top: auto;
}

.pb-lp__ld-btn-go:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff;
}

/* ============================================================
 *  8. PARTNERED FIRMS
 * ============================================================ */
/* -- Partners Section -- */
.pb-lp__partners {
    padding: 40px 0 0;
    text-align: center;
    overflow: hidden;
}

.pb-lp__partners-title {
    font-size: 3.3rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.pb-lp__partners-title span {
    color: #3b9eff;
}

/* ── Orbit container ── */
.pb-lp__partners-orbit {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: -100px auto -150px;
}

/* ── Concentric rings SVG ── */
.pb-lp__partners-rings {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ── Center element ── */
.pb-lp__partners-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 3-layer concentric glow behind center icon */
.pb-lp__partners-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pb-lp__partners-center-glow--outer {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #020d25 60%, transparent 100%);
    animation: pb-lp__partners-pulse 3s ease-in-out infinite;
}

.pb-lp__partners-center-glow--mid {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #061737 55%, #020d25 100%);
    animation: pb-lp__partners-pulse 3s ease-in-out infinite;
}

.pb-lp__partners-center-glow--inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 120, 240, 0.55) 0%, rgba(30, 100, 220, 0.2) 50%, #061737 100%);
    animation: pb-lp__partners-pulse 3s ease-in-out infinite;
}

.pb-lp__partners-center-icon {
    display: block;
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(59, 158, 255, 0.4));
}

/* ── Firm logo nodes ── */
.pb-lp__partner-node {
    position: absolute;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    background: #0d1527;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    animation: pb-lp__partners-float 4s ease-in-out infinite;
    animation-delay: var(--float-delay);
    z-index: 3;
}

.pb-lp__partner-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* ── Ring-specific icon sizes ── */
.pb-lp__partner-node--ring1 {
    width: 65px;
    height: 65px;
}

.pb-lp__partner-node--ring3 {
    width: 50px;
    height: 50px;
}

/* Ring 4 (outermost) holds a single node — Alpha Futures. Sized to 50px to
   match AquaFutures (Ring 3) per design. */
.pb-lp__partner-node--ring4 {
    width: 50px;
    height: 50px;
}

.pb-lp__partner-node:hover {
    box-shadow: 0 0 16px rgba(59, 158, 255, 0.12);
    animation-play-state: paused;
    transform: translate(-50%, -50%) scale(1.08);
}

/* ── Animations ── */
@keyframes pb-lp__partners-pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: .7; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pb-lp__partners-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-8px); }
}

/* ============================================================
 *  9. FEATURED TOOLS
 * ============================================================ */
.pb-lp__tools {
    padding: 20px 0 80px;
}

/* ── Tools header row ── */
.pb-lp__tools-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 24px;
}

.pb-lp__tools-header-left {
    max-width: 600px;
}

.pb-lp__tools-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    white-space: nowrap;
}

.pb-lp__tools-subtitle {
    font-size: 1rem;
    color: var(--pb-lp-text-muted);
    margin: 0;
    line-height: 1.6;
    white-space: nowrap;
}

.pb-lp__tools-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2593ff;
    border: 2px solid #00b4ff;
    color: #fff;
    padding: 8px 28px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--pb-lp-transition);
    flex-shrink: 0;
}

.pb-lp__tools-header-btn:hover {
    background: #0098e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 175, 255, .3);
    color: #fff;
}

/* ── Tools grid ── */
.pb-lp__tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pb-lp__tool-card {
    background: #071331;
    border: 1px solid #0c1f51;
    border-radius: var(--pb-lp-radius-lg);
    padding: 32px 24px 0;
    transition: all var(--pb-lp-transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pb-lp__tool-card:hover {
    border-color: #1a3a7a;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.pb-lp__tool-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(59, 130, 246, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--pb-lp-primary);
    font-size: 1.4rem;
}

.pb-lp__tool-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pb-lp__tool-card-text {
    font-size: .875rem;
    color: var(--pb-lp-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pb-lp__tool-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2e89fe;
    border: 2px solid #01b2ff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--pb-lp-transition);
    align-self: flex-start;
    margin-bottom: 24px;
}

.pb-lp__tool-card-btn:hover {
    background: #0098e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 175, 255, .3);
    color: #fff;
}

.pb-lp__tool-card-preview {
    margin-top: auto;
    padding: 0 0 10px;
}

.pb-lp__tool-card-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.pb-lp__tool-card-preview--center {
    display: flex;
    align-items: center;
    flex: 1;
}

/* ============================================================
 *  9b. DISCORD COMMUNITY
 * ============================================================ */
.pb-lp__dcommunity {
    padding: 80px 0;
}

.pb-lp__dcommunity-inner {
    position: relative;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 8, 113, 0.4) 0%, transparent 70%);
}

/* Background rings */
.pb-lp__dcommunity-rings {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.pb-lp__dcommunity-ring {
    animation: pb-lp__dcommunity-pulse 3s ease-in-out infinite;
    transform-origin: 400px 300px;
}
@keyframes pb-lp__dcommunity-pulse {
    0%, 100% { stroke-opacity: 1; transform: scale(1); }
    50%      { stroke-opacity: 1; transform: scale(1.03); }
}

/* Floating tags */
.pb-lp__dcommunity-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 30, 48, .6);
    border: 1px solid rgba(26, 30, 48, .4);
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    font-style: normal;
    z-index: 2;
}

.pb-lp__dcommunity-tag svg {
    color: #5b8def;
}

.pb-lp__dcommunity-tag--tl {
    top: 30%;
    left: 22%;
    --tag-rotate: -8deg;
    animation: pb-lp__tag-bounce 3s ease-in-out infinite;
}

.pb-lp__dcommunity-tag--tr {
    top: 24%;
    right: 18%;
    --tag-rotate: 6deg;
    animation: pb-lp__tag-bounce 3s ease-in-out 0.75s infinite;
}

.pb-lp__dcommunity-tag--bl {
    bottom: 25%;
    left: 17%;
    --tag-rotate: 13deg;
    animation: pb-lp__tag-bounce 3s ease-in-out 1.5s infinite;
}

.pb-lp__dcommunity-tag--br {
    bottom: 24%;
    right: 16%;
    --tag-rotate: -12deg;
    animation: pb-lp__tag-bounce 3s ease-in-out 2.25s infinite;
}

@keyframes pb-lp__tag-bounce {
    0%, 100% { transform: translateY(0) rotate(var(--tag-rotate, 0deg)); }
    50%      { transform: translateY(-12px) rotate(var(--tag-rotate, 0deg)); }
}

/* Center content */
.pb-lp__dcommunity-center {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.pb-lp__dcommunity-logo {
    width: 240px;
    height: auto;
    margin-bottom: 24px;
}

.pb-lp__dcommunity-title {
    font-size: 2.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.pb-lp__dcommunity-text {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 520px;
}

.pb-lp__dcommunity-divider {
    display: block;
    margin: 0 auto 24px;
}

.pb-lp__dcommunity-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2e86fa;
    border: 2px solid #06adfa;
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pb-lp__dcommunity-btn:hover {
    background: linear-gradient(135deg, #0098e0, #1d7eef);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 175, 255, .35);
    color: #fff;
}

/* ============================================================
 *  10. FAQ
 * ============================================================ */
.pb-lp__faq {
    padding: 80px 0;
}

.pb-lp__faq-layout {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.pb-lp__faq-left {
    flex: 0 0 480px;
    position: sticky;
    top: 100px;
}

.pb-lp__faq-logo {
    width: 120px;
    margin-bottom: 24px;
}

.pb-lp__faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pb-lp__faq-subtitle {
    font-size: .95rem;
    color: var(--pb-lp-text-muted);
    margin-bottom: 0;
}

.pb-lp__faq-right {
    flex: 1;
}

.pb-lp__faq .accordion {
    max-width: 100%;
    margin: 0;
}

.pb-lp__faq .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--pb-lp-border);
}

.pb-lp__faq .accordion-button {
    background: transparent;
    color: var(--pb-lp-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 28px 0;
    box-shadow: none;
}

.pb-lp__faq .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
    filter: none;
    transition: transform 0.4s ease !important;
}

.pb-lp__faq .accordion-button:not(.collapsed) {
    color: #3b9eff !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pb-lp__faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.pb-lp__faq .accordion-body {
    color: #c0c8e0 !important;
    padding: 0 0 20px 0;
    font-size: .925rem;
    line-height: 1.7;
    background: transparent !important;
}

.pb-lp__faq .accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
}

.pb-lp__faq .accordion-item:last-child {
    border-bottom: none !important;
}

.pb-lp__faq .accordion-collapse {
    background-color: transparent !important;
    transition: height 0.4s ease;
}

.pb-lp__faq .accordion,
.pb-lp__faq .accordion-item,
.pb-lp__faq .accordion-header,
.pb-lp__faq .accordion-collapse,
.pb-lp__faq .accordion-body,
.pb-lp__faq .accordion-button {
    background-color: transparent !important;
}

.pb-lp__faq .accordion-body,
.pb-lp__faq .accordion-body * {
    color: #c0c8e0 !important;
}

section.pb-lp__faq .accordion .accordion-item .accordion-collapse .accordion-body {
    color: #c0c8e0 !important;
    background-color: transparent !important;
    visibility: visible !important;
    opacity: 1 !important;
}

section.pb-lp__faq .accordion .accordion-item .accordion-collapse.show {
    display: block !important;
    visibility: visible !important;
}

.pb-lp__faq .accordion-collapse .accordion-body {
    opacity: 0;
    transition: opacity 0.4s ease 0.05s;
}

.pb-lp__faq .accordion-collapse.collapsing .accordion-body {
    opacity: 0;
    transition: none;
}

.pb-lp__faq .accordion-collapse.show .accordion-body {
    opacity: 1 !important;
}

.pb-lp__faq .accordion-button::after {
    transition: transform 0.4s ease !important;
}

/* ============================================================
 *  11. FOOTER
 * ============================================================ */
.pb-lp__footer {
    padding: 60px 0 0;
    background: #030c23;
}

.pb-lp__footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 0;
}

.pb-lp__footer-top > div:first-child a img {
    width: auto;
}

.pb-lp__footer-brand-text {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 330px;
}

.pb-lp__footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
    color: var(--pb-lp-text);
}

.pb-lp__footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pb-lp__footer-links li {
    margin-bottom: 10px;
}

.pb-lp__footer-links a {
    font-size: 1.1rem;
    color: #fff;
    transition: color var(--pb-lp-transition);
}

.pb-lp__footer-links a:hover {
    color: #08adfe;
}
.pb-lp__footer-links a[href^="mailto:"] {
    text-decoration: underline;
}

.pb-lp__footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.pb-lp__footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: .9rem;
    transition: all var(--pb-lp-transition);
}

.pb-lp__footer-social a:hover {
    background: #e0e0e0;
    color: #111;
}

.pb-lp__footer-bottom {
    border-top: 1px solid var(--pb-lp-border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pb-lp__footer-copy {
    font-size: .8rem;
    color: var(--pb-lp-text-muted);
}

.pb-lp__footer-bottom-links {
    display: flex;
    gap: 24px;
}

.pb-lp__footer-bottom-links a {
    font-size: .8rem;
    color: var(--pb-lp-text-muted);
}

.pb-lp__footer-bottom-links a:hover {
    color: #08adfe;
}

.pb-lp__footer-social-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pb-lp-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.pb-lp__footer-newsletter {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.pb-lp__footer-newsletter-input {
    flex: 1;
    min-width: 0;
    max-width: 225px;
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 30px 30px !important;
    font-size: .85rem;
    color: #333;
    outline: none;
    height: 40px;
}

.pb-lp__footer-newsletter-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #000;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 8px;
    flex-shrink: 0;
    transition: background .2s;
}

.pb-lp__footer-newsletter-btn:hover {
    background: #333;
}

.pb-lp__footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 16px;
    border: 2px solid #4a9eff;
    background: #05102c;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all .2s;
    box-shadow: 0 0 20px rgba(42, 140, 255, 0.15);
}

.pb-lp__footer-discord-btn:hover {
    background: rgba(43, 140, 255, .15);
    border-color: #08adfe;
    color: #fff;
    transform: translateY(-1px);
}

.pb-lp__footer-copyright {
    position: relative;
    margin-top: 50px;
    padding: 18px 24px;
    text-align: center;
    font-size: .85rem;
    color: #fff;
    background: #127fec;
    border-radius: 16px 16px 0 0;
}

.pb-lp__footer-legal-links {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
}

.pb-lp__footer-legal-links a {
    color: #fff;
    text-decoration: underline;
    font-size: .85rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.pb-lp__footer-legal-links a:hover {
    opacity: 1;
}

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

/* Large desktops (1501px – 1800px) */
@media (max-width: 1800px) {
    .pb-lp__hero-title {
        font-size: 4.8em;
    }

    .pb-lp__hero-subtitle {
        font-size: 1.3rem;
        max-width: 750px;
    }

    .pb-lp__section {
        padding: 70px 0;
    }

    .pb-lp__journey-title {
        font-size: 2.4rem;
    }

    .pb-lp__journey-cards {
        gap: 28px;
    }

    .pb-lp__journey-card {
        padding: 34px 28px;
    }

    .pb-lp__journey-card-title {
        font-size: 1.5rem;
    }

    .pb-lp__journey-card-text {
        font-size: .95rem;
        margin-bottom: 18px;
    }

    .pb-lp__journey-card-preview {
        margin-top: 22px !important;
        height: 240px;
    }

    .pb-lp__compare-card {
        padding: 40px;
    }

    .pb-lp__compare-title {
        font-size: 2.6rem;
    }

    .pb-lp__compare-subtitle {
        font-size: 1rem;
    }

    .pb-lp__discounts-title {
        font-size: 2.4rem;
    }

    .pb-lp__tools-title {
        font-size: 2.2rem;
    }

    .pb-lp__dcommunity-title {
        font-size: 2.6rem;
    }

    .pb-lp__dcommunity-text {
        font-size: 1.15rem;
    }

    .pb-lp__faq-title {
        font-size: 2.6rem;
    }

    .pb-lp__partners-title {
        font-size: 3rem;
    }

    .pb-lp__footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 32px;
    }
}

/* Laptops (992px – 1500px) */
@media (max-width: 1500px) {
    .pb-lp__hero-title {
        font-size: 4.2em;
    }

    .pb-lp__hero-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
    }

    .pb-lp__section {
        padding: 60px 0;
    }

    .pb-lp__journey-title {
        font-size: 2.2rem;
    }

    .pb-lp__journey-cards {
        gap: 24px;
    }

    .pb-lp__journey-card {
        padding: 30px 24px;
    }

    .pb-lp__journey-card-title {
        font-size: 1.4rem;
    }

    .pb-lp__journey-card-text {
        font-size: .9rem;
        margin-bottom: 16px;
    }

    .pb-lp__journey-card-preview {
        margin-top: 20px !important;
        height: 220px;
    }

    /* About / How PipBack Works */
    .pb-about-grid {
        grid-template-columns: 1.5fr 1.5fr 1.5fr;
        gap: 20px;
    }

    .pb-about-logo-wrap img {
        width: 160px !important;
        height: 160px !important;
    }

    .pb-about-section-title {
        margin-bottom: 80px !important;
    }

    .pb-about-card-bottom {
        width: calc(100% / 3);
    }

    .pb-lp__compare-card {
        padding: 36px;
    }

    .pb-lp__compare-title {
        font-size: 2.4rem;
    }

    .pb-lp__compare-subtitle {
        font-size: .95rem;
    }

    .pb-lp__compare-cta-btn {
        padding: 8px 20px;
        font-size: .85rem;
        white-space: nowrap;
    }

    .pb-lp__compare-thead,
    .pb-lp__compare-row {
        grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr 0.7fr;
    }

    .pb-lp__discounts-title {
        font-size: 2.2rem;
    }

    .pb-lp__tools-title {
        font-size: 2rem;
    }

    .pb-lp__dcommunity-title {
        font-size: 2.4rem;
    }

    .pb-lp__dcommunity-text {
        font-size: 1.1rem;
    }

    .pb-lp__faq-title {
        font-size: 2.4rem;
    }

    .pb-lp__partners-title {
        font-size: 2.8rem;
    }

    .pb-lp__dcommunity-tag--tl {
        top: 19%;
        left: 18%;
    }

    .pb-lp__dcommunity-tag--bl {
        bottom: 16%;
        left: 15%;
    }

    .pb-lp__dcommunity-tag--br {
        bottom: 20%;
        right: 15%;
    }

    .pb-lp__footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 30px;
    }
}

/* Narrow desktops — drop tools grid from 4 cols to 2 cols for breathing room */
@media (max-width: 1199.98px) {
    .pb-lp__tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small laptops / large tablets (1024px) */
@media (max-width: 1024px) {
    .pb-lp__hero-title {
        font-size: 3.6rem;
    }

    .pb-lp__hero-subtitle {
        font-size: 1.05rem;
        max-width: 600px;
    }

    .pb-lp__section {
        padding: 56px 0;
    }

    /* Compare table — give the CTA column more room */
    .pb-lp__compare-thead,
    .pb-lp__compare-row {
        grid-template-columns: 1fr 1.1fr 1.3fr 1fr 0.8fr;
    }

    .pb-lp__compare-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .pb-lp__compare-header > div {
        flex: 1 1 0;
        min-width: 0;
        max-width: 68%;
    }

    .pb-lp__compare-cta-btn {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: .8rem;
        gap: 6px;
    }

    .pb-lp__compare-offer-code {
        padding: 2px 12px;
        font-size: .75rem;
    }

    .pb-lp__compare-firm-name {
        font-size: .7rem;
    }

    .pb-lp__compare-score-badge {
        padding: 1px 5px;
        font-size: .75rem;
    }

    .pb-lp__compare-title {
        font-size: 2rem;
    }

    /* Discounts — 2 columns instead of 3 */
    .pb-lp__discounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tools — 2 columns instead of 3 */
    .pb-lp__tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Journey cards */
    .pb-lp__journey-title {
        font-size: 2rem;
    }

    .pb-lp__journey-cards {
        gap: 20px;
    }

    /* About grid */
    .pb-about-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }

    .pb-about-logo-wrap img {
        width: 130px !important;
        height: 130px !important;
    }

    .pb-about-card-bottom {
        width: calc(100% / 3);
    }

    /* Footer */
    .pb-lp__footer-top {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 24px;
    }

    .pb-lp__footer-legal-links {
        position: static;
        transform: none;
        margin-top: 6px;
    }

    .pb-lp__footer-copyright {
        text-align: center;
    }

    .pb-lp__dcommunity-tag--bl {
        bottom: 12%;
        left: 11%;
    }

    .pb-lp__dcommunity-tag--br {
        bottom: 12%;
        right: 11%;
    }

    .pb-lp__dcommunity-tag--tl {
        top: 19%;
    }

    .pb-lp__dcommunity-tag--tr {
        top: 22%;
        right: 14%;
    }
}

/* Tablets & below */
@media (max-width: 991.98px) {
    .pb-lp__navbar-links,
    .pb-lp__navbar-actions {
        display: none;
    }

    .pb-lp__navbar-toggle {
        display: block;
    }

    .pb-lp__hero-title {
        font-size: 3.5rem;
    }

    .pb-lp__journey-header {
        flex-direction: column;
        gap: 16px;
    }

    .pb-lp__journey-cards {
        grid-template-columns: 1fr;
    }

    /* About section responsive handled by Tailwind */

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

    .pb-lp__tools-grid {
        grid-template-columns: 1fr;
    }

    .pb-lp__footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .pb-lp__footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .pb-lp__section {
        padding: 48px 0;
    }

    .pb-lp__section-title {
        font-size: 1.75rem;
    }

    /* ── HERO ── */
    .pb-lp__hero {
        padding: 100px 0 40px;
    }

    .pb-lp__hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .pb-lp__hero-subtitle {
        font-size: .95rem;
    }

    .pb-lp__hero-badge {
        font-size: .65rem;
        padding: 8px 16px;
    }

    .pb-lp__hero-ctas {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .pb-lp__hero-btn {
        width: auto;
        justify-content: center;
        font-size: .9rem;
        padding: 12px 20px;
        flex: 1;
        max-width: 220px;
    }

    /* ── JOURNEY ── */
    .pb-lp__journey-title {
        font-size: 1.75rem;
    }

    .pb-lp__journey-subtitle {
        font-size: .9rem;
    }

    /* ── ABOUT (vertical timeline on mobile) ── */

    /* Hide the desktop hub layout */
    .pb-about-hub-outer {
        display: none !important;
    }

    /* Show mobile timeline */
    .pb-about-mobile-timeline {
        display: flex !important;
    }

    /* Shrink the container width */
    #about > div {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px;
    }

    #about .text-center {
        font-size: 1.75rem !important;
        margin-bottom: 2.5rem !important;
        text-align: left !important;
    }

    /* ── COMPARE ── */
    .pb-lp__compare-card {
        padding: 28px 20px;
    }

    .pb-lp__compare-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pb-lp__compare-title {
        font-size: 1.75rem;
    }

    .pb-lp__compare-subtitle {
        font-size: 1rem;
    }

    /* Horizontal scroll on the table only */
    .pb-lp__compare-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Keep all 5 columns — scroll horizontally */
    .pb-lp__compare-thead,
    .pb-lp__compare-row {
        grid-template-columns: 1.5fr 1.2fr 1.5fr 1.2fr 1.2fr;
        min-width: 1200px;
        padding: 12px 16px;
        column-gap: 0;
    }

    .pb-lp__compare-thead {
        display: grid;
    }

    /* Align dividers: use identical padding on both th and row cells */
    .pb-lp__compare-thead .pb-lp__compare-th,
    .pb-lp__compare-row > div {
        padding: 0 16px;
        border-right: 1px solid #2a3a51;
    }

    .pb-lp__compare-thead .pb-lp__compare-th:last-child,
    .pb-lp__compare-row > div:last-child {
        border-right: none;
    }

    /* Keep rows compact */
    .pb-lp__compare-row {
        align-items: center;
    }

    .pb-lp__compare-firm-name {
        white-space: nowrap;
    }

    .pb-lp__compare-score-badge {
        white-space: nowrap;
        padding: 6px 14px;
        font-size: .85rem;
    }

    .pb-lp__compare-detail-text {
        font-size: .8rem;
        white-space: nowrap;
    }

    .pb-lp__compare-offer-code {
        white-space: nowrap;
    }

    /* ── DISCORD CTA ── */
    .pb-lp__discord-inner {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
    }

    .pb-lp__discord-title {
        font-size: 1.5rem;
    }

    .pb-lp__discord-text {
        max-width: 100%;
    }

    .pb-lp__discord-actions {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .pb-lp__discord-img {
        width: 160px;
    }

    .pb-lp__discord-graphic {
        margin-right: 0;
        margin-top: 10px;
        align-self: center;
    }

    /* ── LIVE DISCOUNTS ── */
    .pb-lp__discounts-grid {
        grid-template-columns: 1fr;
    }

    .pb-lp__discounts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pb-lp__discounts-title {
        font-size: 1.75rem;
    }

    /* ── PARTNERED FIRMS ── */
    .pb-lp__partners-title {
        font-size: 1.5rem;
    }

    .pb-lp__navbar-logo img {
        height: 22px;
    }

    .pb-lp__partners-orbit {
        height: 400px;
        margin: -40px auto -60px;
    }

    .pb-lp__partners-rings {
        transform: scale(1.8);
    }

    .pb-lp__partner-node {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .pb-lp__partner-node img {
        border-radius: 8px;
    }

    .pb-lp__partners-center-icon {
        width: 100px;
        height: 100px;
    }

    .pb-lp__partners-center-glow--outer {
        width: 160px;
        height: 160px;
    }

    .pb-lp__partners-center-glow--mid {
        width: 130px;
        height: 130px;
    }

    .pb-lp__partners-center-glow--inner {
        width: 110px;
        height: 110px;
    }

    /* ── FEATURED TOOLS ── */
    .pb-lp__tools-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pb-lp__tools-header-title {
        font-size: 1.75rem;
    }

    /* ── DISCORD COMMUNITY ── */
    .pb-lp__dcommunity-title {
        font-size: 1.75rem;
    }

    .pb-lp__dcommunity-text {
        font-size: 1rem;
    }

    .pb-lp__dcommunity-logo {
        width: 140px;
    }

    .pb-lp__dcommunity-tag {
        font-size: .7rem;
        padding: 6px 12px;
    }

    .pb-lp__dcommunity-tag--tl {
        top: 8%;
        left: 0;
    }
    .pb-lp__dcommunity-tag--tr {
        top: 5%;
        right: 0;
    }
    .pb-lp__dcommunity-tag--bl {
        bottom: 2%;
        left: 0;
    }
    .pb-lp__dcommunity-tag--br {
        bottom: 2%;
        right: 0;
    }

    /* ── FAQ ── */
    .pb-lp__faq {
        padding: 48px 0;
    }

    .pb-lp__faq-layout {
        flex-direction: column;
        gap: 24px;
    }

    .pb-lp__faq-left {
        flex: unset;
        min-width: unset;
        max-width: 100%;
        position: static;
    }

    .pb-lp__faq-logo {
        width: 72px;
        margin-bottom: 16px;
    }

    .pb-lp__faq-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .pb-lp__faq-subtitle {
        font-size: 0.85rem;
    }

    /* ── FOOTER ── */
    .pb-lp__footer-top {
        grid-template-columns: 1fr;
    }

    .pb-lp__footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Compare section – "Compare All" button */
.pb-lp__compare-all-wrap {
    margin: 1.5rem -48px -48px -48px;
}

.pb-lp__compare-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background-color: #07a5fa;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 0 var(--pb-lp-radius-xl) var(--pb-lp-radius-xl);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.pb-lp__compare-all-btn:hover {
    background-color: #0590de;
    color: #ffffff;
}

/* Compare section – blurred 4th row */
.pb-lp__compare-row--blurred {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}
