/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Loading Bar - Global Navigation Loader */
.top-loader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.top-loader.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.top-loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 8px #ffffff, 0 2px 20px rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: width 0.1s ease;
}

.top-loader.active .top-loader-progress {
    animation: loadProgress 1.5s ease-out forwards;
}

.top-loader-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    opacity: 0;
    box-shadow: 0 0 20px #ffffff, 0 0 10px #ffffff;
    border-radius: 0 2px 2px 0;
}

.top-loader.active .top-loader-glow {
    animation: glowMove 1.5s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    15% { width: 25%; }
    40% { width: 50%; }
    65% { width: 75%; }
    85% { width: 90%; }
    100% { width: 100%; }
}

@keyframes glowMove {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    15% { left: 20%; }
    40% { left: 45%; }
    65% { left: 70%; }
    85% { left: 85%; opacity: 1; }
    100% { left: 95%; opacity: 0; }
}

/* Custom Fonts */
@font-face {
    font-family: 'Segoe UI Black';
    src: local('Segoe UI Black');
}

/* CSS Variables - Default Theme */
:root {
    --primary: #4A9EFF;
    --primary-light: #6FB4FF;
    --primary-dark: #3185E6;
    --accent: #7B61FF;
    --bg-primary: #050505;
    --bg-secondary: #080808;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --success: #00D4AA;
}

/* Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #050505;
}

/* Subtle grid mesh overlay */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
    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;
}


/* Particles - kept but lighter */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    contain: strict;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: floatUp 30s linear infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes floatUp {
    0% {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }
    5% {
        opacity: 0.25;
    }
    95% {
        opacity: 0.25;
    }
    100% {
        transform: translate3d(50px, -100vh, 0);
        opacity: 0;
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease-out;
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(74, 158, 255, 0.06) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: glass-shimmer 5s linear infinite;
    pointer-events: none;
    border-radius: inherit;
}

@keyframes glass-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 0;
    background: rgba(8, 8, 16, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 14px 0;
    background: rgba(8, 8, 16, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Segoe UI Black', 'Arial Black', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-left: 10px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-login {
    padding: 10px 24px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}

.mobile-login {
    display: none;
}

/* Footer */
footer {
    padding: 80px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: var(--text-tertiary);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

.footer-text {
    color: var(--text-tertiary);
    font-size: 12px;
}

/* Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1002;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 8, 16, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 110px;
        gap: 32px;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-menu .mobile-login {
        display: flex;
        margin-top: 8px;
        font-size: 15px;
        padding: 12px 40px;
    }

    .logo-subtitle {
        display: none;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding-top: 24px;
    }
}

/* =============================================
   Feature Bento Grid (shared across product pages)
   ============================================= */

.bento-section {
    padding: 60px 0 20px;
}

.bento-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.feature-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Glass card shell */
.bento-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* Inner surface */
.bento-card-inner {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    overflow: hidden;
    padding: 32px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    box-sizing: border-box;
}

/* Dot grid texture */
.bento-dot-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.2) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Node row (wide card) */
.bento-nodes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    position: relative;
    height: 140px;
    margin-bottom: 28px;
    flex-shrink: 0;
}

/* Line + stream wrapper — clips stream to the grey line bounds */
.bento-line-wrap {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 1px;
    overflow: hidden;
    z-index: 0;
}

.bento-node-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.bento-stream {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: bento-stream 2.5s linear infinite;
    opacity: 0.6;
}

@keyframes bento-stream {
    0%   { transform: translateX(-100%); opacity: 0; }
    25%  { opacity: 1; }
    75%  { opacity: 1; }
    100% { transform: translateX(250%); opacity: 0; }
}

.bento-node {
    position: relative;
    z-index: 10;
}

.bento-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #0f1424;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover .bento-node-icon.node-left  { color: var(--primary); background: #0f1c30; border-color: rgba(74, 158, 255, 0.3); }
.bento-card:hover .bento-node-icon.node-right { color: var(--accent);  background: #14102a; border-color: rgba(123, 97, 255, 0.3); }

.bento-node-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    white-space: nowrap;
}

/* Center node */
.bento-node-center {
    position: relative;
}

.bento-node-center .bento-node-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    font-size: 26px;
    color: var(--primary);
    background: #0d1728;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.bento-node-glow {
    position: absolute;
    inset: -4px;
    background: rgba(74, 158, 255, 0.2);
    filter: blur(20px);
    border-radius: 50%;
    animation: bento-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bento-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.75; transform: scale(1.08); }
}

/* Card text */
.bento-card-text {
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.bento-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.bento-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
    max-width: 480px;
}

/* Security card shimmer */
.bento-security-card {
    position: relative;
    overflow: hidden;
}

.bento-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bento-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(16, 185, 129, 0.15) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: bento-shimmer-anim 4s linear infinite;
}

@keyframes bento-shimmer-anim {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Orbit rings */
.bento-orbit-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-bottom: 24px;
}

.bento-orbit {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(16, 185, 129, 0.15);
    animation: bento-spin 10s linear infinite;
}

.bento-orbit-ring-inner {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dotted rgba(16, 185, 129, 0.12);
    animation: bento-spin 15s linear infinite reverse;
}

@keyframes bento-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.bento-orbit-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

.bento-card:hover .bento-orbit-icon {
    transform: rotate(90deg);
}

.bento-orbit-icon i {
    transform: rotate(-45deg);
    font-size: 24px;
    color: #10b981;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-orbit-icon i {
    transform: rotate(-90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-nodes {
        padding: 0 24px;
    }

    .bento-card-inner {
        min-height: 240px;
    }
}

/* =============================================
   Reference Site Style Enhancements
   ============================================= */

/* Page hero glow - applied to 5 specific pages */
.page-hero-glow {
    position: fixed;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: rgba(74, 100, 180, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Shimmer sweep on cards */
.pricing-card,
.bento-card,
.glass-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before,
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: translateX(-150%);
    transition: transform 1.5s ease;
    pointer-events: none;
    z-index: 1;
}

.pricing-card:hover::before,
.bento-card:hover::before {
    transform: translateX(150%);
}

/* Card hover lift */
.pricing-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

/* Featured card glow */
.pricing-card.featured {
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.12), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 60px rgba(74, 158, 255, 0.3), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

/* Pulse dot */
.pulse-dot-wrap {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.pulse-dot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.75;
    animation: pulse-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.pulse-dot-core {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Pill label */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    background: rgba(74, 158, 255, 0.05);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 16px;
}

@keyframes bgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================================
   PRICING CARD RESTYLE — featured-blue + premium wrapper
   ============================================================ */

/* "Consistent Agent" / featured-blue style */
.pricing-card.featured-blue {
    border: 1px solid rgba(74, 158, 255, 0.45);
    background: rgba(74, 158, 255, 0.08);
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card.featured-blue:hover {
    box-shadow: 0 0 60px rgba(74, 158, 255, 0.45), 0 20px 40px rgba(0, 0, 0, 0.5);
}
.pricing-card.featured-blue .pricing-cta {
    background: var(--primary);
    color: #ffffff;
    border: none;
}
.pricing-card.featured-blue .pricing-cta:hover {
    filter: brightness(1.15);
}

/* Badge sitting above the featured-blue card */
.pricing-featured-badge {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.pricing-featured-badge span {
    display: inline-block;
    background: var(--primary);
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 16px;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
    position: relative;
    top: 14px;
    z-index: 2;
}

/* Premium wrapper animations */
@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes gradient-rotate {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes subtle-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.04); }
}

/* Premium wrapper — outer shell */
.pricing-premium-wrap {
    position: relative;
    animation: float-card 6s ease-in-out infinite;
}
.pricing-premium-glow {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: rgba(74, 158, 255, 0.18);
    filter: blur(20px);
    animation: subtle-pulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
.pricing-premium-border {
    position: relative;
    z-index: 1;
    padding: 2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #4A9EFF, #7B61FF, #4A9EFF);
    background-size: 200% 200%;
    animation: gradient-rotate 3s ease infinite;
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.35);
}
.pricing-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 16px;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    z-index: 10;
}
.pricing-card.premium-card {
    background: #080808;
    border: none;
    border-radius: 24px;
    overflow: hidden;
}
.pricing-card.premium-card .pricing-cta {
    background: #ffffff;
    color: #000000;
    border: none;
}
.pricing-card.premium-card .pricing-cta:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

