/* Section Styling */
          :root {
            /* --primary-color: #7c4dff;
            --secondary-color: #00bcd4;
            --accent-color: #ff6b35; */
            --gradient-2: linear-gradient(135deg, #7c4dff 0%, #00bcd4 100%);
        }
    
        .section {
            padding: 4rem 0;
        }
        
        .section-alt {
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        }
        
        .section-dark {
            background: var(--bs-container-dark-bg);
            color: #fff;
        }
        
        .section-title {
            color: var(--bs-heading-color);
            font-weight: 700;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .section-title .icon {
            width: 48px;
            height: 48px;
            background: var(--bs-container-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .section-title .icon svg {
            width: 24px;
            height: 24px;
            color: var(--bs-container-dark-bg);
        }
        
        /* Product Cards */
        .product-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
            border: 1px solid rgba(0, 51, 102, 0.06);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 51, 102, 0.12);
        }
        
        .product-card .card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--bs-container-bg) 0%, rgba(164, 200, 225, 0.5) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        
        .product-card .card-icon svg {
            width: 28px;
            height: 28px;
            color: var(--bs-container-dark-bg);
        }
        
        .product-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--bs-heading-color);
            margin-bottom: 0.75rem;
        }
        
        .product-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }


        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #003366;
            backdrop-filter: blur(10px);
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            /* padding: 40px 30px; */
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-card img {

            width: auto;
            object-fit: cover;
            max-width: 100%;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .highlight-feature {
            color: #00d4ff;
            font-weight: 600;
        }

        .feature-card .btn-outline-warning {
            position: relative;
            z-index: 2;
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: transparent;
            font-weight: 600;
            padding: 0.625rem 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card .btn-outline-warning:hover {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border-color: var(--accent-gold);
        }

        
        /* Feature List */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 51, 102, 0.06);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list .check-icon {
            width: 20px;
            height: 20px;
            background: var(--bs-hover-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .feature-list .check-icon svg {
            width: 12px;
            height: 12px;
            color: #fff;
        }
        
        /* Insight Box */
        .insight-box {
            background: linear-gradient(135deg, rgba(164, 200, 225, 0.15) 0%, rgba(164, 200, 225, 0.05) 100%);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--bs-hover-color);
        }
        
        .insight-box .insight-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--bs-hover-color);
            margin-bottom: 0.5rem;
        }
        
        .insight-box p {
            margin-bottom: 0;
            color: var(--bs-heading-color);
            line-height: 1.7;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 51, 102, 0.06);
        }
        
        .stat-item .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--bs-hover-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-item .stat-label {
            font-size: 0.85rem;
            color: #64748b;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
        }
        
        .comparison-table thead {
            background: var(--bs-container-dark-bg);
        }
        
        .comparison-table thead th {
            color: #fff;
            font-weight: 600;
            padding: 1rem 1.25rem;
            text-align: left;
            font-size: 0.9rem;
        }
        
        .comparison-table tbody tr {
            background: #fff;
            transition: background 0.2s ease;
        }
        
        .comparison-table tbody tr:hover {
            background: rgba(164, 200, 225, 0.08);
        }
        
        .comparison-table tbody td {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid rgba(0, 51, 102, 0.06);
            font-size: 0.95rem;
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        /* CTA Card */
        .cta-card {
            background: var(--bs-container-dark-bg);
            border-radius: 16px;
            padding: 2rem;
            color: #fff;
            margin: 1.5rem 0;
        }
        
        .cta-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .cta-card a {
            color: var(--bs-container-bg);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.2s ease;
        }
        
        .cta-card a:hover {
            gap: 0.75rem;
            color: #fff;
        }
        
        /* FAQ Accordion */
        .faq-section {
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
            padding: 4rem 0;
        }
        
        .faq-accordion .accordion-item {
            background: #fff;
            border: 1px solid rgba(0, 51, 102, 0.08);
            border-radius: 12px !important;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        
        .faq-accordion .accordion-button {
            background: #fff;
            color: var(--bs-heading-color);
            font-weight: 600;
            font-size: 1rem;
            padding: 1.25rem 1.5rem;
            border: none;
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(164, 200, 225, 0.1);
            color: var(--bs-hover-color);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
        }
        
        .faq-accordion .accordion-body {
            padding: 0 1.5rem 1.5rem;
            line-height: 1.8;
            color: #64748b;
        }
        
        /* Image Card */
        .image-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 51, 102, 0.12);
        }
        
        .image-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bs-container-dark-bg) 0%, #001a4d 100%);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(164, 200, 225, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            position: relative;
        }

         
        /* How to Choose Section */
        .how-to-choose {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

        .step-card {
            background: #ffffff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--bs-hover-color);
            color: #fff;
            position: absolute;
            top: -12px;
            right: 24px;
        }

        .step-icon {
            color: var(--bs-hover-color);
        }

        .channel-dot {
            width: 8px;
            height: 8px;
            background: var(--bs-hover-color);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .channel-list li {
            color: #4b5563;
            font-size: 0.95rem;
        }

        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.875rem;
            }
            
            .hero-section {
                padding: 3rem 0;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }