:root {
    --bph-primary: #10b981;
    --bph-primary-dark: #059669;
    --bph-primary-deep: #022c22;
    --bph-primary-soft: #ecfdf5;
    --bph-secondary: #0891b2;
    --bph-secondary-soft: #e0f2fe;
    --bph-gold: #d97706;
    --bph-gold-soft: #fef3c7;
    --bph-blue: #2563eb;
    --bph-blue-soft: #dbeafe;
    --bph-ink: #0f172a;
    --bph-text: #334155;
    --bph-muted: #64748b;
    --bph-soft: #f8fafc;
    --bph-white: #ffffff;
    --bph-border: #e2e8f0;
    --bph-border-strong: #cbd5e1;
    --bph-dark-text: rgba(255, 255, 255, 0.78);
    --bph-dark-muted: rgba(255, 255, 255, 0.62);
    --bph-dark-border: rgba(255, 255, 255, 0.14);
    --bph-dark-panel: rgba(255, 255, 255, 0.08);
    --bph-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    --bph-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
    --bph-shadow-green: 0 16px 38px rgba(16, 185, 129, 0.25);
    --bph-radius-sm: 10px;
    --bph-radius-md: 14px;
    --bph-radius-lg: 18px;
    --bph-radius-xl: 22px;
    --bph-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* State-of-the-art Neon Cyber Glows */
    --neon-emerald-glow: 0 0 25px rgba(16, 185, 129, 0.45);
    --cyber-cyan-glow:   0 0 25px rgba(8, 145, 178, 0.45);
    --amber-gold-glow:   0 0 25px rgba(217, 119, 6, 0.45);
    --hot-crimson-glow:  0 0 25px rgba(239, 68, 68, 0.45);
    
    /* Premium Gradient Border overlays */
    --gradient-border-emerald: linear-gradient(135deg, rgba(16, 185, 129, 0.6) 0%, rgba(8, 145, 178, 0.2) 100%);
    --gradient-border-cyan:    linear-gradient(135deg, rgba(8, 145, 178, 0.6) 0%, rgba(37, 99, 235, 0.2) 100%);
    --gradient-border-gold:    linear-gradient(135deg, rgba(217, 119, 6, 0.6) 0%, rgba(245, 158, 11, 0.2) 100%);
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.bph-page {
    margin: 0;
    color: var(--bph-text);
    background: var(--bph-white);
    font-family: var(--bph-font);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.bph-page a {
    color: inherit;
    text-decoration: none;
}

body.bph-page img,
body.bph-page svg {
    display: block;
}

body.bph-page img {
    max-width: 100%;
    height: auto;
}

body.bph-page strong {
    color: inherit;
    font-weight: 800;
}

.bph-skip-link {
    position: absolute;
    top: -80px;
    left: 14px;
    z-index: 2000;
    padding: 10px 14px;
    color: var(--bph-white);
    background: var(--bph-primary-dark);
    border-radius: var(--bph-radius-sm);
    font-weight: 800;
}

.bph-skip-link:focus {
    top: 14px;
}

.bph-container {
    width: min(calc(100% - 30px), 1180px);
    margin-inline: auto;
}

.bph-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

.bph-header__inner {
    width: min(calc(100% - 24px), 1280px);
    min-height: 68px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bph-logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
}

.bph-logo__symbol {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(2, 44, 34, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bph-logo:hover .bph-logo__symbol {
    transform: scale(1.08) rotate(4deg);
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bph-logo__text {
    color: var(--bph-white);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.bph-logo__text span {
    color: #34d399;
}

.bph-logo:hover .bph-logo__text {
    color: #ffffff;
}

.bph-nav {
    display: none;
}

.bph-header__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.bph-header__whatsapp-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: var(--bph-white);
    background: var(--bph-primary);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.3);
}

.bph-header__whatsapp-copy {
    display: none;
}

/* ---- HERO ---- */
.bph-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 50% 0%, #032d24 0%, #011511 100%);
}

.bph-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bph-hero__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.6;
}

.bph-hero__bg-orb--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.3), transparent 70%);
}

.bph-hero__bg-orb--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle at center, rgba(8, 145, 178, 0.25), transparent 70%);
}

.bph-hero__bg-orb--3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 25%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15), transparent 70%);
}

.bph-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 85%);
}

.bph-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
}

.bph-hero__content {
    min-width: 0;
}

/* Status badge */
.bph-hero__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 99px;
    color: #34d399;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.bph-hero__status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
    animation: bph-status-pulse 1.8s ease-in-out infinite;
}

@keyframes bph-status-pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 4px #10b981; }
    50% { transform: scale(1.2); opacity: 0.7; box-shadow: 0 0 12px #10b981; }
}

/* Modern Gradient Title */
.bph-hero__title {
    color: var(--bph-white) !important;
    font-size: 46px !important;
    line-height: 1.15 !important;
    font-weight: 900;
    margin-bottom: 24px !important;
    letter-spacing: -0.02em !important;
}

.bph-text-gradient {
    background: linear-gradient(135deg, #ffffff 10%, #34d399 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Glowing primary button */
.bph-btn-glow {
    position: relative;
    z-index: 1;
}

.bph-btn-glow::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #10b981, #0891b2);
    border-radius: var(--bph-radius-md);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.bph-btn-glow:hover::after {
    opacity: 0.6;
}

/* Sliding Shine Button */
.bph-btn-shine {
    position: relative;
    overflow: hidden;
}

.bph-btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.bph-btn-shine:hover::after {
    left: 150%;
}

/* Previews Column */
.bph-hero__previews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

/* Glassmorphic Preview Cards */
.bph-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bph-radius-lg);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.bph-preview-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(52, 211, 153, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(16, 185, 129, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.bph-preview-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.bph-preview-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 99px;
    color: #22d3ee;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.bph-preview-card__badge--red {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.bph-preview-card__badge--green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.bph-preview-card__badge svg {
    margin-right: 2px;
}

.bph-preview-card__dot {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    animation: bph-pulse-cyan 1.4s infinite;
}

@keyframes bph-pulse-cyan {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
    50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(34, 211, 238, 0); }
}

.bph-preview-card__subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Aviator Game Preview */

.bph-aviator__display {
    position: relative;
    height: 125px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--bph-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bph-aviator__graph {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bph-aviator__curve-svg {
    width: 100%;
    height: 100%;
}

.bph-aviator__curve-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: bph-aviator-curve 5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes bph-aviator-curve {
    to { stroke-dashoffset: 0; }
}

.bph-aviator__plane {
    position: absolute;
    bottom: 20px;
    left: 10px;
    animation: bph-aviator-flight 5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
}

@keyframes bph-aviator-flight {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    5% { opacity: 1; }
    50% { transform: translate(110px, -40px) rotate(-15deg); }
    100% { transform: translate(240px, -100px) rotate(-22deg); }
}

.bph-aviator__multiplier-glow {
    position: relative;
    font-size: 38px;
    font-weight: 900;
    color: #ef4444;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.8), 0 0 10px rgba(239, 68, 68, 0.4);
    font-family: monospace, sans-serif;
    letter-spacing: -0.04em;
    animation: bph-text-pulse 2s ease-in-out infinite;
}

@keyframes bph-text-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.04); filter: brightness(1.2); }
}

.bph-aviator__winners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bph-aviator__winner-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--bph-radius-sm);
    padding: 8px 10px;
}

.bph-winner__avatar {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--bph-white);
    font-size: 11px;
    font-weight: 800;
}

.bph-aviator__winner-pill div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bph-aviator__winner-pill strong {
    color: var(--bph-white);
    font-size: 11px;
    line-height: 1.1;
}

.bph-aviator__winner-pill span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
}

.bph-winner__cash {
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Deposit Gateway Preview */
.bph-deposit__gateways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.bph-deposit__gate-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--bph-radius-sm);
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bph-deposit__gate-btn--active {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.bph-deposit__gate-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.bph-deposit__gate-dot--jazz {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

.bph-deposit__gate-dot--paisa {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.bph-deposit__amount-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--bph-radius-md);
    padding: 14px;
    margin-bottom: 14px;
}

.bph-deposit__label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

.bph-deposit__value-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.bph-deposit__value-display span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 800;
}

.bph-deposit__value-display strong {
    color: var(--bph-white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-family: monospace, sans-serif;
}

.bph-deposit__chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.bph-deposit-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px 2px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.bph-deposit-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bph-white);
}

.bph-deposit-chip.active {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #34d399;
}

.bph-deposit__submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: var(--bph-radius-md);
    padding: 12px;
    color: var(--bph-white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    transition: all 0.25s ease;
}

.bph-deposit__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.35);
}

.bph-deposit__submit-btn svg {
    opacity: 0.8;
}

.bph-eyebrow,
.bph-section__tag {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    padding: 7px 13px;
    color: var(--bph-primary-dark);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.26);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.bph-eyebrow {
    color: #bbf7d0;
    background: rgba(16, 185, 129, 0.12);
}

.bph-eyebrow__dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.14);
}

.bph-hero__lead {
    max-width: 780px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
}

.bph-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.bph-actions--center {
    justify-content: center;
}

body.bph-page a.bph-button,
body.bph-page a.bph-button:link,
body.bph-page a.bph-button:visited {
    min-height: 52px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--bph-radius-md);
    color: var(--bph-ink) !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

body.bph-page a.bph-button:hover,
body.bph-page a.bph-button:focus-visible,
body.bph-page a.bph-button:active {
    color: var(--bph-ink) !important;
    transform: translateY(-2px);
    outline: none;
    text-decoration: none !important;
}

body.bph-page a.bph-button--primary,
body.bph-page a.bph-button--primary:link,
body.bph-page a.bph-button--primary:visited,
body.bph-page a.bph-button--primary:hover,
body.bph-page a.bph-button--primary:focus-visible,
body.bph-page a.bph-button--primary:active {
    color: var(--bph-white) !important;
}

.bph-button--primary {
    background: linear-gradient(135deg, var(--bph-primary), var(--bph-primary-dark));
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.bph-button--primary:hover,
.bph-button--primary:focus-visible {
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45);
}

body.bph-page a.bph-button--ghost,
body.bph-page a.bph-button--ghost:link,
body.bph-page a.bph-button--ghost:visited,
body.bph-page a.bph-button--ghost:hover,
body.bph-page a.bph-button--ghost:focus-visible,
body.bph-page a.bph-button--ghost:active {
    color: var(--bph-white) !important;
}

.bph-button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.bph-button--ghost:hover,
.bph-button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.bph-hero__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 760px;
    margin-top: 40px;
}

.bph-trust-pill {
    position: relative;
    overflow: hidden;
    padding: 16px 20px;
    color: var(--bph-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--bph-radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.bph-trust-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 211, 153, 0.25);
}

.bph-trust-pill__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(52, 211, 153, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.bph-trust-pill:hover .bph-trust-pill__glow {
    opacity: 1;
}

.bph-trust-pill strong {
    display: block;
    color: #34d399;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.bph-trust-pill span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.bph-section {
    padding: 66px 0;
    background: var(--bph-white);
}

.bph-section--light {
    background: var(--bph-soft);
}

.bph-section--dark {
    color: var(--bph-dark-text);
    background:
        linear-gradient(135deg, rgba(2, 44, 34, 0.98), rgba(6, 78, 59, 0.95)),
        var(--bph-primary-deep);
}

.bph-section--testimonials {
    color: var(--bph-dark-text);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 44, 34, 0.96)),
        var(--bph-ink);
}

.bph-section__header {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.bph-section__header .bph-section__tag,
.bph-cta .bph-section__tag {
    margin-left: auto;
    margin-right: auto;
}

.bph-section h2,
.bph-band h2,
.bph-cta h2 {
    margin: 0 0 16px;
    color: var(--bph-ink);
    font-size: 29px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.bph-section--dark h2,
.bph-section--dark h3,
.bph-section--dark strong,
.bph-section--testimonials h2,
.bph-band h2,
.bph-cta h2 {
    color: var(--bph-white);
}

.bph-section--dark .bph-section__tag,
.bph-section--testimonials .bph-section__tag,
.bph-band .bph-section__tag,
.bph-cta .bph-section__tag {
    color: #bbf7d0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(187, 247, 208, 0.24);
}

.bph-section p,
.bph-band p,
.bph-cta p {
    margin: 0 0 16px;
    font-size: 16px;
}

.bph-section__header p {
    color: var(--bph-muted);
    font-size: 16px;
}

.bph-section--dark p,
.bph-section--dark li,
.bph-section--testimonials .bph-section__header p,
.bph-band p,
.bph-cta p {
    color: var(--bph-dark-text);
}

.bph-split,
.bph-split--reverse,
.bph-band__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.bph-split--reverse .bph-media {
    order: 2;
}

.bph-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--bph-white);
    border: 1px solid rgba(226, 232, 240, 0.72);
    border-radius: var(--bph-radius-xl);
    box-shadow: var(--bph-shadow);
}

.bph-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bph-media figcaption {
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    color: var(--bph-white);
    background: rgba(2, 44, 34, 0.94);
    backdrop-filter: blur(10px);
}

.bph-media figcaption strong {
    color: var(--bph-white);
    font-size: 17px;
}

.bph-media figcaption span {
    color: var(--bph-dark-muted);
    font-size: 13px;
    line-height: 1.35;
}

.bph-media--dark {
    background: var(--bph-dark-panel);
    border-color: var(--bph-dark-border);
}

.bph-check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.bph-check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--bph-text);
    font-weight: 600;
}

.bph-check-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--bph-primary);
    border-radius: 50%;
}

.bph-check-list li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 6px;
    width: 6px;
    height: 9px;
    border: solid var(--bph-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bph-requirements,
.bph-feature-grid,
.bph-account-grid,
.bph-testimonial-grid,
.bph-mini-grid,
.bph-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.bph-info-card,
.bph-feature,
.bph-account-card,
.bph-testimonial,
.bph-faq__item {
    background: var(--bph-white);
    border: 1px solid var(--bph-border);
    border-radius: var(--bph-radius-lg);
    box-shadow: var(--bph-shadow-soft);
}

.bph-info-card,
.bph-feature {
    padding: 22px;
}

.bph-info-card__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--bph-primary-dark);
    background: var(--bph-primary-soft);
    border-radius: var(--bph-radius-md);
}

.bph-info-card__icon--cyan {
    color: var(--bph-secondary);
    background: var(--bph-secondary-soft);
}

.bph-info-card__icon--gold {
    color: var(--bph-gold);
    background: var(--bph-gold-soft);
}

.bph-info-card__icon--blue {
    color: var(--bph-blue);
    background: var(--bph-blue-soft);
}

.bph-feature__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--bph-primary-dark);
    background: var(--bph-primary-soft);
    border-radius: var(--bph-radius-md);
}

.bph-feature__icon--cyan {
    color: var(--bph-secondary);
    background: var(--bph-secondary-soft);
}

.bph-feature__icon--gold {
    color: var(--bph-gold);
    background: var(--bph-gold-soft);
}

.bph-feature__icon--blue {
    color: var(--bph-blue);
    background: var(--bph-blue-soft);
}

.bph-info-card h3,
.bph-feature h3,
.bph-account-card h3,
.bph-step h3 {
    margin: 0 0 8px;
    color: var(--bph-ink);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.bph-info-card p,
.bph-feature p,
.bph-account-card p,
.bph-step p {
    margin: 0;
    color: var(--bph-muted);
    font-size: 15px;
    line-height: 1.65;
}

.bph-note {
    max-width: 900px;
    margin: 26px auto 0;
    padding: 16px 18px;
    color: #713f12;
    background: #fffbeb;
    border: 1px solid rgba(217, 119, 6, 0.28);
    border-radius: var(--bph-radius-lg);
    text-align: center;
    font-weight: 600;
}

.bph-note strong {
    color: #92400e;
}

.bph-number-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
    counter-reset: bph-counter;
}

.bph-number-list li {
    position: relative;
    padding: 14px 16px 14px 52px;
    background: var(--bph-dark-panel);
    border: 1px solid var(--bph-dark-border);
    border-radius: var(--bph-radius-md);
    counter-increment: bph-counter;
}

.bph-number-list li::before {
    content: counter(bph-counter);
    position: absolute;
    top: 14px;
    left: 14px;
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    color: var(--bph-white);
    background: var(--bph-primary);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 900;
}

.bph-number-list--compact li {
    color: var(--bph-text);
    background: var(--bph-white);
    border-color: var(--bph-border);
}

.bph-mini-grid div {
    padding: 17px;
    background: var(--bph-dark-panel);
    border: 1px solid var(--bph-dark-border);
    border-radius: var(--bph-radius-lg);
}

.bph-mini-grid strong,
.bph-mini-grid span {
    display: block;
}

.bph-mini-grid span {
    margin-top: 5px;
    color: var(--bph-dark-muted);
    font-size: 14px;
    line-height: 1.55;
}

.bph-steps {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.bph-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
    background: var(--bph-white);
    border: 1px solid var(--bph-border);
    border-radius: var(--bph-radius-lg);
    box-shadow: var(--bph-shadow-soft);
}

.bph-step__number {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    color: var(--bph-white);
    background: linear-gradient(135deg, var(--bph-primary), var(--bph-primary-dark));
    border-radius: var(--bph-radius-md);
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.24);
    font-size: 22px;
    font-weight: 900;
}

.bph-feature {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bph-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.32);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.bph-feature h3::before {
    content: "";
    display: block;
    width: 38px;
    height: 5px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--bph-primary), var(--bph-secondary));
    border-radius: 999px;
}

.bph-band {
    padding: 66px 0;
    color: var(--bph-dark-text);
    background:
        linear-gradient(135deg, rgba(2, 44, 34, 0.96), rgba(6, 78, 59, 0.94)),
        var(--bph-primary-deep);
}

.bph-band__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bph-band__list li {
    padding: 14px 16px;
    color: var(--bph-white);
    background: var(--bph-dark-panel);
    border: 1px solid var(--bph-dark-border);
    border-radius: var(--bph-radius-md);
    font-weight: 800;
}

.bph-warning {
    padding: 24px;
    color: #713f12;
    background: linear-gradient(180deg, #fffbeb, #ffffff);
    border: 1px solid rgba(217, 119, 6, 0.32);
    border-radius: var(--bph-radius-lg);
    box-shadow: var(--bph-shadow);
}

.bph-warning h3 {
    margin: 0 0 10px;
    color: #92400e;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
}

.bph-warning p {
    margin: 0;
    color: #713f12;
    font-weight: 600;
}

.bph-account-card {
    overflow: hidden;
}

.bph-account-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--bph-primary-soft);
}

.bph-account-card h3,
.bph-account-card p {
    padding-inline: 20px;
}

.bph-account-card h3 {
    padding-top: 20px;
}

.bph-account-card p {
    padding-bottom: 22px;
}

.bph-table-wrap {
    overflow-x: auto;
    background: var(--bph-white);
    border: 1px solid var(--bph-border);
    border-radius: var(--bph-radius-lg);
    box-shadow: var(--bph-shadow);
}

.bph-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.bph-table th,
.bph-table td {
    padding: 14px;
    border-bottom: 1px solid var(--bph-border);
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.bph-table th {
    color: var(--bph-white);
    background: var(--bph-primary-deep);
    font-weight: 900;
}

.bph-table td:first-child {
    color: var(--bph-ink);
    font-weight: 800;
}

/* Elite Featured Column (BetPro ID) - custom glowing styling */
.bph-table td.bph-col-featured {
    color: var(--bph-primary-deep) !important;
    background: rgba(16, 185, 129, 0.07) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.16);
    border-right: 1px solid rgba(16, 185, 129, 0.16);
    font-weight: 800;
}

.bph-table th.bph-col-featured {
    background: linear-gradient(135deg, var(--bph-primary-dark), #047857) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.22);
    border-right: 1px solid rgba(16, 185, 129, 0.22);
    position: relative;
    box-shadow: 0 -4px 15px rgba(16, 185, 129, 0.2);
}

.bph-table tr:hover td {
    background: rgba(15, 23, 42, 0.02);
}

.bph-table tr:hover td.bph-col-featured {
    background: rgba(16, 185, 129, 0.11) !important;
}

/* Modern Check/Cross SVG wrapper styling */
.bph-table-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.bph-table-indicator svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: transform 0.25s ease;
}

.bph-table tr:hover .bph-table-indicator svg {
    transform: scale(1.15);
}

.bph-table-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--bph-primary), var(--bph-primary-dark));
    color: var(--bph-white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.26);
    margin-left: 8px;
    vertical-align: middle;
}

.bph-table tr:last-child td {
    border-bottom: 0;
}


.bph-testimonial {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 22px;
    color: var(--bph-dark-text);
    background: var(--bph-dark-panel);
    border-color: var(--bph-dark-border);
    box-shadow: none;
}

.bph-testimonial__rating {
    width: fit-content;
    margin-bottom: 16px;
    padding: 5px 10px;
    color: #78350f;
    background: var(--bph-gold-soft);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.bph-testimonial p {
    margin: 0 0 18px;
    color: var(--bph-dark-text);
    font-size: 15px;
}

.bph-testimonial strong {
    margin-top: auto;
    color: var(--bph-white);
}

.bph-testimonial span {
    color: var(--bph-dark-muted);
    font-size: 13px;
    font-weight: 700;
}

.bph-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.bph-faq__item {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--glass-bg-l);
    border: 1px solid var(--glass-border-l);
    border-radius: var(--bph-radius-lg);
    box-shadow: var(--glass-specular-l), var(--glass-shadow-l);
}

.bph-faq__item[open] {
    border-color: rgba(8, 145, 178, 0.4) !important;
    box-shadow: 
        var(--glass-specular-l),
        0 14px 36px rgba(15, 23, 42, 0.08),
        0 0 20px rgba(8, 145, 178, 0.12) !important;
}

.bph-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    color: var(--bph-ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.bph-faq__item summary::-webkit-details-marker {
    display: none;
}

.bph-faq__item summary::after {
    display: none !important;
    content: "";
}

/* Elite custom chevron style */
.bph-faq__icon {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--bph-secondary);
    background: var(--bph-secondary-soft);
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bph-faq__item:hover .bph-faq__icon {
    color: var(--bph-white);
    background: var(--bph-secondary);
    box-shadow: 0 6px 16px rgba(8, 145, 178, 0.28);
}

.bph-faq__item[open] .bph-faq__icon {
    transform: rotate(180deg);
    color: var(--bph-white);
    background: var(--bph-primary);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.28);
}

.bph-faq__item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--bph-text);
    font-size: 15px;
    line-height: 1.7;
    animation: bph-slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bph-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.bph-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 78px 0;
    text-align: center;
    background: var(--bph-primary-deep);
}

.bph-cta__image,
.bph-cta__overlay {
    position: absolute;
    inset: 0;
}

.bph-cta__image {
    z-index: -2;
}

.bph-cta__overlay {
    z-index: -1;
    background: linear-gradient(135deg, rgba(2, 44, 34, 0.94), rgba(6, 78, 59, 0.9));
}

.bph-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
}

.bph-cta__content {
    max-width: 820px;
}

.bph-cta p {
    max-width: 700px;
    margin-inline: auto;
    color: var(--bph-dark-text);
    font-size: 16px;
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC FOOTER STYLES
   ========================================================================== */

.bph-footer {
    position: relative;
    background: linear-gradient(180deg, #021a13 0%, #010a08 100%) !important;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    padding: 80px 0 0;
    color: rgba(241, 245, 249, 0.7) !important;
    font-size: 14px;
}

/* 4-column inner layout */
.bph-footer__inner {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .bph-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px;
    }
}

@media (min-width: 960px) {
    .bph-footer__inner {
        grid-template-columns: 1.3fr 0.9fr 1fr 1fr !important;
        gap: 40px;
    }
}

/* Brand column styles */
.bph-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bph-footer__tagline {
    margin: 0 !important;
    color: rgba(241, 245, 249, 0.65) !important;
    font-size: 14px;
    line-height: 1.6;
}

.bph-footer__badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.bph-badge-18 {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.bph-badge-secure {
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* Footer columns general */
.bph-footer__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bph-footer__col h3 {
    margin: 0 !important;
    color: var(--bph-white) !important;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.bph-footer__col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    border-radius: 2px;
}

.bph-footer__col p {
    margin: 0 !important;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(241, 245, 249, 0.65) !important;
}

/* Vertical link menu */
.bph-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.bph-page .bph-footer__nav a {
    color: rgba(241, 245, 249, 0.6) !important;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.bph-page .bph-footer__nav a::before {
    content: "•";
    color: rgba(16, 185, 129, 0.4);
    transition: color 0.25s ease;
}

body.bph-page .bph-footer__nav a:hover,
body.bph-page .bph-footer__nav a:focus-visible {
    color: #10b981 !important;
    transform: translateX(4px);
    outline: none;
}

body.bph-page .bph-footer__nav a:hover::before {
    color: #10b981;
}

/* Helpline box */
.bph-footer__hotline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.bph-footer__hotline strong {
    margin: 0 !important;
    color: rgba(241, 245, 249, 0.8) !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

body.bph-page .bph-footer__hotline a {
    color: #ef4444 !important;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

body.bph-page .bph-footer__hotline a:hover {
    transform: scale(1.03);
}

/* Glass WhatsApp CTA */
.bph-footer__wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.08) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    border-radius: 12px !important;
    color: #10b981 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.bph-footer__wa-btn:hover,
.bph-footer__wa-btn:focus-visible {
    background: var(--bph-primary) !important;
    color: var(--bph-white) !important;
    border-color: var(--bph-primary) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    outline: none;
}

/* Pulsing Agent Badge */
.bph-footer__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bph-footer__status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    position: relative;
}

.bph-footer__status-dot::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border: 1px solid #10b981;
    border-radius: 50%;
    animation: bph-wa-pulse 2s infinite ease-out;
}

.bph-footer__status span:last-child {
    font-size: 12px;
    font-weight: 700;
    color: rgba(241, 245, 249, 0.5) !important;
}

/* Footer bottom bar */
.bph-footer__bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.2);
}

.bph-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .bph-footer__bottom-inner {
        flex-direction: row;
        gap: 20px;
    }
}

.bph-footer__bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    color: rgba(241, 245, 249, 0.45) !important;
    text-align: center;
}

@media (min-width: 768px) {
    .bph-footer__bottom p {
        text-align: left;
    }
}

.bph-footer__policy-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

body.bph-page .bph-footer__policy-links a {
    color: rgba(241, 245, 249, 0.45) !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

body.bph-page .bph-footer__policy-links a:hover {
    color: #10b981 !important;
}

.bph-footer__policy-links span {
    color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   REGISTRATION SECTION  (.bph-regi)
   ============================================================ */

.bph-regi {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 88px 0;
    color: var(--bph-dark-text);
    background: linear-gradient(155deg, #010f0a 0%, #022c22 45%, #031a13 100%);
}

/* Decorative background */
.bph-regi__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bph-regi__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(88px);
}

.bph-regi__orb--1 {
    width: 520px;
    height: 520px;
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 65%);
}

.bph-regi__orb--2 {
    width: 380px;
    height: 380px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.16), transparent 65%);
}

.bph-regi__orb--3 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07), transparent 65%);
}

.bph-regi__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.55) 14%,
        rgba(0, 0, 0, 0.55) 86%,
        transparent 100%);
}

/* Tag pill on dark background */
.bph-regi .bph-section__tag {
    color: #bbf7d0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(187, 247, 208, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Section header */
.bph-regi__header {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.bph-regi__header h2 {
    margin: 0 0 16px;
    color: var(--bph-white);
    font-size: 29px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
}

.bph-regi__header p {
    margin: 0;
    color: var(--bph-dark-text);
    font-size: 16px;
    line-height: 1.75;
}

.bph-regi__header strong {
    color: var(--bph-white);
}

/* 2-col grid */
.bph-regi__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- Visual side ---- */
.bph-regi__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bph-regi__img-frame {
    position: relative;
    border-radius: var(--bph-radius-xl);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.09),
        0 40px 72px rgba(0, 0, 0, 0.55),
        0 8px 20px rgba(0, 0, 0, 0.28);
}

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

.bph-regi__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(1, 15, 10, 0.18) 0%,
        transparent 35%,
        transparent 50%,
        rgba(2, 44, 34, 0.72) 100%
    );
    pointer-events: none;
}

/* Live pill badge */
.bph-regi__live-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    color: var(--bph-white);
    background: rgba(10, 20, 16, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.bph-regi__live-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.28);
    animation: bph-pulse 1.4s ease-in-out infinite;
}

/* Time badge */
.bph-regi__time-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--bph-primary), var(--bph-primary-dark));
    border-radius: var(--bph-radius-lg);
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 14px 32px rgba(16, 185, 129, 0.45);
}

.bph-regi__time-badge strong {
    display: block;
    color: var(--bph-white);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.bph-regi__time-badge span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
}

/* Stat row beneath image */
.bph-regi__stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bph-regi__stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--bph-radius-lg);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.bph-regi__stat svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--bph-primary);
}

.bph-regi__stat strong {
    display: block;
    color: var(--bph-white);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.bph-regi__stat span {
    display: block;
    margin-top: 3px;
    color: var(--bph-dark-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

/* ---- Timeline steps ---- */
.bph-regi__steps {
    display: flex;
    flex-direction: column;
}

.bph-regi__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.bph-regi__step-track {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bph-regi__step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    color: var(--bph-white);
    background: linear-gradient(145deg, var(--bph-primary), var(--bph-primary-dark));
    border-radius: var(--bph-radius-md);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 10px 24px rgba(16, 185, 129, 0.35);
    z-index: 1;
}

.bph-regi__step-line {
    flex: 1;
    width: 2px;
    min-height: 28px;
    background: linear-gradient(180deg,
        rgba(16, 185, 129, 0.7) 0%,
        rgba(16, 185, 129, 0.12) 100%);
    border-radius: 999px;
    margin: 8px 0;
}

.bph-regi__step-body {
    padding-bottom: 30px;
}

.bph-regi__step--last .bph-regi__step-body {
    padding-bottom: 24px;
}

.bph-regi__step-body h3 {
    margin: 8px 0 8px;
    color: var(--bph-white);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.bph-regi__step-body p {
    margin: 0;
    color: var(--bph-dark-text);
    font-size: 15px;
    line-height: 1.7;
}

.bph-regi__step-body strong {
    color: #86efac;
}

/* CTA button inside steps */
.bph-regi__cta {
    align-self: flex-start;
    margin-top: 8px;
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
    .bph-regi {
        padding: 100px 0;
    }

    .bph-regi__header h2 {
        font-size: 34px;
    }

    .bph-regi__step-body h3 {
        font-size: 17px;
    }
}

@media (min-width: 960px) {
    .bph-regi {
        padding: 112px 0;
    }

    .bph-regi__header {
        margin-bottom: 64px;
    }

    .bph-regi__header h2 {
        font-size: 42px;
    }

    .bph-regi__layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    .bph-regi__step-body h3 {
        font-size: 18px;
    }

    .bph-regi__step-num {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ============================================================
   APPLE LIQUID GLASS SYSTEM
   Specular highlights + frosted blur + gradient-tinted glass
   ============================================================ */

/* Glass tokens */
:root {
    --glass-blur:        blur(24px) saturate(180%);
    --glass-blur-heavy:  blur(36px) saturate(200%);
    --glass-blur-soft:   blur(14px) saturate(160%);

    /* Light glass — cards on white/soft-gray backgrounds */
    --glass-bg-l:        rgba(255, 255, 255, 0.56);
    --glass-bg-l-hover:  rgba(255, 255, 255, 0.72);
    --glass-border-l:    rgba(255, 255, 255, 0.84);
    --glass-specular-l:  inset 0 1px 0 rgba(255, 255, 255, 0.96),
                         inset 0 -1px 0 rgba(15, 23, 42, 0.04);
    --glass-shadow-l:    0 8px 28px rgba(15, 23, 42, 0.08),
                         0 2px 6px rgba(15, 23, 42, 0.04);

    /* Dark glass — panels on dark/deep green backgrounds */
    --glass-bg-d:        rgba(255, 255, 255, 0.07);
    --glass-bg-d-hover:  rgba(255, 255, 255, 0.12);
    --glass-border-d:    rgba(255, 255, 255, 0.15);
    --glass-specular-d:  inset 0 1px 0 rgba(255, 255, 255, 0.22);
    --glass-shadow-d:    0 8px 32px rgba(0, 0, 0, 0.28);
}

/* ---- Section backgrounds (give glass something to blur against) ---- */
.bph-section {
    background:
        radial-gradient(ellipse at 72% 82%, rgba(16, 185, 129, 0.04) 0%, transparent 52%),
        radial-gradient(ellipse at 18% 18%, rgba(8, 145, 178, 0.03) 0%, transparent 48%),
        var(--bph-white);
}

.bph-section--light {
    background:
        radial-gradient(ellipse at 22% 28%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 78% 72%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
        var(--bph-soft);
}

/* Restore dark section backgrounds — .bph-section above would otherwise win
   at equal specificity because it appears later in this file.             */
.bph-section--testimonials {
    color: var(--bph-dark-text);
    background:
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 52%),
        radial-gradient(ellipse at 20% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 48%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(2, 44, 34, 0.97)),
        var(--bph-ink);
}

/* ---- Header — liquid glass bar ---- */
.bph-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 -1px 0 rgba(15, 23, 42, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 28px rgba(15, 23, 42, 0.07);
}

/* ---- Nav pill — glass pill ---- */
.bph-nav {
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 4px 18px rgba(15, 23, 42, 0.07);
}

.bph-nav__link:hover,
.bph-nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px rgba(15, 23, 42, 0.09);
}

/* ---- Light-section cards ---- */
.bph-info-card,
.bph-feature,
.bph-step,
.bph-faq__item,
.bph-account-card,
.bph-testimonial {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* Premium Liquid Glass diagonal sweep reflection shimmer */
.bph-info-card::before,
.bph-feature::before,
.bph-step::before,
.bph-account-card::before,
.bph-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
    pointer-events: none;
}

.bph-info-card:hover::before,
.bph-feature:hover::before,
.bph-step:hover::before,
.bph-account-card:hover::before,
.bph-testimonial:hover::before {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bph-info-card,
.bph-feature,
.bph-step,
.bph-faq__item {
    background: var(--glass-bg-l);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid var(--glass-border-l);
    box-shadow: var(--glass-specular-l), var(--glass-shadow-l);
}

.bph-account-card {
    background: var(--glass-bg-l);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid var(--glass-border-l);
    box-shadow: var(--glass-specular-l), var(--glass-shadow-l);
}

/* ---- Dynamic Hover Enhancements — scale & glows ---- */
.bph-feature:hover {
    transform: translateY(-6px) scale(1.01);
    background: var(--glass-bg-l-hover);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--neon-emerald-glow);
}

.bph-account-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow:
        var(--glass-specular-l),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--neon-emerald-glow);
}

.bph-info-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow:
        var(--glass-specular-l),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--neon-emerald-glow);
}

.bph-info-card:nth-child(2):hover {
    border-color: rgba(8, 145, 178, 0.45);
    box-shadow:
        var(--glass-specular-l),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--cyber-cyan-glow);
}

.bph-info-card:nth-child(3):hover {
    border-color: rgba(217, 119, 6, 0.45);
    box-shadow:
        var(--glass-specular-l),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--amber-gold-glow);
}

.bph-info-card:nth-child(4):hover {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow:
        var(--glass-specular-l),
        0 20px 48px rgba(15, 23, 42, 0.12),
        var(--cyber-cyan-glow); /* Blue-themed glow */
}


/* ---- Dark-section panels ---- */
.bph-testimonial {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.07) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-d);
    box-shadow: var(--glass-specular-d), var(--glass-shadow-d);
}

.bph-mini-grid div {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid var(--glass-border-d);
    box-shadow: var(--glass-specular-d);
}

.bph-number-list li {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid var(--glass-border-d);
    box-shadow: var(--glass-specular-d);
}

.bph-band__list li {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid var(--glass-border-d);
    box-shadow: var(--glass-specular-d);
}

/* ---- Trust pills (hero dark bg) ---- */
.bph-trust-pill {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---- Hero float cards — deep frosted glass ---- */
.bph-hero__float {
    background:
        linear-gradient(135deg, rgba(15,23,42,0.52) 0%, rgba(15,23,42,0.38) 100%);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 16px 40px rgba(0, 0, 0, 0.42);
}

/* ---- Buttons — specular highlights ---- */
.bph-button--primary {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 0 rgba(0, 0, 0, 0.14),
        var(--bph-shadow-green);
}

.bph-button--primary:hover,
.bph-button--primary:focus-visible {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16),
        0 22px 52px rgba(16, 185, 129, 0.38);
}

.bph-button--ghost {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.bph-button--ghost:hover,
.bph-button--ghost:focus-visible {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* ---- Header WhatsApp button ---- */
.bph-header__whatsapp {
    padding: 8px 14px 8px 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 16px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.bph-header__whatsapp:hover {
    background: rgba(255, 255, 255, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 6px 22px rgba(15, 23, 42, 0.1);
}

.bph-header__whatsapp-icon {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        0 8px 20px rgba(16, 185, 129, 0.36);
}

/* ---- Logo symbol ---- */
.bph-logo__symbol {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 24px rgba(2, 44, 34, 0.18);
}

/* ---- Media figure (split sections) ---- */
.bph-media {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 24px 56px rgba(15, 23, 42, 0.12);
}

.bph-media--dark {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 24px 56px rgba(0, 0, 0, 0.32);
}

/* ---- Table ---- */
.bph-table-wrap {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 8px 28px rgba(15, 23, 42, 0.08);
}

/* ---- Note & Warning ---- */
.bph-note {
    background: rgba(255, 251, 235, 0.72);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 24px rgba(217, 119, 6, 0.1);
}

.bph-warning {
    background: linear-gradient(180deg, rgba(255,251,235,0.82), rgba(255,255,255,0.65));
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 32px rgba(217, 119, 6, 0.1);
}

/* ---- Step number badge ---- */
.bph-step__number {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 0 rgba(0, 0, 0, 0.14),
        0 10px 24px rgba(16, 185, 129, 0.28);
}

/* ---- Eyebrow badge ---- */
.bph-eyebrow {
    background: rgba(16, 185, 129, 0.14);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(187, 247, 208, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.bph-section__tag {
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bph-section--dark .bph-section__tag,
.bph-section--testimonials .bph-section__tag,
.bph-band .bph-section__tag,
.bph-cta .bph-section__tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(187, 247, 208, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ---- Hero screen wrap — glass frame around dashboard ---- */
.bph-hero__screen-wrap {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 32px 72px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ---- Info card icon chips — glass tint ---- */
.bph-info-card__icon {
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ---- Number list compact (light section) ---- */
.bph-number-list--compact li {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 4px 12px rgba(15, 23, 42, 0.05);
}

/* ---- CTA section ---- */
.bph-cta__overlay {
    background:
        linear-gradient(135deg,
            rgba(2, 44, 34, 0.88) 0%,
            rgba(6, 78, 59, 0.82) 100%);
    backdrop-filter: var(--glass-blur-soft);
    -webkit-backdrop-filter: var(--glass-blur-soft);
}

/* ---- Footer ---- */
.bph-footer {
    background:
        linear-gradient(135deg, rgba(7, 19, 15, 0.98) 0%, rgba(2, 12, 8, 1) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* END LIQUID GLASS SYSTEM */

@media (min-width: 520px) {
    .bph-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .bph-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    body.bph-page a.bph-button {
        width: auto;
        padding-inline: 22px;
    }

    .bph-hero__trust,
    .bph-requirements,
    .bph-account-grid,
    .bph-testimonial-grid,
    .bph-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .bph-header__inner {
        min-height: 76px;
        width: min(calc(100% - 32px), 1280px);
        gap: 18px;
    }

    .bph-logo__symbol {
        width: 44px;
        height: 44px;
    }

    .bph-logo__text {
        font-size: 23px;
    }

    .bph-header__whatsapp-icon {
        width: 42px;
        height: 42px;
    }

    .bph-header__whatsapp-copy {
        display: grid;
        gap: 2px;
    }

    .bph-header__whatsapp-copy span {
        color: var(--bph-muted);
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .bph-header__whatsapp-copy strong {
        color: var(--bph-ink);
        font-size: 18px;
        line-height: 1;
    }

    .bph-hero {
        padding: 104px 0 72px;
    }

    .bph-hero h1 {
        font-size: 44px;
        line-height: 1.08;
    }

    .bph-hero__lead {
        font-size: 17px;
    }

    .bph-hero__visual {
        display: block;
    }

    .bph-section {
        padding: 78px 0;
    }

    .bph-section h2,
    .bph-band h2,
    .bph-cta h2 {
        font-size: 34px;
    }

    .bph-section__header {
        margin-bottom: 40px;
    }

    .bph-split,
    .bph-split--reverse,
    .bph-band__inner {
        gap: 42px;
    }

    .bph-media figcaption {
        position: absolute;
        right: 18px;
        bottom: 18px;
        left: 18px;
        border-radius: var(--bph-radius-md);
    }

    .bph-step {
        grid-template-columns: 58px 1fr;
        gap: 18px;
        padding: 24px;
    }

    .bph-step__number {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .bph-table th,
    .bph-table td {
        padding: 18px 20px;
        font-size: 15px;
    }

    .bph-faq__item summary {
        align-items: center;
        padding: 18px 22px;
        font-size: 17px;
    }

    .bph-faq__item p {
        padding: 0 22px 20px;
    }

    .bph-cta {
        padding: 94px 0;
    }
}

@media (min-width: 960px) {
    .bph-header__inner {
        min-height: 80px;
        gap: 24px;
    }

    .bph-nav {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px;
        background: rgba(248, 250, 252, 0.75);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 999px;
    }

    body.bph-page a.bph-nav__link {
        padding: 9px 16px;
        color: #475569 !important; /* Prevent global theme anchor inherits */
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }

    body.bph-page a.bph-nav__link:hover,
    body.bph-page a.bph-nav__link:focus-visible {
        color: var(--bph-primary-dark) !important;
        background: var(--bph-white);
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
        outline: none;
    }

    .bph-hero {
        min-height: 700px;
        padding: 116px 0 80px;
    }

    .bph-hero__layout {
        grid-template-columns: 1fr 460px;
        gap: 64px;
    }

    .bph-hero h1 {
        font-size: 56px;
        line-height: 1.05;
    }

    .bph-hero__lead {
        font-size: 18px;
    }

    .bph-hero__trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bph-trust-pill {
        min-height: 96px;
        padding: 16px;
    }

    .bph-trust-pill strong {
        font-size: 28px;
    }

    .bph-section {
        padding: 92px 0;
    }

    .bph-section h2,
    .bph-band h2,
    .bph-cta h2 {
        font-size: 42px;
    }

    .bph-section__header {
        margin-bottom: 44px;
    }

    .bph-split {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
        gap: 60px;
    }

    .bph-split--reverse {
        grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1fr);
    }

    .bph-split--reverse .bph-media {
        order: 0;
    }

    .bph-band__inner {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }

    .bph-requirements,
    .bph-account-grid,
    .bph-testimonial-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bph-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .bph-info-card {
        min-height: 245px;
        padding: 24px;
    }

    .bph-feature {
        min-height: 190px;
        padding: 24px;
    }

    .bph-testimonial {
        min-height: 250px;
    }

    .bph-band {
        padding: 76px 0;
    }

    .bph-warning {
        padding: 28px;
    }

    .bph-warning h3 {
        font-size: 28px;
    }

    .bph-cta {
        padding: 100px 0;
    }

    .bph-steps {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }

    .bph-step {
        grid-template-columns: 1fr;
        text-align: center;
        place-items: center;
        padding: 30px 20px;
        align-content: start;
    }

    .bph-step__number {
        width: 54px;
        height: 54px;
        font-size: 24px;
        margin-bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   REGISTRATION STEP & TIMELINE INTERACTIONS (.bph-regi__steps)
   ============================================================ */

.bph-regi__step {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bph-regi__step:hover {
    transform: translateX(8px);
}

.bph-regi__step:hover .bph-regi__step-num {
    transform: scale(1.1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 25px rgba(16, 185, 129, 0.6) !important;
}

.bph-regi__step:hover .bph-regi__step-body h3 {
    color: var(--bph-white);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.bph-regi__step:hover .bph-regi__step-line {
    background: linear-gradient(180deg,
        rgba(16, 185, 129, 1) 0%,
        rgba(16, 185, 129, 0.4) 100%) !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}


/* ============================================================
   FLOATING WHATSAPP WIDGET & CHAT TOOLTIP
   ============================================================ */

.bph-wa-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.bph-wa-widget * {
    pointer-events: auto;
}

.bph-wa-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--bph-white);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 10px 30px rgba(37, 211, 102, 0.45);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    z-index: 2;
}

.bph-wa-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 14px 40px rgba(37, 211, 102, 0.6);
}

.bph-wa-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.bph-wa-btn__pulse {
    position: absolute;
    inset: -3px;
    border: 3px solid #25d366;
    border-radius: 50%;
    animation: bph-wa-pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes bph-wa-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.bph-wa-btn__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: var(--bph-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: grid;
    place-items: center;
    border: 2px solid var(--bph-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: bph-bounce 1s ease infinite alternate;
}

@keyframes bph-bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

.bph-wa-bubble {
    max-width: 290px;
    padding: 16px;
    background: rgba(2, 44, 34, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--bph-radius-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 15px 40px rgba(0, 0, 0, 0.45);
    margin-bottom: 14px;
    position: relative;
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.bph-wa-bubble--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bph-wa-bubble__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.bph-wa-bubble__header strong {
    color: var(--bph-white);
    font-size: 13px;
    font-weight: 800;
}

.bph-wa-bubble__close {
    background: none;
    border: none;
    color: var(--bph-dark-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: color 0.2s ease;
}

.bph-wa-bubble__close:hover {
    color: var(--bph-white);
}

.bph-wa-bubble p {
    margin: 0 !important;
    color: var(--bph-dark-text);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.bph-wa-bubble__arrow {
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(2, 44, 34, 0.94);
}

@media (max-width: 480px) {
    .bph-wa-widget {
        right: 14px;
        bottom: 14px;
    }
    .bph-wa-bubble {
        max-width: 250px;
    }
}

/* ==========================================================================
   MOBILE BURGER MENU & DRAWER OVERLAY SYSTEM
   ========================================================================== */

.bph-burger {
    display: none;
}

@media (max-width: 959px) {
    .bph-logo {
        margin-right: auto;
    }

    .bph-burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(16, 185, 129, 0.18);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 4px 12px rgba(2, 44, 34, 0.05);
        z-index: 1001;
        flex-shrink: 0;
    }

    .bph-burger:hover,
    .bph-burger:focus-visible {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(16, 185, 129, 0.4);
        box-shadow: 0 0 14px rgba(16, 185, 129, 0.22);
        outline: none;
    }

    .bph-burger__box {
        position: relative;
        width: 16px;
        height: 12px;
    }

    .bph-burger__inner,
    .bph-burger__inner::before,
    .bph-burger__inner::after {
        position: absolute;
        width: 16px;
        height: 2px;
        background-color: #064e3b; /* Cyber Emerald deep green */
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    }

    .bph-burger__inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .bph-burger__inner::before {
        content: "";
        top: -5px;
    }

    .bph-burger__inner::after {
        content: "";
        top: 5px;
    }

    /* Active open state animations */
    .bph-header--nav-open .bph-burger__inner {
        background-color: transparent;
    }

    .bph-header--nav-open .bph-burger__inner::before {
        transform: translateY(5px) rotate(45deg);
        background-color: #10b981; /* bright neon emerald */
    }

    .bph-header--nav-open .bph-burger__inner::after {
        transform: translateY(-5px) rotate(-45deg);
        background-color: #10b981;
    }

    /* Nav drawer dropdown below header */
    .bph-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(2, 44, 34, 0.98) 0%, rgba(1, 20, 15, 0.99) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 2px solid rgba(16, 185, 129, 0.35);
        box-shadow: 0 24px 48px rgba(2, 44, 34, 0.9);
        padding: 24px 20px;
        gap: 12px;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 999;
    }

    .bph-header--nav-open .bph-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Cyber neon glass links inside mobile navigation */
    body.bph-page a.bph-nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: #e2e8f0 !important; /* Force neon-white visibility over theme inheritances */
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-decoration: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Add right arrow chevron in mobile list for premium visual cues */
    body.bph-page a.bph-nav__link::after {
        content: "→";
        font-family: inherit;
        font-weight: 900;
        color: rgba(16, 185, 129, 0.6);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    body.bph-page a.bph-nav__link:hover,
    body.bph-page a.bph-nav__link:focus-visible {
        color: #bbf7d0 !important;
        background: rgba(16, 185, 129, 0.08);
        border-color: rgba(16, 185, 129, 0.35);
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 18px rgba(16, 185, 129, 0.15);
        transform: translateX(4px);
        outline: none;
    }

    body.bph-page a.bph-nav__link:hover::after {
        color: #10b981;
        transform: translateX(3px);
    }
}

/* ==========================================================================
   UNIFIED DARK CYBER-EMERALD MATRIX GRID THEME OVERRIDES
   Frosted Specular Glassmorphism + Radial Gradient Glow Orbs
   ========================================================================== */

/* 1. Global Page Body & Typography overrides */
body.bph-page {
    background: #010c09 !important;
    color: var(--bph-dark-text) !important;
}

body.bph-page a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

body.bph-page strong {
    font-weight: 800;
}

 /* 2. Global Section & Background overrides for the 3-Tone System */

/* Tone 2: Sleek Slate-Mint Backdrop (Default .bph-section) */
.bph-section {
    position: relative;
    background: #f3f7f5 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #475569 !important;
    padding: 80px 0 !important;
}

/* Tone 1: Pure Premium White Backdrop (.bph-section--light) */
.bph-section--light {
    position: relative;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #475569 !important;
    padding: 80px 0 !important;
}

/* Tone 3: Deep Cyber-Emerald Backdrop (.bph-section--dark & .bph-regi) */
.bph-section--dark,
.bph-regi {
    position: relative;
    background: 
        radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.05) 0%, transparent 60%),
        #011511 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--bph-dark-text) !important;
    padding: 80px 0 !important;
}

/* 3. Typography & High-Contrast Readability Rules */

/* Global Strong Element Overrides */
body.bph-page strong {
    font-weight: 800;
}

/* Dark strong text inside Light & Slate sections - Specially heightened specificity to prevent white-on-white text */
body.bph-page .bph-section strong,
body.bph-page .bph-section--light strong,
body.bph-page .bph-section--light .bph-phone-mockup__caption strong,
body.bph-page .bph-phone-mockup__caption strong,
body.bph-page .bph-step strong,
body.bph-page .bph-check-list strong,
body.bph-page .bph-faq strong {
    color: #0f172a !important;
}

/* White strong text inside Dark sections */
body.bph-page .bph-section--dark strong,
body.bph-page .bph-section--testimonials strong,
body.bph-page .bph-regi strong,
body.bph-page .bph-hero strong,
body.bph-page .bph-cta strong,
body.bph-page .bph-footer strong,
body.bph-page .bph-section--dark .bph-phone-mockup__caption strong {
    color: var(--bph-white) !important;
}

/* Headings colors */
.bph-section h2,
.bph-section--light h2,
.bph-section__header h2 {
    color: #0f172a !important;
    font-weight: 900;
}

.bph-section--dark h2,
.bph-regi h2,
.bph-hero h2,
.bph-cta h2,
.bph-section--dark .bph-section__header h2,
.bph-regi .bph-section__header h2 {
    color: var(--bph-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bph-section__header p {
    color: #475569 !important;
}

.bph-section--dark .bph-section__header p,
.bph-regi .bph-section__header p {
    color: var(--bph-dark-muted) !important;
}

/* Tagline pill colors */
.bph-section__tag {
    background: rgba(16, 185, 129, 0.08) !important;
    color: #047857 !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    font-weight: 700;
}

.bph-section--dark .bph-section__tag,
.bph-regi .bph-section__tag,
.bph-hero .bph-eyebrow,
.bph-cta .bph-section__tag {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

/* Checkmark list modifications */
.bph-check-list li {
    color: #334155 !important;
}

.bph-section--dark .bph-check-list li,
.bph-regi .bph-check-list li {
    color: var(--bph-dark-text) !important;
}

.bph-check-list li::before {
    color: #10b981 !important;
    text-shadow: none !important;
}

.bph-section--dark .bph-check-list li::before {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Number lists and compact items */
.bph-number-list li,
.bph-band__list li {
    background: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.08) !important;
    color: #475569 !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02) !important;
}

.bph-section--dark .bph-number-list li,
.bph-regi .bph-number-list li {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--bph-dark-text) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

/* Warnings and Notes */
.bph-warning {
    background: #fffcf8 !important;
    border: 1px solid rgba(217, 119, 6, 0.2) !important;
    color: #475569 !important;
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.02) !important;
}

.bph-section--dark .bph-warning {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, rgba(217, 119, 6, 0.02) 100%) !important;
    border: 1px solid rgba(217, 119, 6, 0.18) !important;
    color: var(--bph-dark-text) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35) !important;
}

.bph-warning h3 {
    color: #d97706 !important;
}

.bph-section--dark .bph-warning h3 {
    color: #f59e0b !important;
}

.bph-note {
    background: rgba(16, 185, 129, 0.04) !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    color: #334155 !important;
}

.bph-section--dark .bph-note {
    background: rgba(16, 185, 129, 0.05) !important;
    border: 1px solid rgba(16, 185, 129, 0.16) !important;
    color: var(--bph-dark-text) !important;
}

.bph-note strong {
    color: #047857 !important;
}

.bph-section--dark .bph-note strong {
    color: #34d399 !important;
}


/* 4. Global Header ( Frosted Dark Specular Glass ) */
.bph-header {
    background: rgba(1, 15, 11, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.bph-logo__text {
    color: var(--bph-white) !important;
}

.bph-header__whatsapp {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

.bph-header__whatsapp:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
}

.bph-header__whatsapp-copy strong {
    color: var(--bph-white) !important;
}

.bph-header__whatsapp-copy span {
    color: var(--bph-dark-muted) !important;
}

@media (min-width: 960px) {
    .bph-nav {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 4px 18px rgba(0, 0, 0, 0.25) !important;
    }

    body.bph-page a.bph-nav__link {
        color: var(--bph-dark-text) !important;
    }

    body.bph-page a.bph-nav__link:hover,
    body.bph-page a.bph-nav__link:focus-visible {
        color: var(--bph-white) !important;
        background: rgba(16, 185, 129, 0.12) !important;
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2) !important;
    }
}


/* 5. Solid White Specular Cards & Feature Blocks (Light & Slate Sections) */
.bph-section--light .bph-info-card,
.bph-section--light .bph-feature,
.bph-section--light .bph-step,
.bph-section .bph-info-card,
.bph-section .bph-feature,
.bph-section .bph-step {
    background: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.08) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #475569 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bph-section--light .bph-info-card h3,
.bph-section--light .bph-feature h3,
.bph-section--light .bph-step h3,
.bph-section .bph-info-card h3,
.bph-section .bph-feature h3,
.bph-section .bph-step h3 {
    color: #0f172a !important;
    font-weight: 800;
}

.bph-section--light .bph-info-card p,
.bph-section--light .bph-feature p,
.bph-section--light .bph-step p,
.bph-section .bph-info-card p,
.bph-section .bph-feature p,
.bph-section .bph-step p {
    color: #475569 !important;
}

/* Hover Accent Border Glowing Sweeps for Slate-Mint cards */
.bph-section .bph-info-card:hover,
.bph-section--light .bph-feature:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.08) !important;
}

.bph-section .bph-info-card:nth-child(2):hover {
    border-color: rgba(8, 145, 178, 0.25) !important;
    box-shadow: 0 16px 40px rgba(8, 145, 178, 0.08) !important;
}

.bph-section .bph-info-card:nth-child(3):hover {
    border-color: rgba(217, 119, 6, 0.25) !important;
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.08) !important;
}

.bph-section .bph-info-card:nth-child(4):hover {
    border-color: rgba(37, 99, 235, 0.25) !important;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08) !important;
}

/* Light Card Icons */
.bph-section--light .bph-info-card__icon,
.bph-section--light .bph-feature__icon,
.bph-section .bph-info-card__icon,
.bph-section .bph-feature__icon {
    background: rgba(16, 185, 129, 0.08) !important;
    color: #047857 !important;
}

.bph-section--light .bph-info-card__icon--cyan,
.bph-section--light .bph-feature__icon--cyan,
.bph-section .bph-info-card__icon--cyan,
.bph-section .bph-feature__icon--cyan {
    background: rgba(8, 145, 178, 0.08) !important;
    color: #0891b2 !important;
}

.bph-section--light .bph-info-card__icon--gold,
.bph-section--light .bph-feature__icon--gold,
.bph-section .bph-info-card__icon--gold,
.bph-section .bph-feature__icon--gold {
    background: rgba(217, 119, 6, 0.08) !important;
    color: #b45309 !important;
}

.bph-section--light .bph-info-card__icon--blue,
.bph-section--light .bph-feature__icon--blue,
.bph-section .bph-info-card__icon--blue,
.bph-section .bph-feature__icon--blue {
    background: rgba(37, 99, 235, 0.08) !important;
    color: #1d4ed8 !important;
}


/* 6. Glowing Dark Glass Cards (Dark Sections Only) */
.bph-section--dark .bph-account-card,
.bph-section--dark .bph-info-card,
.bph-section--dark .bph-feature,
.bph-section--dark .bph-step,
.bph-regi .bph-step {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 36px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    color: var(--bph-dark-text) !important;
}

.bph-section--dark .bph-account-card h3,
.bph-section--dark .bph-info-card h3,
.bph-section--dark .bph-feature h3,
.bph-section--dark .bph-step h3 {
    color: var(--bph-white) !important;
}

.bph-section--dark .bph-account-card p,
.bph-section--dark .bph-info-card p,
.bph-section--dark .bph-feature p,
.bph-section--dark .bph-step p {
    color: var(--bph-dark-muted) !important;
}


.bph-phone-mockup-wrapper {
    position: relative;
    max-width: 430px; /* Increased from 380px for a more premium, high-resolution look */
    margin: 0 auto;
    z-index: 10;
}

.bph-phone-mockup {
    width: 100%;
    aspect-ratio: 9 / 18.5;
    background: #020907;
    border: 12px solid #1c2622;
    border-radius: 44px;
    box-shadow: 
        inset 0 0 12px rgba(0, 0, 0, 0.8),
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.bph-phone-mockup__speaker {
    width: 60px;
    height: 5px;
    background: #273530;
    border-radius: 99px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.bph-phone-mockup__screen {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #02251a, #000c08);
    display: flex;
    flex-direction: column;
    padding: 30px 16px 16px; /* Increased padding for the wider device screen */
}

.bph-phone-mockup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px; /* Scaled up from 10px */
    color: var(--bph-dark-muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.bph-phone-mockup__app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.bph-phone-mockup__status-dot {
    width: 8px; /* Scaled up from 6px */
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.bph-phone-mockup__app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bph-phone-mockup__widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px; /* Increased from 16px */
    padding: 14px; /* Increased padding from 10px */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Mock Bet Slip styling */
.bph-phone-mockup__bet-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px; /* Scaled up from 10px */
    margin-bottom: 8px;
}

.bph-phone-mockup__bet-header strong {
    color: #10b981 !important;
    letter-spacing: 0.04em;
}

.bph-phone-mockup__checked-badge {
    background: rgba(16, 185, 129, 0.16);
    color: #34d399;
    padding: 3px 8px; /* Scaled up from 2px 6px */
    border-radius: 99px;
    font-size: 9px; /* Scaled up from 8px */
    font-weight: 800;
}

.bph-phone-mockup__bet-details {
    font-size: 11px; /* Scaled up from 9px */
    color: var(--bph-dark-muted);
    line-height: 1.5;
}

.bph-phone-mockup__payout {
    font-size: 13px; /* Scaled up from 11px */
    font-weight: 900;
    color: var(--bph-white) !important;
    margin-top: 6px;
    text-align: right;
}

.bph-phone-mockup__bet-progress {
    width: 100%;
    height: 5px; /* Scaled up from 4px */
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    margin-top: 10px;
    overflow: hidden;
}

.bph-phone-mockup__bet-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #0891b2);
    width: 100%;
    animation: bph-payout-fill 4s infinite ease-in-out;
    transform-origin: left;
}

/* Mock Roulette live styling */
.bph-phone-mockup__casino-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px; /* Scaled up from 10px */
    margin-bottom: 8px;
}

.bph-phone-mockup__casino-header strong {
    color: #22d3ee !important;
}

.bph-phone-mockup__live-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 3px 8px; /* Scaled up from 2px 6px */
    border-radius: 99px;
    font-size: 9px; /* Scaled up from 8px */
    font-weight: 800;
}

.bph-phone-mockup__wheel-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px; /* Scaled up from 9px */
    margin-bottom: 6px;
}

.bph-phone-mockup__number-glow {
    background: #ef4444;
    color: #fff;
    padding: 3px 8px; /* Scaled up from 2px 6px */
    border-radius: 5px; /* Scaled up from 4px */
    font-weight: 900;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.bph-phone-mockup__casino-win-amount {
    color: #f59e0b;
    font-weight: 900;
    font-size: 12px; /* Scaled up from 10px */
    text-align: right;
}

.bph-phone-mockup__footer {
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bph-phone-mockup__home-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
}

.bph-section--light .bph-phone-mockup__caption {
    font-size: 11px;
    color: #475569 !important;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.bph-section--light .bph-phone-mockup__caption strong {
    color: #0f172a !important;
    display: block;
    font-size: 12px;
}


/* 8. WhatsApp Chat Simulator Widget (Deep Cyber-Emerald Backdrop) */
.bph-chat-simulator {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bph-chat-simulator__header {
    background: #202c33;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bph-chat-simulator__agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bph-chat-simulator__avatar {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}

.bph-chat-simulator__agent div {
    display: flex;
    flex-direction: column;
}

.bph-chat-simulator__agent strong {
    font-size: 14px;
    color: var(--bph-white) !important;
    line-height: 1.2;
}

.bph-chat-simulator__agent span {
    font-size: 10px;
    color: var(--bph-dark-muted);
}

.bph-chat-simulator__status {
    font-size: 11px;
    font-weight: 800;
    color: #25d366;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.3);
}

.bph-chat-simulator__body {
    flex: 1;
    background: 
        linear-gradient(rgba(11, 20, 26, 0.94), rgba(11, 20, 26, 0.94)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath fill-rule='evenodd' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
}

.bph-chat-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    position: relative;
    font-size: 13px;
    line-height: 1.45;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bph-chat-bubble p {
    margin: 0 !important;
}

.bph-chat-bubble--user {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.bph-chat-bubble--agent {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.bph-chat-bubble strong {
    color: #34d399 !important;
}

.bph-chat-bubble__time {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    margin-top: 4px;
}

/* Chat bubble active writing status styling */
.bph-chat-simulator__typing {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 99px;
    align-self: flex-start;
    font-size: 11px;
    color: var(--bph-dark-muted);
}

.bph-chat-simulator__dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: bph-typing 1.4s infinite ease-in-out;
}

.bph-chat-simulator__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.bph-chat-simulator__dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bph-typing {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.bph-chat-simulator__footer {
    background: #202c33;
    padding: 10px;
    display: flex;
    gap: 8px;
}

.bph-chat-simulator__footer input {
    flex: 1;
    background: #2a3942;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    font-size: 12px;
}

.bph-chat-simulator__footer button {
    background: #00a884;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    padding: 0 14px;
    font-size: 12px;
    cursor: not-allowed;
}

/* Badges positioned inside registration column grid */
.bph-regi__live-pill-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 99px;
    padding: 4px 10px;
    font-size: 11px;
    color: #34d399;
    font-weight: 800;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.bph-regi__time-badge-new {
    background: rgba(8, 145, 178, 0.16);
    border: 1px solid rgba(8, 145, 178, 0.25);
    border-radius: 12px;
    padding: 6px 12px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 100;
    color: #22d3ee;
    backdrop-filter: blur(10px);
    text-align: center;
}

.bph-regi__time-badge-new strong {
    display: block;
    font-size: 14px;
    color: #fff !important;
}

.bph-regi__time-badge-new span {
    font-size: 9px;
}

/* 7. "What You Get" micro interactive preview panels styling */
.bph-card-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, #022017, #010f0b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bph-card-preview__match-header,
.bph-card-preview__casino-header,
.bph-card-preview__deposit-header,
.bph-card-preview__withdraw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 800;
    color: var(--bph-dark-muted);
}

.bph-card-preview__live-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 1px 5px;
    border-radius: 4px;
}

.bph-card-preview__score {
    font-size: 15px;
    font-weight: 900;
    color: var(--bph-white) !important;
    text-align: center;
    margin: 4px 0;
}

.bph-card-preview__odds-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}

.bph-card-preview__odds-val {
    background: #3b82f6;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

/* Aviator simulator details inside grid */
.bph-card-preview__aviator-tag {
    color: #f87171;
    background: rgba(239, 68, 68, 0.15);
    padding: 1px 5px;
    border-radius: 4px;
}

.bph-card-preview__casino-display {
    text-align: center;
    margin: auto 0;
}

.bph-card-preview__casino-multiplier {
    font-size: 20px;
    font-weight: 900;
    color: #ef4444;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.bph-card-preview__cashed-out {
    font-size: 8px;
    color: #fbbf24;
}

/* Deposit simulator details inside grid */
.bph-card-preview__wallets {
    display: flex;
    gap: 6px;
    margin: 8px 0;
}

.bph-card-preview__wallet-chip {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 3px 0;
    text-align: center;
    font-size: 9px;
    color: var(--bph-dark-muted);
}

.bph-card-preview__wallet-chip.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: #10b981;
    color: #34d399;
}

.bph-card-preview__amount {
    font-size: 12px;
    font-weight: 800;
    color: var(--bph-white) !important;
    text-align: center;
}

/* Withdrawal progress details inside grid */
.bph-card-preview__status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.bph-card-preview__progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.bph-card-preview__progress-fill {
    width: 100%;
    height: 100%;
    background: #10b981;
    animation: bph-payout-fill 4s ease-in-out infinite;
    transform-origin: left;
}

@keyframes bph-payout-fill {
    0% { transform: scaleX(0); }
    80%, 100% { transform: scaleX(1); }
}

.bph-card-preview__payout {
    font-size: 10px;
    color: var(--bph-white) !important;
    font-weight: 800;
    text-align: center;
}

/* 8. Comparison Table glassmorphic styling */
.bph-section .bph-table-wrap {
    background: var(--bph-white) !important;
    border: 1px solid rgba(16, 185, 129, 0.12) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
    border-radius: var(--bph-radius-lg) !important;
    overflow-x: auto;
}

.bph-section .bph-table {
    background: transparent !important;
    width: 100%;
}

.bph-section .bph-table th, 
.bph-section .bph-table td {
    border-bottom: 1px solid rgba(16, 185, 129, 0.08) !important;
    color: #475569 !important;
    padding: 16px 20px !important;
}

.bph-section .bph-table th {
    background: var(--bph-primary-deep) !important;
    color: var(--bph-white) !important;
    font-weight: 800;
}

.bph-section .bph-table td:first-child {
    color: #0f172a !important;
    font-weight: 700;
}

/* Featured Column */
.bph-section .bph-table td.bph-col-featured {
    color: var(--bph-primary-dark) !important;
    background: rgba(16, 185, 129, 0.04) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.1) !important;
    border-right: 1px solid rgba(16, 185, 129, 0.1) !important;
}

.bph-section .bph-table th.bph-col-featured {
    background: var(--bph-primary-dark) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.15) !important;
    border-right: 1px solid rgba(16, 185, 129, 0.15) !important;
}

.bph-section .bph-table-badge {
    background: linear-gradient(135deg, #10b981, #0891b2) !important;
    color: #fff !important;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    padding: 2px 6px;
    border-radius: 99px;
    margin-left: 8px;
}

.bph-section .bph-table tr:hover td {
    background: rgba(16, 185, 129, 0.02) !important;
}

.bph-section .bph-table tr:hover td.bph-col-featured {
    background: rgba(16, 185, 129, 0.08) !important;
}

.bph-section .bph-table-indicator svg {
    color: #10b981 !important;
}

/* 9. Accordion FAQ Light Styles (Tone 1: Pure Premium White Backdrop) */
.bph-section--light .bph-faq__item {
    background: var(--bph-white) !important;
    border: 1px solid rgba(16, 185, 129, 0.1) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03) !important;
    margin-bottom: 14px;
    border-radius: var(--bph-radius-md) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bph-section--light .bph-faq__item:hover {
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.06) !important;
}

.bph-section--light .bph-faq__item summary {
    color: #0f172a !important;
    font-weight: 700;
    padding: 18px 24px !important;
}

.bph-section--light .bph-faq__item[open] {
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 
        0 12px 30px rgba(16, 185, 129, 0.05),
        0 0 15px rgba(16, 185, 129, 0.03) !important;
    background: linear-gradient(to bottom, #ffffff, #fcfefe) !important;
}

.bph-section--light .bph-faq__item p {
    color: #475569 !important;
    padding: 0 24px 20px 24px !important;
}

.bph-section--light .bph-faq__icon {
    background: rgba(16, 185, 129, 0.08) !important;
    color: #047857 !important;
}

.bph-section--light .bph-faq__item:hover .bph-faq__icon {
    background: #10b981 !important;
    color: #ffffff !important;
}

.bph-section--light .bph-faq__item[open] .bph-faq__icon {
    background: var(--bph-primary-deep) !important;
    color: #ffffff !important;
}

/* 10. Call To Action (Cyber-Neon Matrix Grid layer) */
.bph-cta {
    position: relative;
    overflow: hidden;
    background: #010f0b !important;
    padding: 90px 0 !important;
}

.bph-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bph-cta__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
}

.bph-cta__bg-orb--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -50px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25), transparent 70%);
}

.bph-cta__bg-orb--2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle at center, rgba(8, 145, 178, 0.2), transparent 70%);
}

.bph-cta__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bph-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* 11. Footer styling to rich cyber-dark and hotlines */
.bph-footer {
    background: #010a08 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bph-footer__tagline {
    color: var(--bph-dark-muted) !important;
}

.bph-footer__col h3 {
    color: var(--bph-white) !important;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
    border-left: 3px solid #10b981;
    padding-left: 10px;
}

.bph-footer__nav a {
    color: var(--bph-dark-muted) !important;
}

.bph-footer__nav a:hover {
    color: #34d399 !important;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

.bph-footer__hotline {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px;
    padding: 12px;
    margin-top: 14px;
}

.bph-footer__hotline strong {
    color: #f59e0b !important;
}

.bph-footer__hotline a {
    color: var(--bph-white) !important;
}

.bph-footer__wa-btn {
    border-radius: 99px !important;
    background: #005c4b !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
}

.bph-footer__wa-btn:hover {
    background: #00a884 !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 8px 25px rgba(0, 168, 132, 0.3) !important;
    transform: translateY(-2px);
}

.bph-footer__bottom {
    background: #000605 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bph-footer__bottom p {
    color: var(--bph-dark-muted) !important;
}

.bph-footer__policy-links a {
    color: var(--bph-dark-muted) !important;
}

.bph-footer__policy-links a:hover {
    color: #34d399 !important;
}

/* Responsive Adjustments for interactive previews */
@media (max-width: 768px) {
    .bph-phone-mockup-wrapper {
        max-width: 315px !important;
    }
}

/* ==========================================================================
   12. Testimonials Grid High-Legibility & White-Text Overrides
   ========================================================================== */

/* Force testimonials section to stay deep cyber-dark */
.bph-section--testimonials {
    color: var(--bph-dark-text) !important;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 52%),
        radial-gradient(ellipse at 20% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 48%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(2, 44, 34, 0.97)),
        var(--bph-ink) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* Force header tags to bright green, headings to pure white, and descriptions to light grey */
.bph-section--testimonials .bph-section__tag {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.bph-section--testimonials h2 {
    color: var(--bph-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.bph-section--testimonials .bph-section__header p {
    color: var(--bph-dark-muted) !important;
}

/* Style the testimonial cards as premium glassmorphic blocks with bright white/mint text */
.bph-section--testimonials .bph-testimonial {
    background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.07) 100%) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border-d) !important;
    box-shadow: var(--glass-specular-d), var(--glass-shadow-d) !important;
}

.bph-section--testimonials .bph-testimonial p {
    color: var(--bph-white) !important; /* White quote text */
    opacity: 0.95;
    font-weight: 400;
}

.bph-section--testimonials .bph-testimonial strong {
    color: var(--bph-white) !important; /* Bright white player name */
    font-weight: 800;
    margin-top: auto;
}

.bph-section--testimonials .bph-testimonial span {
    color: #a7f3d0 !important; /* Beautiful glowing mint/green location */
    font-weight: 700;
    font-size: 13px;
}

/* ==========================================================================
   13. Premium Step Stepper & Security Shield Notice Overrides
   ========================================================================== */

/* Step list modern visual improvements */
.bph-number-list li {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease !important;
}

.bph-number-list li:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
    box-shadow: 
        0 12px 28px rgba(16, 185, 129, 0.06), 
        0 2px 8px rgba(16, 185, 129, 0.02) !important;
}

.bph-number-list li::before {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.bph-number-list li:hover::before {
    transform: scale(1.15) rotate(8deg);
    background: var(--bph-primary-dark) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

/* Interactive Direct-action WhatsApp Step link badge */
.bph-step-link-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f7f4 !important;
    color: #00875a !important;
    padding: 3px 12px;
    border-radius: 99px;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    font-size: 13.5px;
    text-decoration: none;
    margin-left: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.04);
}

.bph-step-link-wa:hover {
    background: #00875a !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 135, 90, 0.25) !important;
    transform: translateY(-1.5px);
    border-color: #00875a !important;
}

.bph-step-link-wa svg {
    transition: transform 0.3s ease;
}

.bph-step-link-wa:hover svg {
    transform: scale(1.15) rotate(-10deg);
}

/* Security Verification Warning Shield Card */
.bph-warning {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.bph-warning:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(217, 119, 6, 0.4) !important;
    box-shadow: 
        0 20px 42px rgba(217, 119, 6, 0.08),
        0 4px 12px rgba(15, 23, 42, 0.03) !important;
}

.bph-warning__shield-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bph-warning__shield-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #fef3c7 !important;
    color: #d97706 !important;
    border-radius: 12px;
    border: 1px solid rgba(217, 119, 6, 0.16) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    transition: transform 0.3s ease;
}

.bph-warning:hover .bph-warning__shield-icon {
    transform: rotate(10deg) scale(1.08);
}

.bph-warning__shield-badge {
    background: #fef3c7 !important;
    color: #92400e !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid rgba(217, 119, 6, 0.12) !important;
}

.bph-warning__bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed rgba(217, 119, 6, 0.18) !important;
}

.bph-warning__bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #713f12 !important;
    font-weight: 700;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
    cursor: default;
}

.bph-warning__bullet-item:hover {
    transform: translateX(4px);
    color: #d97706 !important;
}

.bph-warning__bullet-dot {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    background: #d97706 !important;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.15);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.bph-warning__bullet-item:hover .bph-warning__bullet-dot {
    transform: scale(1.12) rotate(8deg);
    background: #b45309 !important;
    box-shadow: 0 4px 8px rgba(217, 119, 6, 0.25);
}

/* 13. Image Replacement for Phone Mockup */
.bph-phone-mockup-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 
        0 24px 60px rgba(1, 15, 11, 0.16),
        0 0 35px rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    background: #011511;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.bph-phone-mockup-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 70px rgba(1, 15, 11, 0.28),
        0 0 45px rgba(16, 185, 129, 0.18);
}

