/* Below-fold styles — loaded asynchronously */
        /* Trusted By */
        .trust-section {
            padding: 4rem 2rem;
            background: var(--surface-dim);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .trust-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .trust-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .trust-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            opacity: 0.5;
            transition: opacity 0.2s;
        }

        .trust-logo:hover {
            opacity: 1;
        }

        .trust-rating {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            display: flex;
            gap: 0.125rem;
        }

        .stars svg {
            width: 20px;
            height: 20px;
            fill: #facc15;
        }

        .rating-text {
            font-weight: 600;
            color: var(--text);
            margin-left: 0.5rem;
        }

        .rating-count {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-label {
            font-size: 0.875rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .feature-desc {
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top right, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
        }

        .how-it-works .section-container {
            position: relative;
            z-index: 1;
        }

        .how-it-works .section-label {
            color: var(--accent-light);
        }

        .how-it-works .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .step-desc {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Comparison Section */
        .comparison {
            padding: 6rem 2rem;
        }

        .comparison-table-wrapper {
            overflow-x: auto;
            margin-bottom: 3rem;
        }

        .comparison-table {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-collapse: collapse;
            background: var(--surface);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
        }

        .comparison-table thead {
            background: var(--surface-dim);
        }

        .comparison-table th {
            padding: 1.5rem 1rem;
            text-align: center;
            font-weight: 600;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th:first-child {
            width: 200px;
        }

        .col-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .col-header.human {
            color: var(--text-muted);
        }

        .col-header.ai {
            color: var(--accent);
        }

        .col-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .col-header.human .col-icon {
            background: rgba(107, 114, 128, 0.1);
        }

        .col-header.ai .col-icon {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
        }

        .col-icon svg {
            width: 24px;
            height: 24px;
        }

        .col-header span {
            font-size: 1.1rem;
        }

        .col-price {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .col-price small {
            font-size: 0.8rem;
            font-weight: 500;
            opacity: 0.7;
        }

        .col-header.human .col-price {
            color: #ef4444;
        }

        .col-header.ai .col-price {
            color: var(--accent);
        }

        .col-savings {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--accent);
            margin-top: 0.25rem;
        }

        .comparison-table td {
            padding: 1.25rem 1rem;
            text-align: center;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }

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

        .comparison-table tbody tr:hover {
            background: var(--surface-dim);
        }

        .feature-name {
            text-align: left !important;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text);
        }

        .feature-name svg {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .human-col {
            background: rgba(239, 68, 68, 0.02);
        }

        .ai-col {
            background: rgba(79, 70, 229, 0.02);
        }

        .value-bad {
            display: block;
            color: #ef4444;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .value-good {
            display: block;
            color: var(--accent);
            font-weight: 600;
            font-size: 1.05rem;
        }

        .detail {
            display: block;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .comparison-cta {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--surface-dim), rgba(79, 70, 229, 0.05));
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .comparison-cta-content {
            flex: 1;
            min-width: 280px;
        }

        .savings-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .comparison-cta h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .comparison-cta p {
            color: var(--text-muted);
        }

        .comparison-cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            border: 2px solid var(--accent);
            background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, transparent 100%);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .pricing-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .pricing-period {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: var(--surface-dim);
            border: 1px solid var(--border);
            color: var(--text);
        }

        .pricing-card:not(.featured) .pricing-cta:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            color: white;
        }

        .pricing-card.featured .pricing-cta:hover {
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
        }

        /* Testimonials Carousel */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--surface-dim);
        }

        .testimonials-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-carousel {
            display: flex;
            gap: 1.5rem;
            overflow: hidden;
            scroll-behavior: smooth;
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 1rem);
            min-width: calc(33.333% - 1rem);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            transition: transform 0.3s;
        }

        .testimonial-stars {
            display: flex;
            gap: 0.125rem;
            margin-bottom: 1rem;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: #facc15;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--border);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--surface);
            border: 2px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .carousel-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .carousel-btn svg {
            width: 24px;
            height: 24px;
        }

        .carousel-dots {
            display: flex;
            gap: 0.5rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }

        .carousel-dot.active {
            background: var(--accent);
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 0.75rem);
                min-width: calc(50% - 0.75rem);
            }
        }

        @media (max-width: 640px) {
            .testimonial-card {
                flex: 0 0 100%;
                min-width: 100%;
            }
        }

        /* CTA Section */

        /* Team Section */
        .team-section {
            padding: 6rem 2rem;
            background: var(--surface-dim);
        }

        .team-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--surface);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-member:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .team-photo {
            width: 140px;
            height: 140px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--border);
            background: #f0f0f0;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 25%;
        }

        .team-member h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-role {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 1rem;
        }

        .team-member p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .team-social a {
            width: 36px;
            height: 36px;
            background: var(--surface-dim);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all 0.2s;
        }

        .team-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .team-social svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* CTA Section Styles */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 32px;
            padding: 4rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
        }

        .cta-box * {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(2rem, 5vw, 2.75rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background: white;
            color: var(--accent);
            padding: 1rem 2.5rem;
            border-radius: 100px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 2rem 2rem 1.25rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-column h4 {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 0.25rem 0;
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-left p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-family {
            margin-top: 0.5rem !important;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .footer-family a {
            color: var(--accent-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .footer-family a:hover {
            color: white;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

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

        .footer-social a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }





        /* Chat Widget Preview */
        .chat-widget {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 99;
        }

        .chat-bubble {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(79, 70, 229, 0.5);
        }

        .chat-bubble svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .chat-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 20px;
            height: 20px;
            background: #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            border: 2px solid white;
        }

        /* Animations */

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn svg {
            width: 28px;
            height: 28px;
            color: var(--text);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 2000;
            padding: 2rem;
            flex-direction: column;
            pointer-events: auto;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav-close svg {
            width: 28px;
            height: 28px;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-links a {
            padding: 1rem;
            font-size: 1.1rem;
            color: var(--text);
            text-decoration: none;
            border-radius: 12px;
            transition: background 0.2s;
        }

        .mobile-nav-links a:hover {
            background: var(--surface-dim);
        }

        .mobile-nav-cta {
            margin-top: auto;
            background: var(--primary);
            color: white !important;
            text-align: center;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .comparison-table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: contain;
                margin: 0;
                padding: 0 0 0.35rem;
            }

            .comparison-table {
                min-width: 700px;
                width: 100%;
                max-width: none;
                margin: 0;
            }
        }

            .trust-logos {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .trust-logo {
                font-size: 1rem;
            }

            .section-container {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .comparison {
                padding: 3rem 0.75rem;
            }

            .comparison-table-wrapper {
                margin: 0;
                padding: 0 0 0.35rem;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: contain;
                position: relative;
                border-radius: 16px;
            }

            .comparison-table {
                width: 146%;
                min-width: 146%;
                max-width: none;
                table-layout: fixed;
                border-radius: 16px;
            }

            .comparison-table th:first-child,
            .comparison-table td:first-child {
                width: 24%;
                min-width: 24%;
            }

            .comparison-table th:nth-child(2),
            .comparison-table td:nth-child(2) {
                width: 38%;
                min-width: 38%;
            }

            .comparison-table th:nth-child(3),
            .comparison-table td:nth-child(3) {
                width: 38%;
                min-width: 38%;
            }

            .comparison-table td {
                padding: 0.62rem 0.4rem;
                font-size: 0.84rem;
                word-break: normal;
                overflow-wrap: break-word;
                hyphens: manual;
            }

            .comparison-table th {
                padding: 0.74rem 0.4rem;
                font-size: 0.82rem;
            }

            .value-bad,
            .value-good {
                font-size: 0.9rem;
                line-height: 1.2;
                white-space: nowrap;
            }

            .detail {
                display: block;
                margin-top: 0.2rem;
                font-size: 0.7rem;
                line-height: 1.25;
            }

            .col-header {
                gap: 0.35rem;
            }

            .col-icon {
                width: 30px;
                height: 30px;
                border-radius: 8px;
            }

            .col-icon svg {
                width: 16px;
                height: 16px;
            }

            .col-header span {
                font-size: 0.78rem;
                line-height: 1.15;
            }

            .col-price {
                font-size: 0.92rem;
            }

            .col-price small {
                font-size: 0.62rem;
            }

            .feature-name {
                font-size: 0.8rem;
                gap: 0.45rem;
                line-height: 1.25;
            }

            .feature-name svg {
                width: 14px;
                height: 14px;
            }

            .comparison-cta {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .comparison-cta-buttons {
                width: 100%;
            }

            .comparison-cta-buttons .btn-primary,
            .comparison-cta-buttons .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .pricing {
                padding: 3rem 1rem;
            }

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

            .testimonials {
                padding: 3rem 1rem;
            }

            .testimonial-card {
                flex: 0 0 calc(100% - 1rem);
                min-width: calc(100% - 1rem);
            }

            .carousel-nav {
                margin-top: 1rem;
            }

            .team-section {
                padding: 3rem 1rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 3rem 1rem;
            }

            .cta-box {
                padding: 2.5rem 1.5rem;
                border-radius: 20px;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .chat-widget {
                bottom: 16px;
                right: 16px;
            }

            .chat-bubble {
                width: 54px;
                height: 54px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .comparison {
                padding: 2rem 0.5rem;
            }

            .comparison-table-wrapper {
                padding: 0 0 0.3rem;
            }

            .comparison-table {
                width: 148%;
                min-width: 148%;
                border-radius: 14px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.5rem 0.32rem;
                font-size: 0.76rem;
            }

            .col-icon {
                width: 24px;
                height: 24px;
                border-radius: 6px;
            }

            .col-icon svg {
                width: 13px;
                height: 13px;
            }

            .col-header span {
                font-size: 0.7rem;
            }

            .col-price {
                font-size: 0.82rem;
            }

            .col-price small {
                font-size: 0.56rem;
            }

            .value-bad,
            .value-good {
                font-size: 0.8rem;
            }

            .feature-name {
                font-size: 0.74rem;
                gap: 0.35rem;
            }

            .feature-name svg {
                width: 12px;
                height: 12px;
                display: none;
            }

            .feature-name {
                gap: 0;
            }

            .detail {
                font-size: 0.62rem;
            }
        }

        @media (max-width: 360px) {
            .comparison {
                padding: 1.5rem 0.35rem;
            }

            .comparison-table {
                width: 152%;
                min-width: 152%;
                border-radius: 12px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.46rem 0.28rem;
                font-size: 0.7rem;
            }

            .col-header span {
                font-size: 0.64rem;
            }

            .col-price {
                font-size: 0.74rem;
            }

            .col-price small {
                font-size: 0.52rem;
            }

            .feature-name svg {
                display: none;
            }

            .feature-name {
                gap: 0;
            }

            .value-bad,
            .value-good {
                font-size: 0.72rem;
            }

            .detail {
                font-size: 0.58rem;
            }
        }

        /* Language Popup */
        .footer-lang-section {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 1.5rem;
        }

        .lang-trigger {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .lang-trigger:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .lang-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .lang-popup-overlay.active {
            display: flex !important;
        }

        .lang-popup {
            background: white;
            border-radius: 24px;
            padding: 1.5rem;
            max-width: 1240px;
            width: calc(100vw - 64px);
            max-height: calc(100vh - 64px);
            overflow: visible;
            box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
        }

        .lang-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .lang-popup-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        .lang-popup-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6b7280;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .lang-popup-close:hover {
            background: #f3f4f6;
            color: #1a1a1a;
        }

        .lang-popup .lang-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .lang-popup .lang-grid a {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.65rem;
            min-height: 58px;
            padding: 0.8rem 0.9rem;
            border-radius: 12px;
            text-decoration: none;
            color: #374151;
            transition: all 0.2s;
            border: 2px solid transparent;
            background: #f9fafb;
            line-height: 1.15;
        }

        .lang-popup .lang-grid a:hover {
            background: #f3f4f6;
            border-color: #cbd5e1;
        }

        .lang-popup .lang-grid a.active {
            background: #eff6ff;
            border-color: #3b82f6;
            color: #1d4ed8;
        }

        .lang-code {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #9ca3af;
            letter-spacing: 0.05em;
        }

        .lang-popup .lang-grid a.active .lang-code {
            color: #60a5fa;
        }

        .lang-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: inherit;
            overflow-wrap: anywhere;
        }

        @media (max-width: 1024px) {
            .lang-popup {
                width: calc(100vw - 40px);
                max-height: calc(100vh - 40px);
                overflow-y: auto;
            }

            .lang-popup .lang-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 640px) {
            .lang-popup {
                padding: 1rem;
                width: calc(100vw - 24px);
            }

            .lang-popup .lang-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.55rem;
            }

            .lang-popup .lang-grid a {
                min-height: 52px;
                padding: 0.7rem;
            }
        }

        /* EN Shared Header Menu Popup styles removed — already defined above */

        /* Video Section */
        .video-section {
            padding: 6rem 2rem;
            background: var(--surface);
        }

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

        .video-section .section-header {
            margin-bottom: 3rem;
        }

        .video-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            border: none;
            aspect-ratio: 16 / 9;
            cursor: pointer;
            background: #0a0a0a;
        }

        .video-card img.video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .video-card:hover img.video-thumbnail {
            transform: scale(1.03);
            filter: brightness(0.85);
        }

        .video-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.25);
            transition: background 0.3s ease;
        }

        .video-card:hover .video-play-overlay {
            background: rgba(0, 0, 0, 0.35);
        }

        .play-btn {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(79, 70, 229, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover .play-btn {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(79, 70, 229, 0.6);
        }

        .play-btn svg {
            width: 32px;
            height: 32px;
            color: white;
            margin-left: 4px;
        }

        .video-card iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-caption {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .video-section {
                padding: 3rem 1rem;
            }

            .play-btn {
                width: 60px;
                height: 60px;
            }

            .play-btn svg {
                width: 24px;
                height: 24px;
                margin-left: 3px;
            }

            .video-card {
                border-radius: 12px;
            }
        }

        /* End Video Section */
