/* Reference-Based Design System (Easy Gym Software Style) */
:root {
    /* Royal Blue & Emerald Theme */
    --primary-color: #2563eb; /* Royal Blue */
    --secondary-color: #0f172a; /* Slate / Dark Navy */
    --accent-color: #10b981; /* Emerald Green */
    --text-color: #334155; /* Slate 700 */
    --light-bg: #f8fafc; /* Slate 50 */
    --border-color: #e2e8f0; /* Slate 200 */
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

/* Navbar */
.navbar-glass {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    top: 38px; /* Height of top bar approx */
    width: 100%;
    padding: 12px 0;
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.border-primary {
    border-color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Buttons */
.btn-primary-gradient {
    background-image: linear-gradient(
        to right,
        #2563eb 0%,
        #1d4ed8 51%,
        #2563eb 100%
    );
    background-size: 200% auto;
    border: none;
    color: white;
    transition: 0.5s;
}

.text-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-gradient:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #fdfbfd 0%, #f4f7ff 100%);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px; /* Increased top padding for header clearance */
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-circle-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    border-radius: 50%;
    z-index: 1;
}

.stats-strip {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.stat-item-hybrid {
    text-align: center;
    padding: 10px;
    border-right: 1px solid #eee;
}

.stat-item-hybrid:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Comparison / USP Section */
.usp-section {
    background-color: var(--light-bg);
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: #10b981; /* Emerald Green */
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Testimonials Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 50px 0;
    background: var(--secondary-color);
    color: white;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.testimonial-item {
    display: inline-block;
    margin-right: 50px;
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Premium Split-Grid Footer */
.footer-wrapper {
    background-color: #0f172a;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.footer-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.footer-split-container {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-left-brand {
    flex: 0 0 35%;
    padding: 80px 40px 80px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-right-links {
    flex: 0 0 65%;
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    padding: 80px 20px 80px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 150px;
}

.footer-col:last-child {
    border-right: none;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-nav-title {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-link-premium {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.footer-link-premium:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-box-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    margin-top: 2rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .footer-left-brand,
    .footer-right-links {
        flex: 0 0 100%;
        border-right: none;
        padding: 40px 0;
    }
    .footer-col {
        padding: 20px 0;
        border-right: none;
        flex: 0 0 50%;
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

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

/* Modern Product Page Additions */
.browser-mockup {
    border-radius: 12px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.trusted-strip {
    border-bottom: 1px solid var(--border-color);
    background: #fafbfc;
}

.trusted-logo {
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.benefit-section {
    padding: 80px 0;
}

/* ERP Grid & Testimonials */
.erp-card {
    border: 1px solid var(--border-color);
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.erp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.erp-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--light-bg);
}
/* Premium Comparison Table */
.comparison-section {
    background: #f8fafc;
    padding: 100px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    table-layout: fixed; /* Ensures column widths are respected */
}

.comparison-table th {
    padding: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.comparison-table td {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    font-size: 1rem;
    color: #475569;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Highlighted Column (247 Gym Software) */
.comparison-highlight {
    background: #f0fdf4 !important; /* Very light emerald tint */
    position: relative;
}

.comparison-highlight-header {
    background: var(--primary-color) !important;
    color: white !important;
    border-bottom: none !important;
    position: relative;
    padding-top: 40px !important;
    border-top-left-radius: 12px; /* Inner radius if needed */
    border-top-right-radius: 12px;
}

.comparison-highlight-cell {
    background: #f0fdf4 !important;
    font-weight: 600;
    color: #0f172a !important;
    text-align: center;
}

.comparison-check {
    color: var(--accent-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 4px 6px rgba(16, 185, 129, 0.2));
}

.comparison-cross {
    color: #cbd5e1;
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Premium Business Type Cards */
.business-card-premium {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.business-card-premium:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
}

.business-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.business-card-premium:hover::before {
    opacity: 1;
}

.icon-box-lg {
    width: 90px;
    height: 90px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.business-card-premium:hover .icon-box-lg {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.business-title-premium {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.business-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Features Page Styles */
.feature-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 150px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
    opacity: 0.3;
}

.feature-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block.bg-light {
    background-color: #f8fafc;
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
}

.feature-list i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 5px;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 160px 0 100px; /* Increased top padding to clear fixed header */
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: #fff;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 27px;
    right: -32px;
    background: var(--primary-color);
    color: white;
    width: 150px;
    padding: 8px 0;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    line-height: 1;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.price-period {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #475569;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #cbd5e1;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        #0f172a 100%
    );
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
    opacity: 0.3;
}

.faq-search-box {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
}

.faq-search-input {
    width: 100%;
    padding: 22px 30px 22px 65px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: all 0.3s;
}

.faq-search-input:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-category-nav .nav-pills .nav-link {
    background: white;
    color: #64748b;
    border: 1px solid transparent;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.faq-category-nav .nav-pills .nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.faq-category-nav .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.accordion-item {
    border: none;
    border-radius: 16px !important;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    background: white;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ffff;
    color: var(--primary-color);
    box-shadow: inset 0 -1px 0 var(--border-color) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-body {
    padding: 30px;
    color: #475569;
    line-height: 1.8;
    background: #fff;
    border-top: none;
}

.contact-support-box {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-circle-bg {
        width: 100%;
        height: 400px;
        top: 0;
        right: 0;
        opacity: 0.5;
    }

    .stats-strip {
        margin-top: 0;
        padding: 30px;
        text-align: center;
    }

    .stat-item-hybrid {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }

    .stat-item-hybrid:last-child {
        border-bottom: none;
    }

    .comparison-highlight-header {
        padding-top: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .role-text {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .faq-hero {
        padding: 140px 0 60px;
    }

    .faq-search-input {
        padding: 15px 20px 15px 50px;
    }

    .faq-search-icon {
        left: 20px;
    }

    .footer-split-container {
        flex-direction: column;
    }

    .footer-left-brand,
    .footer-right-links {
        padding: 40px 20px;
        border: none;
    }

    .footer-col {
        padding: 20px 0;
        flex: 0 0 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Offcanvas Mobile Menu Simple Style */
    .offcanvas {
        max-width: 85%;
        border-right: none;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    }

    .offcanvas-header {
        padding: 20px 25px;
        border-bottom: 1px solid #eee;
    }

    .offcanvas-body {
        padding: 0;
    }

    .nav-link {
        color: #334155;
        font-size: 1rem;
    }

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

    /* Active Link State */
    .nav-link.active {
        color: var(--primary-color) !important;
        background-color: transparent;
        font-weight: 700;
    }

    /* Accordion Styles */
    .nav-link[data-bs-toggle="collapse"]::after {
        display: none;
    }

    /* Expanded State (Blue Background) */
    .nav-link[aria-expanded="true"] {
        background-color: #eff6ff;
        color: var(--primary-color) !important;
    }

    .nav-link i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .nav-link[aria-expanded="true"] i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Sub-menu Styles */
    #featuresCollapse .dropdown-item {
        color: #475569;
        font-weight: 500;
        font-size: 0.95rem;
    }

    #featuresCollapse .dropdown-item:hover {
        background: #f8fafc;
        color: var(--primary-color);
    }

    #featuresCollapse .dropdown-item i.fa-chevron-right {
        background: #f1f5f9;
        color: #94a3b8;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* Mobile CTA Button */
    .btn-primary-gradient {
        box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    }

    /* Hide Top Bar Adjustments */
    .navbar-glass {
        top: 0;
    }
}
