section {
            padding: 5rem 0;
        }

        .hero-section {
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            margin-bottom: 2rem;
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .feature-table {
            background: var(--dark-light);
            position: relative;
        }

        .feature-table::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        .feature-table h2 {
            margin-bottom: 2rem;
        }

        .feature-table p {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .feature-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(26, 31, 58, 0.6);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .feature-table thead {
            background: var(--gradient-primary);
        }

        .feature-table th {
            padding: 1.5rem;
            text-align: left;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-table td {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            color: var(--text-muted);
        }

        .feature-table td strong {
            color: var(--text);
            font-weight: 600;
        }

        .feature-table tbody tr {
            transition: all 0.3s ease;
        }

        .feature-table tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

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

        .timeline {
            position: relative;
        }

        .timeline h3 {
            margin-top: 3rem;
            margin-bottom: 2rem;
        }

        .timeline-item {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 16px;
            height: 16px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 24px;
            width: 2px;
            height: calc(100% + 2rem);
            background: linear-gradient(180deg, var(--secondary), transparent);
        }

        .timeline-item:last-of-type::after {
            display: none;
        }

        .timeline-content {
            background: rgba(26, 31, 58, 0.4);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 3px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            background: rgba(26, 31, 58, 0.6);
            transform: translateX(8px);
        }

        .timeline img {
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            margin: 2rem auto;
        }

        .numbered-list ol {
            counter-reset: custom-counter;
            list-style: none;
            padding: 0;
        }

        .numbered-list li {
            counter-increment: custom-counter;
            position: relative;
            padding-left: 4rem;
            margin-bottom: 2rem;
            background: rgba(26, 31, 58, 0.4);
            padding: 2rem 2rem 2rem 5rem;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .numbered-list li::before {
            content: counter(custom-counter);
            position: absolute;
            left: 2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .numbered-list li:hover {
            background: rgba(26, 31, 58, 0.6);
            transform: translateX(8px);
        }

        .numbered-list img {
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            margin: 2rem auto;
        }

        .cards-grid-3 .card {
            margin-bottom: 2rem;
            height: 100%;
        }

        .cards-grid-3 img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
        }

        .cards-grid-3 .card:hover img {
            transform: scale(1.05);
        }

        .cards-grid-3 h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }

        .cards-grid-3 p {
            font-size: 1rem;
        }

        .comparison-table {
            background: var(--dark-medium);
        }

        .comparison-table h3 {
            margin-top: 3rem;
        }

        .comparison-table img {
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            margin: 2rem auto;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(26, 31, 58, 0.6);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin: 2rem 0;
        }

        .comparison-table thead {
            background: var(--gradient-secondary);
        }

        .comparison-table th {
            padding: 1.2rem;
            text-align: left;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table td {
            padding: 1.2rem;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

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

        .accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--dark-light);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-sm);
        }

        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.8rem 2rem;
            cursor: pointer;
            user-select: none;
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
            color: var(--text);
            transition: color 0.3s ease;
        }

        .accordion-header:hover h3 {
            color: var(--secondary);
        }

        .accordion-header button {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 2px solid var(--secondary);
            background: transparent;
            color: var(--secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .accordion-header button::before {
            content: '+';
        }

        .accordion-header button[aria-expanded="true"] {
            background: var(--secondary);
            color: var(--dark);
            transform: rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            padding: 0;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 2rem 2rem;
        }

        .accordion-body p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin: 0;
        }

        @media (max-width: 767px) {
            section {
                padding: 3rem 0;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .container {
                max-width: 100%;
                width: 100%;
                padding: 0 15px;
            }

            img, video, iframe {
                max-width: 100%;
                height: auto;
            }

            .row {
                margin-left: 0;
                margin-right: 0;
            }

            [class*="col-"] {
                padding-left: 10px;
                padding-right: 10px;
            }

            .card {
                max-width: 100%;
                overflow-x: hidden;
            }

            .hero-section {
                padding: 5rem 0 3rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            .feature-table table,
            .comparison-table table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }

            .feature-table th,
            .feature-table td,
            .comparison-table th,
            .comparison-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .timeline-item {
                padding-left: 2rem;
            }

            .numbered-list li {
                padding: 1.5rem 1.5rem 1.5rem 4rem;
            }

            .numbered-list li::before {
                left: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .accordion-header {
                padding: 1.2rem 1.5rem;
            }

            .accordion-header h3 {
                font-size: 1.1rem;
            }

            .accordion-body.active {
                padding: 0 1.5rem 1.5rem;
            }

            .accordion-body p {
                font-size: 1rem;
            }
        }