/* Features Comparison Styles */
        .features-comparison {
            max-width: 1000px;
            margin: 0 auto;
        }

        .features-intro {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .features-intro p {
            font-size: 1.125rem;
            color: var(--text-dark);
            line-height: 1.7;
            margin: 0;
        }

        .comparison-table-container {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            overflow-x: auto;
            margin-bottom: 2rem;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead th {
            padding: 1.5rem 1rem;
            text-align: center;
            border-bottom: 3px solid var(--border);
        }

        .comparison-table .feature-column {
            text-align: left;
            width: 50%;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .column-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.125rem;
        }

        .free-column .column-header {
            color: var(--text-dark);
        }

        .member-column .column-header {
            color: var(--primary);
        }

        .column-header svg {
            width: 24px;
            height: 24px;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid var(--border);
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table tbody td {
            padding: 1.25rem 1rem;
        }

        .feature-name {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .check-cell,
        .cross-cell {
            text-align: center;
            width: 25%;
        }

        .check-cell svg {
            width: 28px;
            height: 28px;
            color: var(--secondary);
        }

        .member-feature svg {
            color: var(--primary);
        }

        .cross-cell svg {
            width: 24px;
            height: 24px;
            color: var(--text-light);
            opacity: 0.4;
        }

        .divider-row td {
            padding: 0 !important;
        }

        .feature-divider {
            margin: 2rem 0 1rem 0;
            text-align: center;
            position: relative;
        }

        .feature-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .feature-divider span {
            position: relative;
            background: var(--bg-white);
            padding: 0 1.5rem;
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* CTA Section */
        .features-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            padding: 3rem 2rem;
            box-shadow: var(--shadow-lg);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-bottom: 1.5rem;
        }

        .cta-icon svg {
            width: 48px;
            height: 48px;
            color: white;
        }

        .cta-text h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta-text p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-large svg {
            width: 24px;
            height: 24px;
        }

        .features-cta .btn-primary {
            background: white;
            color: var(--primary);
        }

        .features-cta .btn-primary:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .features-cta .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .features-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .comparison-table-container {
                padding: 1rem;
            }

            .comparison-table thead th {
                padding: 1rem 0.5rem;
                font-size: 0.875rem;
            }

            .column-header {
                flex-direction: column;
                gap: 0.25rem;
            }

            .column-header svg {
                width: 20px;
                height: 20px;
            }

            .column-header span {
                font-size: 0.875rem;
            }

            .comparison-table tbody td {
                padding: 1rem 0.5rem;
            }

            .feature-name {
                font-size: 0.875rem;
            }

            .check-cell svg {
                width: 22px;
                height: 22px;
            }

            .cross-cell svg {
                width: 20px;
                height: 20px;
            }

            .feature-divider span {
                font-size: 0.75rem;
                padding: 0 1rem;
            }

            .features-intro p {
                font-size: 1rem;
            }

            .features-cta {
                padding: 2rem 1.5rem;
            }

            .cta-text h2 {
                font-size: 1.5rem;
            }

            .cta-text p {
                font-size: 1rem;
            }

            .cta-actions {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                justify-content: center;
            }
        }