@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --pro-blue: rgb(63, 117, 196);
    --pro-blue-light: rgba(63, 117, 196, 0.08);
    --pro-blue-dark: rgb(46, 85, 143);
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
}

/* Core Bootstrap Primary Color Overrides */
.text-primary {
    color: var(--pro-blue) !important;
}
.bg-primary {
    background-color: var(--pro-blue) !important;
}
.btn-primary {
    background-color: var(--pro-blue) !important;
    border-color: var(--pro-blue) !important;
}
.btn-primary:hover {
    background-color: var(--pro-blue-dark) !important;
    border-color: var(--pro-blue-dark) !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--slate-900);
    background-color: var(--slate-50);
    font-size: 0.95rem; /* Elegant base size */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .display-4 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 { font-size: 1.65rem !important; } /* Precise title size */
h4 { font-size: 1.35rem !important; }
h5 { font-size: 1.05rem !important; }
h6 { font-size: 0.9rem !important; }

/* Elite Action Buttons */
.btn-elite-income {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.btn-elite-income:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-elite-expense {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.btn-elite-expense:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.3);
}

/* Pro Navbar */
.navbar-pro {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--slate-100);
    padding: 20px 0;
}

@media (min-width: 992px) {
    .navbar-pro .container {
        max-width: 100% !important;
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--slate-900);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--slate-700) !important;
    position: relative;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 2px;
        left: 16px;
        background-color: var(--pro-blue);
        transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:hover::after {
        width: calc(100% - 32px);
    }
    .navbar-nav .nav-link:hover {
        color: var(--pro-blue) !important;
    }
}

/* Pro Hero Section */
.hero-pro {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, var(--pro-blue-light), transparent),
                radial-gradient(circle at bottom left, var(--pro-blue-light), transparent);
}

.btn-elite-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(79, 70, 229, 0.5);
}

/* Dashboard Elite Styles */
.dash-header {
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

.stat-card-elite {
    border-radius: 1.5rem; /* Slightly smaller for precision */
    border: 1px solid var(--slate-100);
    background: white;
    padding: 24px; /* Balanced padding */
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-elite:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: var(--pro-blue-light);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.bg-soft-success { background: #ecfdf5; color: #10b981; }
.bg-soft-danger { background: #fef2f2; color: #ef4444; }
.bg-soft-primary { background: #eff6ff; color: #3b82f6; }

.table-elite {
    border-radius: 1.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.table-elite th {
    background: var(--slate-50);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 20px;
    border: none;
}

.table-elite td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--slate-50);
}

.action-btn-elite {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--slate-50);
    color: var(--slate-700);
    transition: all 0.2s;
}

.action-btn-elite:hover {
    background: var(--pro-blue);
    color: white;
}

.hero-tag {
    background: var(--pro-blue-light);
    color: var(--pro-blue);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title-pro {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.hero-title-thin {
    font-weight: 300 !important;
    color: var(--slate-700);
    letter-spacing: -1px;
}

.hero-subtitle-pro {
    font-size: 1.25rem;
    color: var(--slate-700);
    line-height: 1.6;
    max-width: 550px;
}

.hero-img-pro {
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
}

.hero-img-pro:hover {
    transform: scale(1.02);
}

/* Pricing Pro */
.pricing-pro {
    padding: 110px 0;
    background-color: #f8fafc;
}

.card-pro {
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-top: 6px solid var(--pro-blue) !important; /* Visual anchor border */
    border-radius: 28px;
    padding: 44px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.035);
}

.card-pro:hover {
    border-color: rgba(63, 117, 196, 0.25);
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 35px 80px rgba(63, 117, 196, 0.15) !important; /* Custom brand color shadow */
}

/* Custom micro-animations for pricing items */
.card-pro ul li {
    font-size: 0.98rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.card-pro ul li:hover {
    transform: translateX(6px);
    color: var(--slate-900) !important;
}

.card-pro ul li i {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pro ul li:hover i {
    transform: scale(1.25);
    text-shadow: 0 0 12px rgba(63, 117, 196, 0.4);
}

/* Featured deep space card */
.card-pro.featured {
    background: linear-gradient(135deg, #050e1f 0%, #0d2245 50%, #03070f 100%) !important;
    color: var(--white) !important;
    border: 2px solid rgba(251, 191, 36, 0.3) !important;
    border-top: 6px solid #fbbf24 !important; /* Gold anchor border */
    box-shadow: 0 25px 60px rgba(63, 117, 196, 0.2) !important;
    position: relative;
}

.card-pro.featured:hover {
    border-color: #fbbf24 !important;
    box-shadow: 0 45px 95px rgba(251, 191, 36, 0.32) !important;
    transform: translateY(-12px) scale(1.025) !important;
}

/* Featured Header styles */
.card-pro.featured h4 {
    color: #fbbf24 !important; /* Gold Year Plan Header */
    font-weight: 800 !important;
}

.card-pro.featured .display-3 {
    color: #ffffff !important;
}

.card-pro.featured .fs-5 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.card-pro.featured ul li i {
    color: #fbbf24 !important; /* Gold Icons for Elite List items */
}

.card-pro.featured ul li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-pro.featured ul li:hover {
    color: #ffffff !important;
}

.card-pro.featured .text-dark-emphasis {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-pro.featured .btn-pro-blue {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #061022 !important;
    border: none !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.card-pro.featured .btn-pro-blue:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%) !important;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5) !important;
    transform: translateY(-2px);
}

/* Renewal badge glass custom styles */
.renewal-badge-glass {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 16px;
    padding: 16px 20px;
    color: #d97706;
    font-size: 0.85rem;
    line-height: 1.45;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.card-pro.featured .renewal-badge-glass {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Pricing Tag Pills */
.pricing-pill-badge {
    background: rgba(63, 117, 196, 0.08);
    color: var(--pro-blue);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(63, 117, 196, 0.05);
}

.card-pro.featured .pricing-pill-badge {
    background: rgba(251, 191, 36, 0.12) !important;
    color: #fbbf24 !important;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.15) !important;
}

.btn-pro {
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-pro-blue {
    background: var(--pro-blue);
    color: var(--white);
    border: none;
}

.btn-pro-blue:hover {
    background: var(--pro-blue-dark);
    transform: translateY(-2px);
}

.btn-pro-outline {
    border: 2px solid var(--slate-200);
    background: var(--slate-50);
    color: var(--slate-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pro-outline:hover {
    border-color: var(--pro-blue) !important;
    background-color: var(--pro-blue) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 25px rgba(63, 117, 196, 0.3) !important;
    transform: translateY(-2px);
}

/* Feature Icons */
.icon-box-pro {
    width: 64px;
    height: 64px;
    background: var(--pro-blue-light);
    color: var(--pro-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    margin-bottom: 24px;
}


/* Elite Pagination */
.pagination-elite .page-item {
    margin: 0 4px;
}

.pagination-elite .page-link {
    border: none;
    background: #ffffff;
    color: var(--slate-700);
    border-radius: 12px !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.pagination-elite .page-link:hover {
    background: var(--pro-blue-light);
    color: var(--pro-blue);
    transform: translateY(-2px);
}

.pagination-elite .page-item.active .page-link {
    background: linear-gradient(135deg, var(--pro-blue) 0%, var(--pro-blue-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pagination-elite .page-item.disabled .page-link {
    background: #f8fafc;
    color: #cbd5e1;
    opacity: 0.6;
}

/* ==========================================================================
   PREMIUM MOBILE RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Glassmorphic Fluid Navbar */
    .navbar-pro {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    }
    
    .navbar-pro .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .navbar-brand img {
        width: 140px !important;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(25px) saturate(190%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(190%) !important;
        border-radius: 1.5rem;
        margin-top: 15px;
        padding: 24px;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.55) !important;
    }
    
    /* Override Bootstrap align-items-center for mobile collapse */
    .navbar-nav.align-items-center {
        align-items: stretch !important;
        text-align: left !important;
        width: 100%;
        margin-top: 8px;
        gap: 6px;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 2px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 18px !important;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--slate-700) !important;
        display: block;
        width: 100%;
        text-align: left !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(59, 130, 246, 0.06) !important;
        border-color: rgba(59, 130, 246, 0.08) !important;
        color: var(--pro-blue) !important;
        padding-left: 24px !important;
    }
    
    .navbar-nav .btn-pro {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 14px !important;
        font-size: 0.92rem !important;
        margin: 8px 0 !important;
        border-radius: 12px !important;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .navbar-nav .btn-pro-outline {
        background: #ffffff !important;
        border: 1.5px solid var(--slate-200) !important;
        color: var(--slate-700) !important;
    }
    .navbar-nav .btn-pro-outline:hover {
        background: var(--slate-50) !important;
        border-color: var(--slate-300) !important;
    }

    .navbar-nav .btn-pro-blue {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
        border: none !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
    }
    .navbar-nav .btn-pro-blue:hover {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35) !important;
        transform: translateY(-1px);
    }
    
    /* Smooth Hero Section Overlay */
    .hero-pro {
        padding: 95px 0 50px;
        text-align: center;
        background: radial-gradient(circle at top, rgba(59, 130, 246, 0.09), transparent 75%),
                    radial-gradient(circle at bottom, rgba(59, 130, 246, 0.04), transparent 60%);
    }
    
    /* Pull container full width on mobile for edge-to-edge image banner */
    .hero-pro .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    /* Ensure the text section keeps professional side padding */
    .hero-pro .order-2 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .hero-tag {
        font-size: 0.72rem;
        padding: 6px 14px;
        letter-spacing: 0.5px;
        border: 1px solid rgba(59, 130, 246, 0.15);
        background: rgba(59, 130, 246, 0.06);
    }
    
    .hero-title-pro {
        font-size: 2.6rem !important;
        line-height: 1.15;
        letter-spacing: -1.5px;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle-pro {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem !important;
        margin-left: auto;
        margin-right: auto;
        color: #475569;
        max-width: 92%;
    }
    
    /* Stacking Tactile Hero Buttons */
    .hero-pro .d-flex {
        flex-direction: column;
        gap: 12px !important;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-pro .btn-pro {
        width: 100%;
        padding: 15px 24px;
        font-size: 0.95rem;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero Image */
    .hero-img-pro {
        margin-top: 0px !important;
        border-radius: 0px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    }
    
    /* Designed for Grid */
    .row.g-4.justify-content-center.text-center .col-6.col-md-2 {
        width: 50% !important;
    }
    
    .row.g-4.justify-content-center.text-center .p-3 {
        padding: 16px 12px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(15, 23, 42, 0.04) !important;
        background: white !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.01) !important;
    }
    
    /* Features Tab */
    #features {
        padding: 50px 0 !important;
    }
    
    #features .col-md-4 {
        margin-bottom: 2.2rem;
    }
    
    #features .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .icon-box-pro {
        margin-left: auto;
        margin-right: auto;
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        border-radius: 16px;
        margin-bottom: 16px;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
    }
    
    #features h5 {
        font-size: 1.15rem !important;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }
    
    #features p {
        text-align: center;
        font-size: 0.88rem;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Pricing Section */
    .pricing-pro {
        padding: 60px 0 !important;
    }
    
    .pricing-pro h2 {
        font-size: 2.3rem !important;
        line-height: 1.15;
        letter-spacing: -1px;
    }
    
    .pricing-pro .text-muted {
        font-size: 0.95rem;
        max-width: 90% !important;
    }
    
    .card-pro {
        padding: 32px 24px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(15, 23, 42, 0.05) !important;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02) !important;
        margin-bottom: 1.5rem;
    }
    
    .card-pro.featured {
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
    }
    
    .card-pro h4 {
        font-size: 1.15rem !important;
        letter-spacing: 0.5px;
    }
    
    .card-pro .display-3 {
        font-size: 2.85rem !important;
    }
    
    .card-pro .fs-5 {
        font-size: 1rem !important;
    }
    
    .card-pro ul li {
        font-size: 0.88rem;
        margin-bottom: 12px !important;
    }
    
    .card-pro .btn-pro {
        padding: 14px 20px !important;
        font-size: 0.92rem !important;
        border-radius: 12px !important;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 !important;
        text-align: center !important;
    }
    
    footer .text-md-start, 
    footer .text-md-end {
        text-align: center !important;
    }
    
    footer .d-flex {
        justify-content: center !important;
        margin-top: 15px;
    }
}

/* Premium Floating Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pro-blue); /* Modern Blue */
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(63, 117, 196, 0.3);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--pro-blue-dark); /* Darker Blue */
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(46, 85, 143, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}

/* Premium Hero Showcase Carousel CSS */
.hero-carousel-wrapper {
    position: relative;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.hero-carousel-wrapper:hover {
    transform: scale(1.015);
}

.hero-carousel-wrapper .carousel-inner {
    border-radius: 30px;
    overflow: hidden;
}

/* Glassmorphic Caption Banner */
.premium-caption {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 16px 24px !important;
    text-align: left !important;
}

.premium-caption h5 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.premium-caption p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.82rem !important;
}

/* Sleek Capsule Indicators */
.custom-indicators {
    bottom: 70px !important; /* Raised to be above the caption on desktop */
    margin-bottom: 0 !important;
    z-index: 10;
}

.custom-indicators button {
    width: 20px !important;
    height: 6px !important;
    border-radius: 3px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
}

.custom-indicators button.active {
    width: 40px !important;
    background-color: var(--pro-blue) !important;
}

/* Semi-transparent Circular Control Buttons */
.premium-control {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 16px;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
}

.hero-carousel-wrapper:hover .premium-control {
    opacity: 0.95 !important;
}

.premium-control:hover {
    background: var(--pro-blue) !important;
    box-shadow: 0 8px 20px rgba(63, 117, 196, 0.4) !important;
}

@media (max-width: 991.98px) {
    .hero-carousel-wrapper {
        border-radius: 0px !important;
        box-shadow: none !important;
    }
    .hero-carousel-wrapper .carousel-inner {
        border-radius: 0px !important;
    }
    .premium-caption {
        padding: 12px 16px !important;
    }
    .custom-indicators {
        bottom: 50px !important;
    }
}

/* High-End Feature Cards & Interactive Icons styling */
.feature-card-pro {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 44px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}

.feature-card-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(63, 117, 196, 0.25) !important;
    box-shadow: 0 30px 60px -15px rgba(63, 117, 196, 0.08) !important;
}

.icon-box-pro {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--pro-blue);
    background: linear-gradient(135deg, rgba(63, 117, 196, 0.08) 0%, rgba(63, 117, 196, 0.02) 100%);
    margin-bottom: 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(63, 117, 196, 0.05);
}

.feature-card-pro:hover .icon-box-pro {
    background: linear-gradient(135deg, var(--pro-blue) 0%, var(--pro-blue-dark) 100%) !important;
    color: #ffffff !important;
    transform: rotate(6deg) scale(1.08);
    box-shadow: 0 10px 25px rgba(63, 117, 196, 0.25) !important;
    border-color: transparent !important;
}

.bg-soft-primary {
    background: rgba(63, 117, 196, 0.07) !important;
    color: var(--pro-blue) !important;
}

/* Premium Feature Illustration Wrapper & Hover Styling */
.feature-illustration-pro {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0.005) 100%);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.05);
    transition: all 0.4s ease;
}

.feature-illustration-pro img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-pro:hover .feature-illustration-pro {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.01) 100%);
    border-color: rgba(59, 130, 246, 0.15) !important;
}

.feature-card-pro:hover .feature-illustration-pro img {
    transform: scale(1.06) translateY(-2px);
}

/* --- High-End Scroll Reveal Animations (Framer Motion Spring Equivalent) --- */
.reveal-el {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-el.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay Helpers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* --- Gorgeous Business Grid Pill Tags --- */
.biz-pill {
    background: #ffffff;
    border: 1.5px solid var(--slate-200);
    color: var(--slate-700);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.biz-pill:hover {
    background: var(--pro-blue-light);
    border-color: var(--pro-blue);
    color: var(--pro-blue);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
}

/* --- Premium Comparison Table --- */
.table-pro-wrapper {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.03);
}

.table-pro {
    margin-bottom: 0 !important;
}

.table-pro th {
    background: var(--pro-blue-light) !important;
    color: var(--pro-blue) !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 18px 24px !important;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1) !important;
}

.table-pro td {
    padding: 18px 24px !important;
    font-size: 0.95rem;
    color: var(--slate-600);
    border-bottom: 1px solid var(--slate-100) !important;
    vertical-align: middle;
}

.table-pro tr:last-child td {
    border-bottom: none !important;
}

.table-pro tr:hover td {
    background: rgba(248, 250, 252, 0.6) !important;
    color: var(--slate-900);
}

/* --- FAQ Interactive Cards --- */
.faq-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-header-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 28px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header-btn:focus {
    outline: none;
}

.faq-header-btn .faq-icon {
    font-size: 1.25rem;
    color: var(--pro-blue);
    transition: transform 0.3s ease;
}

.faq-header-btn[aria-expanded="true"] {
    color: var(--pro-blue);
}

.faq-header-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 28px 22px 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-600);
}

.faq-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.04);
}

/* --- High-End Aligned Comparison Cards --- */
.comparison-card-left {
    background: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.01);
    transition: all 0.3s ease;
}

.comparison-card-right {
    background: linear-gradient(135deg, #091a36 0%, #112d5d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(9, 26, 54, 0.12);
    transition: all 0.3s ease;
}

.comparison-card-left:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.05);
}

.comparison-card-right:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(9, 26, 54, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.comp-item {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.05);
    min-height: 90px;
}

.comp-item-dark {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 90px;
}

.comp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comp-item-dark:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comp-icon-box-red {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.comp-icon-box-green {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* --- Premium Background Plates for Line-Art and Mockups --- */
.hero-carousel-bg {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 32px;
    padding: 20px;
    box-shadow: inset 0 0 40px rgba(59, 130, 246, 0.02), 0 25px 60px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-showcase-bg {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06) 0%, rgba(248, 250, 252, 0.4) 100%);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 28px;
    padding: 30px;
    box-shadow: inset 0 0 35px rgba(59, 130, 246, 0.01), 0 20px 40px rgba(0, 0, 0, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-showcase-bg:hover {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.09) 0%, rgba(248, 250, 252, 0.7) 100%);
    border-color: rgba(59, 130, 246, 0.18);
    transform: scale(1.02);
    box-shadow: inset 0 0 35px rgba(59, 130, 246, 0.03), 0 25px 45px rgba(59, 130, 246, 0.04);
}

.feature-showcase-bg::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.feature-showcase-bg img {
    position: relative;
    z-index: 1;
}

.capabilities-plate-bg {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.04) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.01);
    min-height: 200px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-card-pro:hover .capabilities-plate-bg {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-color: rgba(59, 130, 246, 0.18);
}

.capabilities-plate-bg::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.capabilities-plate-bg img {
    position: relative;
    z-index: 1;
}

/* --- Improvised Horizontal Transformation Grid --- */
.transformation-row-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgb(15 23 42 / 23%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.transformation-row-card:hover {
    transform: translateY(-4px) scale(1.005);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.05);
}

.transformation-row-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ef4444;
    transition: all 0.4s ease;
}

.transformation-row-card:hover::after {
    background: #22c55e;
    height: 100%;
}

.struggle-pane {
    padding-right: 30px;
    border-right: 1px dashed rgba(15, 23, 42, 0.08);
}

.solution-pane {
    padding-left: 30px;
}

.connector-pane {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.transformation-pill {
    background: rgba(59, 130, 246, 0.07);
    color: var(--pro-blue);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.transformation-row-card:hover .transformation-pill {
    background: var(--pro-blue);
    color: #ffffff;
    transform: rotate(360deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.pane-badge-red {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.pane-badge-green {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.02);
}

@media (max-width: 767.98px) {
    .transformation-row-card {
        padding: 24px;
    }
    .struggle-pane {
        border-right: none;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .solution-pane {
        padding-left: 0;
        margin-top: 15px;
        border-top: 1px dashed rgba(15, 23, 42, 0.08);
        padding-top: 20px;
    }
    .transformation-pill {
        transform: rotate(90deg);
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .transformation-row-card:hover .transformation-pill {
        transform: rotate(450deg);
    }
}

/* --- Parallax Matchup Comparison Section --- */
.matchup-parallax-section {
    position: relative;
    background-color: #050a15;
    background-image: 
        linear-gradient(rgba(11, 19, 41, 0.82), rgba(11, 19, 41, 0.86)),
        url('../img/matchup_parallax_bg.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

/* Glassmorphic Table Container */
.matchup-parallax-section .table-pro-wrapper {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.matchup-parallax-section .table-pro {
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
    margin-bottom: 0;
}

.matchup-parallax-section .table-pro thead,
.matchup-parallax-section .table-pro tbody,
.matchup-parallax-section .table-pro tr,
.matchup-parallax-section .table-pro th,
.matchup-parallax-section .table-pro td {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.matchup-parallax-section .table-pro th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.12) !important;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.matchup-parallax-section .table-pro td {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-size: 0.95rem;
}

.matchup-parallax-section .table-pro tr:last-child td {
    border-bottom: none !important;
}

/* Glow styling for ProfitTrack advantages inside dark table */
.matchup-advantage-text {
    font-weight: 700;
    color: #38bdf8 !important;
}

.matchup-advantage-text i {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.matchup-traditional-text {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Disable Hover Highlights Completely */
.matchup-parallax-section .table-pro tr:hover,
.matchup-parallax-section .table-pro tr:hover td,
.matchup-parallax-section .table-pro tr:hover th,
.matchup-parallax-section .table-pro tbody tr:hover td,
.matchup-parallax-section .table-pro tbody tr:hover th {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* --- High-End Customer Testimonials Section --- */
.testimonial-card-pro {
    background: #ffffff;
    border: 1.5px solid var(--slate-200);
    border-radius: 28px;
    padding: 38px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.22) !important;
    box-shadow: 0 30px 60px -10px rgba(59, 130, 246, 0.08) !important;
}

.testimonial-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    z-index: 1;
}

.testimonial-avatar-bg-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    filter: blur(8px);
    z-index: -1;
    transition: transform 0.4s ease;
}

.testimonial-card-pro:hover .testimonial-avatar-bg-glow {
    transform: scale(1.25);
}

.testimonial-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    object-fit: cover;
    background: #f8fafc;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-stars i {
    font-size: 0.95rem;
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--slate-600);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 24px;
}

.testimonial-author-name {
    font-weight: 800;
    color: var(--slate-900);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.testimonial-role-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- 9 Value Prop Bento Grid --- */
.value-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991.98px) {
    .value-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .value-grid-pro {
        grid-template-columns: 1fr;
    }
}

.value-prop-card {
    background: #ffffff;
    border: 1.5px solid var(--slate-200);
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.value-prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

/* Custom glow borders and icons */
.value-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

/* 9 different curated color schemes */
.val-easy { color: #3b82f6; background: rgba(59, 130, 246, 0.08); }
.val-easy-card:hover { border-color: rgba(59, 130, 246, 0.3) !important; }

.val-beginner { color: #6366f1; background: rgba(99, 102, 241, 0.08); }
.val-beginner-card:hover { border-color: rgba(99, 102, 241, 0.3) !important; }

.val-no-skills { color: #8b5cf6; background: rgba(139, 92, 246, 0.08); }
.val-no-skills-card:hover { border-color: rgba(139, 92, 246, 0.3) !important; }

.val-secure { color: #0d9488; background: rgba(13, 148, 136, 0.08); }
.val-secure-card:hover { border-color: rgba(13, 148, 136, 0.3) !important; }

.val-reports { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.val-reports-card:hover { border-color: rgba(16, 185, 129, 0.3) !important; }

.val-mobile { color: #06b6d4; background: rgba(6, 182, 212, 0.08); }
.val-mobile-card:hover { border-color: rgba(6, 182, 212, 0.3) !important; }

.val-price { color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.val-price-card:hover { border-color: rgba(245, 158, 11, 0.3) !important; }

.val-india { color: #f43f5e; background: rgba(244, 63, 94, 0.08); }
.val-india-card:hover { border-color: rgba(244, 63, 94, 0.3) !important; }

.val-fast { color: #0ea5e9; background: rgba(14, 165, 233, 0.08); }
.val-fast-card:hover { border-color: rgba(14, 165, 233, 0.3) !important; }

.value-title {
    font-weight: 800;
    color: var(--slate-900);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Custom Section Segregation Backgrounds */
.bg-pro-soft {
    background-color: #e2e7ec !important; /* Premium subtle slate background (#e2e7ec) */
}

/* Trial Month Action Button (Primary default, Hover light) */
.btn-pro-trial {
    background-color: var(--pro-blue) !important;
    color: var(--white) !important;
    border: 2px solid var(--pro-blue) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
}

.btn-pro-trial:hover {
    background-color: var(--pro-blue-light) !important;
    color: var(--pro-blue) !important;
    border-color: var(--pro-blue) !important;
    box-shadow: 0 8px 25px rgba(63, 117, 196, 0.15) !important;
    transform: translateY(-2px);
}


