main {
            padding-top: 100px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: radial-gradient(ellipse at top, rgba(0, 217, 255, 0.15) 0%, transparent 60%),
                        radial-gradient(ellipse at bottom right, rgba(255, 0, 107, 0.1) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.8;
            }
        }

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

        .hero-section p {
            font-size: 1.25rem;
            max-width: 900px;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .hero-section .cta-button {
            margin-top: 2rem;
            padding: 18px 48px;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .hero-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .hero-section .cta-button:hover::before {
            left: 100%;
        }

        .hero-section .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 60px rgba(255, 0, 107, 0.5);
        }

        .text-block {
            background: var(--dark-secondary);
            border-radius: 32px;
            padding: 60px;
            margin: 40px 0;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .feature-table {
            width: 100%;
            margin-top: 2rem;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            border-radius: 16px;
        }

        .feature-table tbody tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            transition: background 0.3s ease;
        }

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

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

        .feature-table td {
            padding: 1.25rem;
            color: var(--text-secondary);
        }

        .feature-table td:first-child {
            color: var(--primary);
            font-weight: 600;
        }

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

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            box-shadow: var(--shadow-neon);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 40px;
            width: 2px;
            height: calc(100% - 40px);
            background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
        }

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

        .timeline-item img {
            margin: 20px 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .timeline-item ul {
            list-style: none;
            padding: 0;
        }

        .timeline-item ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .timeline-item ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 12px;
            background: var(--gradient-secondary);
            border-radius: 50%;
        }

        .cards-grid-3 .container > div:not(.container) {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .cards-grid-3 .card h3 {
            margin-top: 0;
        }

        .cards-grid-3 .card ul {
            list-style: none;
            padding: 0;
        }

        .cards-grid-3 .card ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .cards-grid-3 .card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 12px;
            background: var(--gradient-primary);
            border-radius: 50%;
        }

        .feature-list .feature-item {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--dark-secondary);
            border-radius: 24px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s ease;
        }

        .feature-list .feature-item:hover {
            transform: translateX(10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .feature-list .feature-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .feature-list .feature-item ul {
            list-style: none;
            padding: 0;
        }

        .feature-list .feature-item ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .feature-list .feature-item ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 12px;
            background: var(--gradient-accent);
            border-radius: 50%;
        }

        .highlight-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .highlight-box {
            background: var(--dark-secondary);
            border-radius: 24px;
            padding: 2.5rem;
            border-left: 4px solid var(--primary);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .highlight-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-box ul {
            list-style: none;
            padding: 0;
        }

        .highlight-box ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .highlight-box ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 12px;
            background: var(--gradient-secondary);
            border-radius: 50%;
        }

        .comparison-table table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            border-radius: 16px;
            background: var(--dark-secondary);
        }

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

        .comparison-table th {
            padding: 1.25rem;
            font-weight: 700;
            text-align: left;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            transition: background 0.3s ease;
        }

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

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

        .comparison-table td {
            padding: 1.25rem;
            color: var(--text-secondary);
        }

        .comparison-table td:first-child {
            color: var(--primary);
            font-weight: 600;
        }

        .payment-info {
            margin: 2rem 0;
            padding: 2rem;
            background: var(--dark-secondary);
            border-radius: 16px;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .cards-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

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

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            user-select: none;
        }

        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header::after {
            transform: translateY(-50%) rotate(45deg);
        }

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

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

        .cta-section {
            text-align: center;
            padding: 100px 0;
            background: radial-gradient(ellipse at center, rgba(255, 0, 107, 0.15) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 10s ease-in-out infinite;
        }

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

        .cta-section h2 {
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .cta-button {
            font-size: 1.25rem;
            padding: 22px 50px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(255, 0, 107, 0.35);
            display: inline-block;
        }

        .cta-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .cta-section .cta-button:hover::before {
            left: 100%;
        }

        .cta-section .cta-button:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 12px 32px rgba(255, 0, 107, 0.5);
        }

        .cta-section .cta-button:active {
            transform: translateY(0) scale(0.98);
        }

        @media (max-width: 991px) {
            section {
                padding: 60px 0;
            }

            .text-block {
                padding: 40px 30px;
            }

            .feature-list .feature-item {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-list .feature-item img {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 40px 0;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            p {
                font-size: 1rem;
            }

            .hero-section {
                min-height: auto;
                padding: 100px 0 60px;
            }

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

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

            .text-block {
                padding: 30px 20px;
                border-radius: 24px;
            }

            .feature-table td {
                padding: 1rem;
                font-size: 0.9rem;
                display: block;
                border: none;
            }

            .feature-table td:first-child {
                padding-bottom: 0.5rem;
                font-size: 1rem;
            }

            .feature-table tbody tr {
                display: block;
                margin-bottom: 1.5rem;
                padding: 1rem;
                background: rgba(0, 217, 255, 0.05);
                border-radius: 12px;
                border: 1px solid rgba(0, 217, 255, 0.1);
            }

            .timeline-item {
                padding-left: 40px;
            }

            .timeline-item::before {
                width: 30px;
                height: 30px;
            }

            .timeline-item::after {
                left: 14px;
            }

            .cards-grid-3 .container > div:not(.container) {
                grid-template-columns: 1fr;
            }

            .feature-list .feature-item {
                padding: 1.5rem;
            }

            .highlight-boxes {
                grid-template-columns: 1fr;
            }

            .highlight-box {
                padding: 1.5rem;
            }

            .comparison-table {
                overflow-x: visible;
            }

            .comparison-table .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .comparison-table table {
                min-width: 600px;
            }

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

            .payment-info {
                padding: 1.5rem;
            }

            .cards-grid-2 {
                grid-template-columns: 1fr;
            }

            .accordion-header {
                padding: 1.25rem 1.5rem;
                font-size: 1.125rem;
            }

            .accordion-header::after {
                right: 1.5rem;
            }

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

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

            .cta-section {
                padding: 60px 0;
            }

            .cta-section .cta-button {
                width: 100%;
                font-size: 1.125rem;
                padding: 18px 40px;
            }
        }

        @media (max-width: 480px) {
            .btn {
                font-size: 1rem;
                padding: 16px 32px;
            }

            .card {
                padding: 1.5rem;
            }
        }