        :root {
            --primary: #111111;
            /* Stark Black for impact */
            --accent: #2563EB;
            /* Vibrant Blue for touches */
            --text-main: #0a0a0a;
            --text-secondary: #525252;
            --bg-body: #ffffff;
            --bg-alt: #fafafa;
            /* Very subtle grey */
            --border-light: #e5e5e5;
            --radius-lg: 12px;
            /* Sharper, more technical */
            --radius-md: 8px;
            --radius-sm: 4px;
            --container-width: 1140px;
            /* Wider, more expansive */
            --header-height: 70px;
            --ease-tech: cubic-bezier(0.16, 1, 0.3, 1);
            /* Snappy, precise */
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.5;
            overflow-x: hidden;
            font-size: 16px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        h1 {
            font-size: 72px;
            /* Massive impact */
            line-height: 1.0;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        h2 {
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 0.6em;
            font-weight: 700;
        }

        h3 {
            font-size: 24px;
            line-height: 1.3;
            margin-bottom: 0.4em;
            font-weight: 600;
        }

        p {
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-alt {
            background-color: var(--bg-alt);
        }

        /* Buttons */
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            /* Less rounded */
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s var(--ease-tech);
            border: 1px solid transparent;
            letter-spacing: 0.01em;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            background-color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-outline {
            background: transparent;
            border-color: var(--border-light);
            color: var(--text-main);
        }

        .btn-outline:hover {
            border-color: var(--text-main);
            background: transparent;
        }

        .btn-link {
            color: var(--accent);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-link:hover {
            text-decoration: none;
            opacity: 0.8;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 9999;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            font-weight: 600;
            font-size: 19px;
            color: var(--text-main);
            letter-spacing: -0.01em;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .nav-link:hover {
            opacity: 1;
            color: var(--text-main);
        }

        /* Mobile Menu Styles - Premium */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10001;
            padding: 0;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s var(--ease-tech);
            border-radius: 2px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            z-index: 10002;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-close span {
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-close span:nth-child(1) {
            transform: rotate(45deg);
        }

        .mobile-menu-close span:nth-child(2) {
            transform: rotate(-45deg);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-tech);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin: 12px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mobile-nav-link:hover {
            color: var(--accent);
        }

        /* Button Animation State */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 960px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-inner .btn-primary {
                display: none;
                /* Hide CTA on mobile header to save space */
            }
        }

        /* Hero Section */
        .hero {
            padding-top: 140px;
            /* padding-bottom: 100px; */
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .hero-eyebrow {
            color: var(--primary);
            font-weight: 600;
            font-size: 19px;
            margin-bottom: 16px;
            display: block;
        }

        .hero-title {
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            font-size: 64px;
            /* Larger for impact */
        }

        .hero-desc {
            font-size: 24px;
            /* Larger for immersion */
            line-height: 1.4;
            max-width: 660px;
            margin: 0 auto 40px;
            color: var(--text-secondary);
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 80px;
        }

        .hero-visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16 / 9;
            /* Crisp shadow, less diffuse */
            box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
            opacity: 0;
            border: 1px solid rgba(0, 0, 0, 0.05);
            will-change: width, margin-left, border-radius;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
            transition: transform 1s var(--ease-apple);
        }

        .hero-visual-wrapper:hover .hero-img {
            transform: scale(1.02);
        }

        .people-labels {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
            padding: 60px 20px 30px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .people-labels {
                grid-template-columns: repeat(3, 1fr);
                padding: 40px 15px 20px;
                gap: 8px;
            }

            .people-labels .person-label:nth-child(4),
            .people-labels .person-label:nth-child(5) {
                display: none;
            }

            .person-name {
                font-size: 14px;
            }

            .person-role {
                font-size: 11px;
            }
        }

        .person-label {
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transform: translateY(10px);
            opacity: 0;
            animation: fadeUp 0.6s var(--ease-tech) forwards;
        }

        /* Stagger animations for labels */
        .person-label:nth-child(1) {
            animation-delay: 0.6s;
        }

        .person-label:nth-child(2) {
            animation-delay: 0.7s;
        }

        .person-label:nth-child(3) {
            animation-delay: 0.8s;
        }

        .person-label:nth-child(4) {
            animation-delay: 0.9s;
        }

        .person-label:nth-child(5) {
            animation-delay: 1.0s;
        }

        .person-name {
            font-weight: 600;
            font-size: 16px;
            display: block;
            margin-bottom: 4px;
        }

        .person-role {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 400;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Bento Grid Layouts */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .bento-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-light);
            /* Border instead of shadow */
            transition: transform 0.3s var(--ease-tech), border-color 0.3s;
        }

        .bento-card:hover {
            transform: translateY(-4px);
            border-color: #000;
            z-index: 2;
        }

        .bento-card.large {
            grid-column: span 2;
        }

        .bento-card.dark {
            background: var(--text-main);
            color: white;
        }

        .bento-card.dark h3,
        .bento-card.dark p {
            color: white;
        }

        .bento-card.dark p {
            opacity: 0.8;
        }

        .card-icon {
            font-size: 40px;
            margin-bottom: 24px;
        }

        .card-image-wrapper {

            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Products Section */
        .product-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            margin-bottom: 120px;
        }

        .product-showcase.reverse {
            direction: rtl;
        }

        .product-showcase.reverse .product-info {
            direction: ltr;
        }

        .product-image {
            border-radius: var(--radius-lg);
            /* Sharp, technical look */
            border: 1px solid rgba(0, 0, 0, 0.1);
            width: 100%;
            transition: transform 0.5s var(--ease-tech);
        }

        .product-showcase:hover .product-image {
            transform: scale(1.01);
        }

        /* Partner Levels - Apple Compare Style */
        .levels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            text-align: center;
        }

        .level-col {
            padding: 40px 20px;
            border-radius: var(--radius-lg);
            transition: all 0.3s var(--ease-tech);
            border: 1px solid transparent;
        }

        .level-col:hover {
            border-color: var(--text-main);
            background: transparent;
        }

        .level-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .level-price {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .level-features {
            list-style: none;

        }

        .level-features li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 15px;
        }

        /* FAQ Accordion - Clean */
        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .faq-trigger {
            width: 100%;
            text-align: left;
            padding: 24px 0;
            background: none;
            border: none;
            font-size: 19px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-main);
        }

        .faq-content {
            height: 0;
            overflow: hidden;
            transition: height 0.4s var(--ease-tech);
        }

        .faq-inner {
            padding-bottom: 24px;
            color: var(--text-secondary);
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Contact Form - Minimal */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
        }

        .form-field {
            margin-bottom: 20px;
        }

        .input-minimal {
            width: 100%;
            padding: 16px;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .input-minimal:focus {
            outline: none;
            border-color: var(--text-main);
            background: white;
        }

        /* Footer */
        footer {
            background: var(--bg-alt);
            padding: 80px 0 40px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 8px;
        }

        .footer-col a:hover {
            text-decoration: underline;
        }

        /* Animations classes */
        .reveal-text {
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in {
            opacity: 0;
        }

        /* Mobile */
        @media (max-width: 768px) {
            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 32px;
            }

            .section {
                padding: 80px 0;
            }

            .container {
                padding: 0 20px;
            }

            /* Hero Mobile Optimization */
            .hero {
                padding-top: 100px;
            }

            .hero-content {
                margin-bottom: 40px;
            }

            .hero-title {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .hero-desc {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .hero-actions {
                margin-bottom: 40px;
            }

            .hero-actions .btn {
                width: 100%;
                padding: 14px 28px !important;
                font-size: 15px !important;
            }

            .hero-visual-wrapper {
                max-width: 100%;
                border-radius: 12px;
                aspect-ratio: 4 / 3;
            }

            /* Prevent expansion effect on mobile */
            .hero-visual-wrapper {
                will-change: auto !important;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
            }

            .bento-card {
                padding: 30px;
            }

            .bento-card.large {
                grid-column: span 1;
            }

            .product-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .product-showcase.reverse {
                direction: ltr;
            }

            .product-showcase.reverse .product-info {
                direction: ltr;
            }

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

            .nav-menu {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        /* Mission Section Styles */
        .section-dark {
            background-color: #050505;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Subtle grid background for tech feel */
        .section-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.5;
            pointer-events: none;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .mission-content h2 {
            margin-bottom: 24px;
            font-size: 42px;
            color: white;
        }

        .mission-content .lead {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* Toggle Styles */
        .mission-toggle-container {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px;
            border-radius: 99px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mission-toggle-btn {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            padding: 10px 24px;
            border-radius: 99px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s var(--ease-tech);
            font-family: var(--font-heading);
        }

        .mission-toggle-btn.active {
            background: white;
            color: black;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Dynamic Content Area */
        .mission-dynamic-content {
            min-height: 140px;
            /* Prevent layout jump */
            margin-bottom: 40px;
        }

        .mission-tab {
            display: none;
            animation: fadeIn 0.4s var(--ease-tech);
        }

        .mission-tab.active {
            display: block;
        }

        .mission-desc {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 20px;
            color: white;
        }

        .mission-result {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: var(--accent);
            background: rgba(37, 99, 235, 0.1);
            padding: 12px 20px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(37, 99, 235, 0.2);
            width: fit-content;
        }

        /* Mini Benefits Grid */
        .benefits-grid-mini {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .benefit-item .check {
            color: var(--accent);
            font-weight: bold;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 */
            height: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #111;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
        }

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

        /* Mission Section Mobile */
        @media (max-width: 768px) {
            .mission-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mission-content h2 {
                font-size: 32px;
            }

            .mission-content .lead {
                font-size: 18px;
            }

            .mission-desc {
                font-size: 20px;
            }

            .mission-toggle-container {
                width: 100%;
                justify-content: center;
            }

            .benefits-grid-mini {
                grid-template-columns: 1fr;
                gap: 12px;
            }

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

        /* Product Carousel Styles - Premium Split Design */
        .carousel-section {
            padding: 0;
            /* Remove padding for full bleed */
            background: #f5f5f7;
            position: relative;
        }

        .carousel-header-container {
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            background: #000;
        }

        .carousel-track {
            position: relative;
            height: 90vh;
            /* Full height */
            min-height: 600px;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s var(--ease-tech);
            display: grid;
            grid-template-columns: 45% 55%;
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* Left Column: Dark Gradient Content */
        .product-content-col {
            padding: 60px;
            /* Dynamic padding to align content with the standard container */
            padding-left: max(40px, calc((100vw - 1140px) / 2 + 20px));
            background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        /* Right Column: Image */
        .product-visual-col {
            position: relative;
            height: 100%;
            width: 100%;
            background: #e5e5e5;
            overflow: hidden;
            /* Fallback */
        }

        .product-visual-col img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Typography & Elements */
        .product-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.6);
        }

        .product-title {
            font-family: var(--font-heading);
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 700;
            background: linear-gradient(to right, #fff, #aaa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .product-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
            max-width: 90%;
        }

        /* Custom Tabs for Dark Theme */
        .product-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0;
        }

        .product-tab-btn {
            background: none;
            border: none;
            padding-bottom: 12px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }

        .product-tab-btn.active {
            color: white;
        }

        .product-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: white;
        }

        .product-tab-content {
            display: none;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            min-height: 80px;
            /* Prevent layout shift */
        }

        .product-tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .feature-list li {
            color: rgba(255, 255, 255, 0.7);
        }

        .feature-list li::before {
            color: white;
        }

        /* CTA Button - White Pill */
        .btn-pill-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: black;
            padding: 14px 32px;
            border-radius: 99px;
            font-weight: 600;
            font-size: 15px;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            width: fit-content;
        }

        .btn-pill-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
        }

        .btn-icon-arrow {
            width: 20px;
            height: 20px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Navigation Dots */
        .carousel-dots {
            position: absolute;
            bottom: 40px;
            left: 60px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            border-color: white;
            transform: scale(1.2);
        }

        @media (max-width: 900px) {
            .carousel-track {
                height: auto;
                min-height: auto;
            }

            .carousel-slide {
                position: relative;
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                display: flex;
                flex-direction: column;
                /* Keep only active slide visible */
            }

            .carousel-slide:not(.active) {
                display: none;
            }

            .carousel-slide.active {
                display: flex;
            }

            .product-visual-col {
                order: -1;
                height: 300px;
                min-height: 300px;
            }

            .product-content-col {
                padding: 40px 24px;
                padding-left: 24px;
            }

            .product-title {
                font-size: 32px;
            }

            .product-subtitle {
                font-size: 16px;
                max-width: 100%;
            }

            .carousel-dots {
                left: 24px !important;
                bottom: 20px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }

        /* Reasons Section Styles */
        .reasons-section {
            padding: 100px 0;
            background: white;
            overflow: hidden;
        }

        .reasons-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .reasons-header h2 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        /* Infinite Auto-Scroll Carousel Container */
        .reasons-scroll-container {
            display: flex;
            gap: 24px;
            overflow: hidden;
            /* Changed from overflow-x: auto */
            padding: 20px 0;
            position: relative;
            width: 100%;
        }

        /* Wrapper for seamless loop */
        .reasons-track {
            display: flex;
            gap: 24px;
            will-change: transform;
        }

        .reason-card {
            flex: 0 0 350px;
            /* Slightly larger cards */
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s var(--ease-tech);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .reason-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }

        .reason-image-placeholder {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .reason-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease-tech);
        }

        .reason-card:hover .reason-image-placeholder img {
            transform: scale(1.1);
        }

        .reason-content {
            padding: 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .reason-number {
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 14px;
        }

        .reason-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 14px;
            line-height: 1.3;
            color: var(--text-main);
        }

        .reason-desc {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .reason-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }

        .reason-link:hover {
            gap: 10px;
        }

        /* Scroll Progress Bar - Now shows animation progress */
        .scroll-progress-track {
            width: 300px;
            height: 3px;
            background: #e5e5e5;
            margin: 50px auto 0;
            border-radius: 99px;
            position: relative;
            overflow: hidden;
        }

        .scroll-progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 99px;
            transform-origin: left;
            animation: progressLoop 30s linear infinite;
        }

        @keyframes progressLoop {
            0% {
                transform: scaleX(0);
            }

            100% {
                transform: scaleX(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .reasons-section {
                padding: 80px 0;
            }

            .reasons-header {
                margin-bottom: 40px;
            }

            .reasons-header h2 {
                font-size: 32px;
            }

            .reasons-header .lead {
                font-size: 16px;
            }

            .reason-card {
                flex: 0 0 280px;
            }

            .reason-image-placeholder {
                height: 180px;
            }

            .reason-content {
                padding: 24px;
            }

            .reason-title {
                font-size: 20px;
            }

            .reason-desc {
                font-size: 14px;
            }

            .scroll-progress-track {
                width: 200px;
            }

            .reasons-header .btn {
                width: 100%;
                padding: 14px 28px;
            }
        }

        /* Partner Section Styles */
        .partner-section {
            padding: 100px 0;
            background: #f5f5f7;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .partner-card {
            background: black;
            border-radius: 30px;
            padding: 40px;
            height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            transition: transform 0.4s var(--ease-tech), box-shadow 0.4s;
        }

        .partner-card:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .partner-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
            z-index: 1;
        }

        .partner-card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .partner-label {
            font-size: 12px;
            font-weight: 600;
            color: #86868b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .partner-title {
            font-size: 40px;
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .partner-desc {
            font-size: 17px;
            color: #d2d2d7;
            line-height: 1.5;
            max-width: 90%;
            margin-bottom: 20px;
        }

        .partner-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-top: auto;
        }

        .partner-plus-btn {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: background 0.3s;
            z-index: 3;
        }

        .partner-card:hover .partner-plus-btn {
            background: white;
            color: black;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-tech);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            border-radius: 30px;
            padding: 60px;
            position: relative;
            overflow-y: auto;
            transform: scale(0.95);
            transition: transform 0.4s var(--ease-tech);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 36px;
            height: 36px;
            background: #e5e5e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: #1d1d1f;
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: #d2d2d7;
        }

        .modal-header-label {
            font-size: 14px;
            font-weight: 600;
            color: #86868b;
            margin-bottom: 16px;
        }

        .modal-title {
            font-size: 56px;
            font-weight: 700;
            color: #1d1d1f;
            line-height: 1.05;
            margin-bottom: 40px;
        }

        .modal-body {
            font-size: 21px;
            line-height: 1.5;
            color: #1d1d1f;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .modal-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .modal-cta {
            display: inline-block;
            background: #0071e3;
            color: white;
            padding: 16px 36px;
            border-radius: 99px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }

        .modal-cta:hover {
            background: #0077ed;
        }

        @media (max-width: 768px) {
            .partner-section {
                padding: 80px 0;
            }

            .partner-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .partner-card {
                height: 500px;
                padding: 30px;
                border-radius: 24px;
            }

            .partner-title {
                font-size: 32px;
            }

            .partner-desc {
                font-size: 15px;
                max-width: 100%;
            }

            .partner-card-image {
                height: 160px;
            }

            .modal-content {
                padding: 40px 24px;
                border-radius: 20px;
            }

            .modal-title {
                font-size: 32px;
            }

            .modal-body {
                font-size: 17px;
            }
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 100px 0;
            background: white;
        }

        .how-it-works-container {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .steps-list {
            position: sticky;
            top: 100px;
        }

        .step-item {
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s var(--ease-tech);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .step-item::after {
            content: '›';
            font-size: 32px;
            color: #d2d2d7;
            transition: all 0.3s var(--ease-tech);
            opacity: 0;
        }

        .step-item.active::after {
            opacity: 1;
            color: var(--primary);
        }

        .step-item:hover::after {
            opacity: 0.5;
        }

        .step-item.active .step-number {
            color: var(--primary);
        }

        .step-item.active .step-title {
            color: var(--primary);
        }

        .step-content {
            flex: 1;
        }

        .step-number {
            font-size: 12px;
            font-weight: 600;
            color: #86868b;
            margin-bottom: 4px;
            transition: color 0.3s;
            letter-spacing: 0.05em;
        }

        .step-title {
            font-size: 21px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 0;
            transition: color 0.3s;
        }

        .step-desc {
            font-size: 14px;
            color: #86868b;
            line-height: 1.5;
            margin-top: 8px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-tech), margin-top 0.4s var(--ease-tech);
        }

        .step-item.active .step-desc {
            max-height: 200px;
            margin-top: 12px;
        }

        .step-example {
            font-size: 13px;
            color: var(--accent);
            font-style: italic;
            margin-top: 8px;
            padding-left: 12px;
            border-left: 2px solid rgba(37, 99, 235, 0.3);
            line-height: 1.4;
        }

        .devices-showcase {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .device-mockup {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s var(--ease-tech);
            transform: translateY(20px);
        }

        .device-mockup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .device-frame {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .device-screen {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 1024px) {
            .how-it-works-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .steps-list {
                position: relative;
                top: 0;
            }

            .step-desc {
                display: block;
            }

            .devices-showcase {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .how-it-works-section {
                padding: 80px 0;
            }

            .how-it-works-section h2 {
                font-size: 32px;
            }

            .how-it-works-section p {
                font-size: 16px;
            }

            .step-title {
                font-size: 18px;
            }

            .step-desc {
                font-size: 13px;
            }

            .step-example {
                font-size: 12px;
            }

            .devices-showcase {
                min-height: 300px;
            }

            .device-frame {
                max-width: 100%;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s var(--ease-tech), box-shadow 0.3s;
            position: relative;
        }

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

        .testimonial-quote {
            font-size: 18px;
            line-height: 1.6;
            color: #1d1d1f;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 48px;
            color: var(--accent);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            font-size: 16px;
            color: #1d1d1f;
            margin-bottom: 4px;
        }

        .author-role {
            font-size: 14px;
            color: #86868b;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .testimonials-cta p {
            font-size: 21px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }

            .testimonials-header {
                margin-bottom: 60px;
            }

            .testimonials-header h2 {
                font-size: 32px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .testimonial-quote {
                font-size: 16px;
            }

            .testimonials-cta {
                margin-top: 40px;
            }

            .testimonials-cta p {
                font-size: 18px;
            }

            .testimonials-cta .btn {
                width: 100%;
            }
        }

        /* FAQ Section - Modern Split Layout */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-container {
            display: grid;
            grid-template-columns: 45% 1fr;
            gap: 80px;
            align-items: start;
        }

        .faq-visual {
            position: sticky;
            top: 100px;
        }

        .faq-image {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        .faq-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .faq-questions-column h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .faq-subtitle {
            font-size: 18px;
            color: #86868b;
            margin-bottom: 40px;
        }

        .faq-item {
            border-bottom: 1px solid #e5e5e5;
            padding: 24px 0;
            cursor: pointer;
            transition: all 0.3s var(--ease-tech);
        }

        .faq-item:first-child {
            border-top: 1px solid #e5e5e5;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1d1d1f;
            margin: 0;
            flex: 1;
            transition: color 0.3s;
        }

        .faq-item.active .faq-question h3 {
            color: var(--accent);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #f5f5f7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #86868b;
            transition: all 0.3s var(--ease-tech);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--accent);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-tech), padding-top 0.4s var(--ease-tech);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-top: 16px;
        }

        .faq-answer p {
            font-size: 15px;
            line-height: 1.6;
            color: #86868b;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .faq-visual {
                position: relative;
                top: 0;
            }

            .faq-questions-column h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 80px 0;
            }

            .faq-container {
                gap: 30px;
            }

            .faq-visual {
                display: none;
            }

            .faq-questions-column h2 {
                font-size: 28px;
            }

            .faq-subtitle {
                font-size: 16px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-answer p {
                font-size: 14px;
            }

            .faq-item {
                padding: 20px 0;
            }
        }