/* ═══════════════════════════════════════════════════════════════════════════
   Beyond Paydays Landing Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --bp-purple: #320082;
    --bp-purple-light: #4a00b8;
    --bp-purple-dark: #210055;
    --bp-green: #34B78F;
    --bp-green-dark: #1a7a5e;
    --bp-green-bg: #edfaf5;
    --bp-purple-bg: #f3eeff;
    --bp-gray-50: #fafafa;
    --bp-gray-100: #f5f5f5;
    --bp-gray-200: #e5e5e5;
    --bp-gray-400: #9ca3af;
    --bp-gray-500: #6b7280;
    --bp-gray-600: #4b5563;
    --bp-gray-700: #374151;
    --bp-gray-800: #1f2937;
    --bp-dark: #12112a;
    --bp-laptop-dark: #1a1a2e;
    --bp-font: 'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --bp-shadow-sm: 0 2px 12px rgba(50,0,130,0.18);
    --bp-shadow-md: 0 4px 20px rgba(50,0,130,0.28);
    --bp-shadow-lg: 0 32px 80px rgba(50,0,130,0.22), 0 8px 24px rgba(50,0,130,0.12);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bp-body {
    font-family: var(--bp-font);
    background: #fff;
    color: var(--bp-gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bp-font);
}

/* ─── Skip Link ─── */
.bp-skip-link {
    position: absolute;
    top: -9999px;
    left: 1rem;
    background: var(--bp-purple);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
}

.bp-skip-link:focus {
    top: 0;
}

/* ─── Focus Styles ─── */
*:focus-visible {
    outline: 3px solid var(--bp-green);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ─── Smooth Scroll ─── */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ─── Container ─── */
.bp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Grid Background ─── */
.bp-grid-bg {
    background-image:
        linear-gradient(rgba(50,0,130,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50,0,130,0.055) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* ─── Accent Bar ─── */
.bp-accent-bar {
    width: 40px;
    height: 3px;
    background: var(--bp-green);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.bp-accent-bar.bp-centered {
    margin-left: auto;
    margin-right: auto;
}

.bp-accent-bar-green {
    background: var(--bp-green);
}

/* ─── Buttons ─── */
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--bp-font);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.bp-btn-primary {
    background: var(--bp-purple);
    color: #fff;
    border: 2px solid var(--bp-purple);
    box-shadow: var(--bp-shadow-sm);
}

.bp-btn-primary:hover {
    background: var(--bp-purple-light);
    border-color: var(--bp-purple-light);
    box-shadow: var(--bp-shadow-md);
}

.bp-btn-primary:active {
    background: var(--bp-purple-dark);
    border-color: var(--bp-purple-dark);
}

.bp-btn-secondary {
    background: transparent;
    color: var(--bp-purple);
    border: 2px solid var(--bp-purple);
}

.bp-btn-secondary:hover {
    background: var(--bp-purple-bg);
}

.bp-btn-sm {
    padding: 0.6rem 1.3rem;
    font-size: 0.78rem;
}

.bp-btn-lg {
    padding: 0.9rem 1.75rem;
}

.bp-btn-cta-primary {
    background: #fff;
    color: var(--bp-purple);
    border: 2px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.bp-btn-cta-primary:hover {
    background: var(--bp-purple-bg);
}

.bp-btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
}

.bp-btn-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ─── Badge ─── */
.bp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bp-green-bg);
    border: 1px solid rgba(52,183,143,0.35);
    border-radius: 99px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bp-green-dark);
}

.bp-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bp-green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(50,0,130,0.08);
    backdrop-filter: blur(8px);
}

.bp-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.bp-logo-link {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bp-logo {
    height: 48px;
    display: block;
}

.bp-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bp-nav-link {
    color: #4a4a5a;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.bp-nav-link:hover {
    color: var(--bp-purple);
    border-bottom-color: var(--bp-green);
}

.bp-mobile-menu-btn {
    background: none;
    border: 2px solid var(--bp-purple);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    color: var(--bp-purple);
}

.bp-mobile-nav {
    background: #fff;
    border-top: 1px solid rgba(50,0,130,0.08);
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-mobile-nav[hidden] {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-hero {
    background: #fff;
    padding: 5.5rem 1.5rem 5rem;
    position: relative;
    overflow: visible;
    z-index: 3;
}

.bp-hero-accent-top {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(50,0,130,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bp-hero-accent-bottom {
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(52,183,143,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.bp-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--bp-purple);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.bp-hero-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bp-gray-600);
    max-width: 480px;
    margin-bottom: 0;
}

.bp-hero-text p {
    margin-bottom: 0.75rem;
}

.bp-hero-text p:last-child {
    margin-bottom: 0;
}

.bp-hero-text strong {
    color: var(--bp-gray-700);
    font-weight: 600;
}

.bp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 2.25rem;
    position: relative;
    z-index: 10;
}

.bp-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
}

.bp-report-cover {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,0.20));
}

/* Report Placeholder */
.bp-report-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--bp-shadow-lg);
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 340px;
    background: var(--bp-purple-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(50,0,130,0.12);
    text-align: center;
    padding: 2rem;
}

.bp-placeholder-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(50,0,130,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bp-placeholder-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bp-purple);
    margin-bottom: 0.5rem;
}

.bp-placeholder-text {
    font-size: 0.75rem;
    color: var(--bp-gray-500);
    line-height: 1.5;
    max-width: 180px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALUE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-value {
    background: var(--bp-gray-50);
    border-top: 1px solid rgba(50,0,130,0.06);
    border-bottom: 1px solid rgba(50,0,130,0.06);
    padding: 5.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.bp-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.bp-section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--bp-purple);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.bp-section-title.bp-centered {
    text-align: center;
}

.bp-value-text {
    font-size: 0.975rem;
    line-height: 1.9;
    color: var(--bp-gray-700);
    margin-bottom: 2.25rem;
}

.bp-value-text p {
    margin-bottom: 1.25rem;
}

.bp-value-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.bp-value-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(50,0,130,0.08);
    border-radius: 10px;
    align-items: flex-start;
}

.bp-check-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.bp-value-card-title {
    font-weight: 700;
    color: var(--bp-purple);
    font-size: 0.875rem;
    margin-bottom: 0.2rem;
}

.bp-value-card-text {
    font-size: 0.825rem;
    color: var(--bp-gray-500);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INSIGHTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-insights {
    background: #fff;
    padding: 5.5rem 1.5rem;
}

.bp-insights-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bp-insights-subtitle {
    font-size: 0.9rem;
    color: var(--bp-gray-500);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.75;
}

.bp-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.bp-insight-item {
    background: #fff;
    border: 1px solid rgba(50,0,130,0.1);
    border-radius: 12px;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.bp-insight-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--bp-purple), rgba(50,0,130,0.15));
    border-radius: 12px 0 0 12px;
}

.bp-insight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-insight-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(50,0,130,0.08);
    line-height: 1;
}

.bp-insight-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bp-green-dark);
    background: var(--bp-green-bg);
    border: 1px solid rgba(52,183,143,0.25);
    border-radius: 99px;
    padding: 2px 10px;
}

.bp-insight-text {
    font-size: 0.925rem;
    line-height: 1.8;
    color: var(--bp-gray-700);
}

/* ─── Insight Card Hover ─── */
.bp-insight-card {
    transition: box-shadow 0.2s, transform 0.2s;
}

@media (prefers-reduced-motion: no-preference) {
    .bp-insight-card:hover {
        box-shadow: 0 8px 32px rgba(50,0,130,0.10);
        transform: translateY(-2px);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DASHBOARD / FORM SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-dashboard {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0faf7 100%);
    border-top: 1px solid rgba(50,0,130,0.07);
    border-bottom: 1px solid rgba(50,0,130,0.07);
    padding: 5.5rem 1.5rem;
}

.bp-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.bp-dashboard-subtitle {
    font-size: 0.975rem;
    line-height: 1.8;
    color: var(--bp-gray-700);
    margin-bottom: 1rem;
}

.bp-dashboard-description {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--bp-gray-600);
    margin-bottom: 2rem;
}

.bp-form-container {
    margin-top: 1.5rem;
}

/* Form Styles */
.bp-form-container input[type="text"],
.bp-form-container input[type="email"],
.bp-form-container input[type="tel"],
.bp-form-container select,
.bp-form-container textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(50,0,130,0.18);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--bp-gray-800);
    background: #fff;
    font-family: var(--bp-font);
    min-height: 48px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.bp-form-container input:focus,
.bp-form-container select:focus,
.bp-form-container textarea:focus {
    outline: none;
    border-color: var(--bp-purple);
    box-shadow: 0 0 0 3px rgba(50,0,130,0.15);
}

.bp-form-container label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bp-gray-700);
    margin-bottom: 0.4rem;
}

.bp-form-container button[type="submit"] {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
}

/* Laptop Frame */
.bp-dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.bp-laptop-frame {
    width: 100%;
    max-width: 520px;
}

.bp-laptop-screen {
    background: var(--bp-laptop-dark);
    border-radius: 14px 14px 0 0;
    padding: 10px 10px 0;
    box-shadow: 0 -4px 32px rgba(50,0,130,0.12);
    position: relative;
}

.bp-laptop-camera {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    margin: 0 auto 6px;
    opacity: 0.6;
}

.bp-laptop-screen {
    background: var(--bp-purple-bg);
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.bp-dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.bp-dashboard-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-gray-500);
    font-size: 0.875rem;
}

.bp-laptop-hinge {
    height: 10px;
    background: linear-gradient(180deg, #2a2a3e, var(--bp-laptop-dark));
    border-radius: 0 0 2px 2px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.bp-laptop-stand {
    height: 6px;
    background: #22223a;
    border-radius: 0 0 40px 40px;
    margin: 1px auto 0;
    width: 92%;
}

.bp-laptop-foot {
    height: 4px;
    background: #2a2a3e;
    border-radius: 4px;
    width: 70%;
    margin: 1px auto 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Video Wrapper */
.bp-video-wrapper {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(50, 0, 130, 0.15);
}

.bp-video-wrapper iframe,
.bp-video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.bp-dashboard-desc {
    font-size: 0.925rem;
    line-height: 1.9;
    color: var(--bp-gray-700);
    max-width: 480px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISCOVER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-discover {
    background: #fff;
    padding: 5.5rem 1.5rem;
    border-top: 1px solid rgba(50,0,130,0.06);
}

.bp-discover-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bp-discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bp-discover-card {
    background: #fff;
    border: 1px solid rgba(50,0,130,0.09);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-discover-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--bp-purple-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bp-discover-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bp-purple);
    margin: 0;
    line-height: 1.25;
}

.bp-discover-text {
    font-size: 0.85rem;
    line-height: 1.85;
    color: var(--bp-gray-600);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-cta {
    background: linear-gradient(135deg, var(--bp-purple) 0%, var(--bp-purple-light) 100%);
    padding: 6.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.bp-cta-bg {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(52,183,143,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bp-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.bp-cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.1rem;
    line-height: 1.15;
}

.bp-cta-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.bp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-footer {
    background: var(--bp-dark);
    padding: 2.75rem 1.5rem;
}

.bp-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.bp-footer-logo img {
    height: 44px;
    display: block;
}

.bp-footer-partner,
.bp-footer-copyright {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: bpFadeIn 0.6s ease forwards;
}

@keyframes bpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bp-scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bp-scroll-animate.bp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-hidden-mobile {
    display: flex;
}

.bp-show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .bp-hidden-mobile {
        display: none !important;
    }

    .bp-show-mobile {
        display: flex !important;
    }

    .bp-hero-grid,
    .bp-value-grid,
    .bp-dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .bp-discover-grid {
        grid-template-columns: 1fr !important;
    }

    .bp-hero-image-wrapper {
        order: -1;
    }

    .bp-footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bp-discover-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bp-fade-in,
    .bp-scroll-animate {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DROPDOWN BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.bp-dropdown {
    position: relative;
    display: inline-block;
}

.bp-dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bp-dropdown-chevron {
    transition: transform 0.2s ease;
    margin-left: 0.25rem;
}

.bp-dropdown.open .bp-dropdown-chevron {
    transform: rotate(180deg);
}

.bp-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(50, 0, 130, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-8px);
    z-index: 9999;
    overflow: visible;
}

.bp-dropdown.open .bp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.bp-dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--bp-gray-800);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
    border-bottom: 1px solid rgba(50, 0, 130, 0.08);
}

.bp-dropdown-item:last-child {
    border-bottom: none;
}

.bp-dropdown-item:hover {
    background: var(--bp-purple-bg);
    color: var(--bp-purple);
}

.bp-dropdown-item:focus-visible {
    outline: none;
    background: var(--bp-purple-bg);
    color: var(--bp-purple);
}

/* Mobile dropdown adjustments */
.bp-dropdown-mobile .bp-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(-8px);
    width: 100%;
}

.bp-dropdown-mobile.open .bp-dropdown-menu {
    transform: translateX(0) translateY(0);
}

/* CTA section dropdown - align menu properly */
.bp-cta-buttons .bp-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(-8px);
}

.bp-cta-buttons .bp-dropdown.open .bp-dropdown-menu {
    transform: translateX(0) translateY(0);
}

/* Visually hidden for anchor IDs */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
