        :root {
            /* Primary Colors — Dark Theme (Marketing Brand) */
            --primary: #fbbf24;
            --primary-dark: #f59e0b;
            --secondary: #34d399;
            --secondary-dark: #10b981;
            --accent: #60a5fa;
            --accent-dark: #3b82f6;

            /* Status Colors */
            --success: #34d399;
            --warning: #f59e0b;
            --danger: #fca5a5;
            --info: #60a5fa;

            /* Gradients — Dark Theme */
            --gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            --gradient-dark: linear-gradient(160deg, #0d0d1f 0%, #16103a 45%, #0a1628 100%);

            /* Material Design Colors (for compatibility) */
            --md-primary: #fbbf24;
            --md-primary-dark: #f59e0b;
            --md-secondary: #34d399;
            --md-accent: #60a5fa;
            --md-success: #34d399;
            --md-danger: #fca5a5;
            --md-warning: #f59e0b;
            --md-info: #60a5fa;
        }

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(160deg, #0d0d1f 0%, #16103a 45%, #0a1628 100%);
            background-attachment: fixed;
            color: white;
        }

        /* Hero Section — Dark Theme */
        .hero {
            background: linear-gradient(160deg, #0d0d1f 0%, #16103a 50%, #0a1628 100%);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(251, 191, 36, 0.06);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(52, 211, 153, 0.04);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 0.75rem;
        }

        .hero .btn-hero {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .hero .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4), 0 0 60px rgba(251, 191, 36, 0.15);
        }

        /* Stats Bar — Dark Glass */
        .stats-bar {
            background: rgba(22, 16, 58, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            margin-top: -50px;
            border-radius: 15px;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .stat-item {
            padding: 28px 16px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            line-height: 1.1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Mobile: side-by-side value + label in each cell */
        @media (max-width: 767px) {
            .stats-bar-wrapper {
                max-width: 100%;
                padding-left: 12px;
                padding-right: 12px;
            }

            .stats-bar {
                margin-top: 30px;
                border-radius: 12px;
            }

            .stat-item {
                padding: 16px 8px 16px 16px;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 8px;
                text-align: left;
            }

            .stat-item:nth-child(3),
            .stat-item:nth-child(4) {
                border-bottom: none;
            }

            .stat-item:nth-child(1),
            .stat-item:nth-child(3) {
                border-right: 1px solid rgba(255,255,255,0.06);
            }

            /* Right column: center content */
            .stat-item:nth-child(2),
            .stat-item:nth-child(4) {
                padding-left: 8px;
                justify-content: center;
            }

            .stat-value {
                font-size: 1.6rem;
                margin-bottom: 0;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .stat-label {
                font-size: 0.65rem;
                line-height: 1.3;
            }
        }

        /* Features — Dark */
        .features {
            padding: 80px 0;
        }

        .feature-card {
            background: rgba(22, 16, 58, 0.6) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            border-radius: 15px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
            height: 100%;
            color: rgba(255, 255, 255, 0.7);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.1);
            border-color: rgba(251, 191, 36, 0.2) !important;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: #0d0d1f;
        }

        /* Download Section — Dark */
        .download-section {
            background: rgba(13, 13, 31, 0.5);
            padding: 80px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .download-card {
            background: rgba(22, 16, 58, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
            height: 100%;
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }

        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.1);
            border-color: rgba(251, 191, 36, 0.2);
        }

        .download-card .mobile-step-info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .download-icon {
            font-size: 4rem;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        /* CTA Section — Dark Accent */
        .cta-section {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(52, 211, 153, 0.08) 100%);
            border-top: 1px solid rgba(251, 191, 36, 0.15);
            border-bottom: 1px solid rgba(251, 191, 36, 0.15);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
        }

        .cta-section .btn-light {
            background: #fbbf24 !important;
            border: none !important;
            color: #0d0d1f !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 24px rgba(251, 191, 36, 0.4) !important;
        }

        .cta-section .btn-light:hover {
            background: #f59e0b !important;
            box-shadow: 0 8px 32px rgba(251, 191, 36, 0.5) !important;
        }

        .cta-section a.text-white {
            color: #fbbf24 !important;
        }

        /* Testimonials — Dark */
        .testimonial {
            background: rgba(22, 16, 58, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        .testimonial-quote {
            font-style: italic;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: 700;
            color: #fbbf24;
        }

        @media (max-width: 767px) {
            .reviews-section-heading {
                font-size: 1.6rem !important;
                line-height: 1.2;
                margin-bottom: 0.5rem !important;
            }
            .reviews-section-rating {
                font-size: 0.9rem;
                margin-bottom: 0 !important;
            }
            .reviews-section-rating .fa-star,
            .reviews-section-rating .far {
                font-size: 1.1rem !important;
            }
            .reviews-section-wrap .mb-5 {
                margin-bottom: 1.5rem !important;
            }
            .reviews-section-wrap.py-5 {
                padding-top: 2.5rem !important;
                padding-bottom: 2rem !important;
            }
            .testimonial {
                padding: 20px 16px;
                margin-bottom: 12px;
                border-radius: 12px;
            }
            .testimonial-quote {
                font-size: 0.9rem;
                margin-bottom: 0.75rem;
            }
            .testimonial-author {
                font-size: 0.85rem;
            }
        }

        /* Step Label — Dark */
        .step-label {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0d0d1f;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.3rem 1.1rem;
            border-radius: 20px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        /* Responsive */
        /* Hero brand block */
        .hero-brand-block {
            margin-bottom: 1.5rem;
        }
        .hero-brand-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 0.75rem;
        }
        .hero-brand-logo {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        .hero-brand-name {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: #fbbf24;
        }
        .hero-ssm-badge {
            background: rgba(255,255,255,0.15);
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            display: inline-block;
            backdrop-filter: blur(10px);
            opacity: 0.85;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 18px 0 20px;
            }
            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }
            .hero-ssm-badge {
                font-size: 0.65rem;
                padding: 0.2rem 0.75rem;
            }
            /* Fix stats bar on mobile — 2×2 grid, no negative offset */
            .stats-bar {
                margin-top: 0;
                border-radius: 12px;
                margin: 16px 0;
                box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            }
            .stats-bar .row {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
            .stat-item {
                border-right: none !important;
                border-bottom: 1px solid rgba(255,255,255,0.06) !important;
                padding: 18px 10px;
            }
            /* top-right cell: add left divider */
            .stat-item:nth-child(2n) {
                border-left: 1px solid rgba(255,255,255,0.06) !important;
            }
            /* bottom row: no bottom border */
            .stat-item:nth-child(3),
            .stat-item:nth-child(4) {
                border-bottom: none !important;
            }
            .stat-value {
                font-size: 1.8rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }

            /* Compact 3-step cards on mobile */
            .download-section .text-center.mb-5 h2 {
                font-size: 1.5rem;
                margin-bottom: 0.25rem !important;
            }
            .download-section .text-center.mb-5 {
                margin-bottom: 1.25rem !important;
            }
            .download-card {
                flex-direction: row !important;
                align-items: center;
                padding: 16px;
                min-height: unset;
                gap: 14px;
                text-align: left !important;
            }
            .download-card .step-label {
                display: none;
            }
            .download-card .download-icon {
                font-size: 2rem;
                min-width: 48px;
                margin: 0 !important;
                flex-shrink: 0;
            }
            .download-card .mobile-step-info {
                flex: 1;
                min-width: 0;
            }
            .download-card h4 {
                font-size: 1rem;
                margin-bottom: 0.15rem !important;
            }
            .download-card p.text-muted {
                font-size: 0.8rem;
                margin-bottom: 0.5rem !important;
            }
            .download-card .alert {
                font-size: 0.75rem;
                padding: 4px 8px !important;
                margin-bottom: 0.5rem !important;
            }
            .download-card .btn {
                font-size: 0.85rem;
                padding: 8px 14px;
                white-space: nowrap;
            }
            /* hide flex-grow spacer on mobile */
            .download-card .flex-grow-1 {
                flex-grow: 0 !important;
            }

            /* Hide redundant links row below 3 steps on mobile */
            .download-section .text-center.mt-5 p:first-child {
                display: none;
            }
            .download-section .text-center.mt-5 {
                margin-top: 1rem !important;
            }

            /* Tighten CTA section on mobile */
            .cta-section {
                padding: 28px 0;
            }
            .cta-section h2 {
                font-size: 1.25rem;
                margin-bottom: 0.4rem;
            }
            .cta-section .lead {
                font-size: 0.85rem;
                margin-bottom: 0.75rem !important;
            }
            .cta-section .btn-hero {
                padding: 12px 28px !important;
                font-size: 0.95rem !important;
                width: auto !important;
                display: inline-block !important;
            }
            .cta-section p.mt-4 {
                margin-top: 0.75rem !important;
                font-size: 0.85rem;
            }

            /* Minimal footer on mobile — hide Quick Links + Contact columns */
            footer .col-md-4:nth-child(2),
            footer .col-md-4:nth-child(3) {
                display: none;
            }
            /* Hide long description paragraph inside first footer col */
            footer .col-md-4:first-child > p {
                display: none;
            }
            footer {
                padding: 1.25rem 0 1rem !important;
            }
            footer hr {
                margin: 0.75rem 0 0.6rem !important;
            }
            /* Bottom bar: stack copyright, hide "Built with" line */
            footer > .container > div:last-child {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
            }
            footer > .container > div:last-child > div:last-child {
                display: none;
            }
        }

        /* =============================================
           Infografik Netflix-Style Slideshow
        ============================================= */
        .infografik-slideshow-wrapper {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto 3rem;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(251,191,36,0.15), 0 0 0 1px rgba(251,191,36,0.1);
            background: #0f0f1a;
        }
        /* Track: height is set dynamically by JS after scaling */
        .infografik-track {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .infografik-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
            pointer-events: none;
        }
        .infografik-slide.active {
            position: absolute;
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }
        .infografik-slide.exit-left {
            opacity: 0;
            transform: translateX(-80px);
        }
        .infografik-slide iframe {
            display: block;
            border: none;
            /* width/height set by JS after scaling */
            transform-origin: top left;
            pointer-events: none;
        }
        /* Gradient overlays on sides (Netflix-style edge fade) */
        .infografik-slideshow-wrapper::before,
        .infografik-slideshow-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 40px; /* above dots area */
            width: 60px;
            z-index: 5;
            pointer-events: none;
        }
        .infografik-slideshow-wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgba(15,15,26,0.6), transparent);
        }
        .infografik-slideshow-wrapper::after {
            right: 0;
            background: linear-gradient(to left, rgba(15,15,26,0.6), transparent);
        }
        /* Prev / Next arrows */
        .infografik-arrow {
            position: absolute;
            top: calc(50% - 20px);
            transform: translateY(-50%);
            background: rgba(251,191,36,0.85);
            color: #0d0d1f;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }
        .infografik-arrow:hover {
            background: #f59e0b;
            transform: translateY(-50%) scale(1.1);
        }
        .infografik-arrow-left  { left: 12px; }
        .infografik-arrow-right { right: 12px; }
        /* Slide label (English caption) */
        .infografik-label {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(251,191,36,0.8);
            color: #0d0d1f;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 100px;
            z-index: 10;
            white-space: nowrap;
            backdrop-filter: blur(4px);
        }
        /* Progress bar */
        .infografik-progress {
            height: 3px;
            background: rgba(255,255,255,0.1);
            position: relative;
            z-index: 6;
        }
        .infografik-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
        }
        /* Dot navigation */
        .infografik-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 7px;
            padding: 10px 0 12px;
            background: rgba(15,15,26,0.95);
        }
        .infografik-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255,255,255,0.28);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .infografik-dot.active {
            background: #fbbf24;
            transform: scale(1.5);
        }
.infografik-dot:hover:not(.active) {
            background: rgba(255,255,255,0.55);
        }
        /* Landing page: navbar — dark transparent */
        .navbar {
            background: rgba(13, 13, 31, 0.85) !important;
            backdrop-filter: blur(16px) !important;
            -webkit-backdrop-filter: blur(16px) !important;
            box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 16px rgba(0,0,0,0.3) !important;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .navbar .navbar-brand {
            color: #fbbf24 !important;
        }
        .navbar .navbar-brand:hover {
            color: #f59e0b !important;
        }
        .navbar .nav-link {
            color: rgba(255,255,255,0.65) !important;
        }
        .navbar .nav-link:hover {
            color: #fbbf24 !important;
            background: rgba(255,255,255,0.06) !important;
        }
        .navbar .nav-link.active {
            color: #fbbf24 !important;
            background: rgba(251,191,36,0.1) !important;
        }
        .navbar .btn-outline-primary {
            border-color: #fbbf24 !important;
            color: #fbbf24 !important;
        }
        .navbar .btn-outline-primary:hover {
            background: #fbbf24 !important;
            color: #0d0d1f !important;
        }
        .navbar .btn-primary {
            background: #fbbf24 !important;
            border-color: #fbbf24 !important;
            color: #0d0d1f !important;
            font-weight: 700 !important;
        }
        .navbar .btn-primary:hover {
            background: #f59e0b !important;
            box-shadow: 0 4px 16px rgba(251,191,36,0.4) !important;
        }
        .navbar .hamburger-btn span {
            background: rgba(255,255,255,0.7) !important;
        }
        .navbar .hamburger-btn:hover {
            background: rgba(255,255,255,0.06) !important;
        }
        .navbar .hamburger-btn:hover span {
            background: #fbbf24 !important;
        }

        /* ── Product Pill Switcher ───────────────────────────────────────── */
        .product-switcher-wrap {
            display: flex;
            justify-content: center;
            padding: 10px 0 4px;
            width: 100%;
        }
        /* pill track matches Bootstrap container width — same as stats bar */
        .product-switcher-wrap .product-pill-track {
            width: 100%;
            max-width: 1140px;
            margin: 0 15px; /* same gutters as Bootstrap container */
        }
        .product-switcher-wrap .catalog-tab-btn {
            flex: 1;
            min-width: 0;
        }
        /* Fixed bar that appears once user scrolls past the hero */
        .product-switcher-fixed {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 950;
            justify-content: center;
            background: rgba(13,13,31,0.93);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 16px rgba(0,0,0,0.3);
            padding: 6px 0;
        }
        .product-switcher-fixed.visible {
            display: flex;
        }
        /* On mobile, offset below the sticky navbar (~56px) */
        @media (max-width: 768px) {
            .product-switcher-fixed {
                top: 56px;
            }
            /* Compact pill on mobile — no sub-label, tighter padding */
            .product-switcher-fixed .tab-sub {
                display: none;
            }
            .product-switcher-fixed .product-pill-track {
                margin: 0 8px;
            }
            .product-switcher-fixed .catalog-tab-btn {
                padding: 7px 10px;
                min-width: 0;
            }
            .product-switcher-fixed .tab-main {
                font-size: 0.8rem;
            }
        }
        /* fixed pill also spans container width */
        .product-switcher-fixed .product-pill-track {
            width: 100%;
            max-width: 1140px;
            margin: 0 15px;
        }
        .product-switcher-fixed .catalog-tab-btn {
            flex: 1;
            min-width: 0;
        }
        .product-switcher-fixed .product-pill-track {
            background: rgba(251,191,36,0.06);
            border-color: rgba(251,191,36,0.15);
        }
        .product-switcher-fixed .catalog-tab-btn {
            color: rgba(255,255,255,0.4);
        }
        .product-switcher-fixed .catalog-tab-btn.active {
            color: #fbbf24;
        }
        .product-switcher-fixed .catalog-tab-btn:not(.active):hover {
            color: #fbbf24;
        }
        .product-pill-track {
            display: flex;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 999px;
            padding: 4px;
            gap: 0;
            position: relative;
            transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .product-pill-track:hover {
            border-color: rgba(251, 191, 36, 0.35);
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.12);
        }
        .product-switcher-wrap.is-stuck .product-pill-track {
            background: rgba(251,191,36,0.06);
            border-color: rgba(251,191,36,0.15);
        }
        .catalog-tab-btn {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 28px;
            border: none;
            background: transparent;
            border-radius: 999px;
            cursor: pointer;
            font-family: inherit;
            color: rgba(255,255,255,0.65);
            transition: color 0.25s;
            gap: 1px;
            min-width: 155px;
        }
        .product-switcher-wrap.is-stuck .catalog-tab-btn {
            color: rgba(255,255,255,0.4);
        }
        .catalog-tab-btn .tab-main {
            font-size: 0.9375rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            line-height: 1.2;
        }
        .catalog-tab-btn .tab-sub {
            font-size: 0.68rem;
            font-weight: 400;
            opacity: 0.85;
            line-height: 1;
        }
        /* The sliding accent bubble (3 tabs: SR | SM | PRA) */
        .product-pill-track::before {
            content: '';
            position: absolute;
            top: 4px; bottom: 4px;
            width: calc(33.33% - 4px);
            left: 4px;
            background: rgba(251,191,36,0.15);
            border: 1px solid rgba(251,191,36,0.3);
            border-radius: 999px;
            box-shadow: 0 2px 12px rgba(251,191,36,0.1);
            transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .product-pill-track[data-active="sm"]::before { left: calc(33.33% + 2px); }
        .product-pill-track[data-active="pra"]::before { left: calc(66.66% + 0px); }
        .catalog-tab-btn.active { color: #fbbf24; }
        .catalog-tab-btn:not(.active):hover {
            color: #fbbf24;
            text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
        }
        .product-switcher-wrap.is-stuck .catalog-tab-btn:not(.active):hover {
            color: #fbbf24;
            text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
        }

        /* product-sr / product-sm / product-pra: controlled by data-product on #pageWrapper */
        [data-product="SR"] .product-sm, [data-product="SR"] .product-pra { display: none !important; }
        [data-product="SM"] .product-sr, [data-product="SM"] .product-pra { display: none !important; }
        [data-product="PRA"] .product-sr, [data-product="PRA"] .product-sm { display: none !important; }

        @media (max-width: 767px) {
            .product-switcher-wrap { top: 50px; padding: 8px 12px 10px; }
            .product-switcher-wrap.is-stuck { padding: 6px 12px; }
            .catalog-tab-btn { min-width: 0; flex: 1; padding: 7px 16px; }
            .catalog-tab-btn .tab-main { font-size: 0.85rem; }
            .catalog-tab-btn .tab-sub { font-size: 0.62rem; }
        }

        /* =============================================
           Pricing / Plans Section
        ============================================= */
        .pricing-section {
            padding: 80px 0;
            background: linear-gradient(160deg, #0a1628 0%, #16103a 50%, #0d0d1f 100%);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .pricing-section .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(52, 211, 153, 0.12);
            border: 1px solid rgba(52, 211, 153, 0.3);
            border-radius: 100px;
            padding: 8px 24px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #34d399;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        .pricing-card {
            background: rgba(22, 16, 58, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .pricing-card.pricing-free {
            border-color: rgba(52, 211, 153, 0.25);
        }
        .pricing-card.pricing-free:hover {
            border-color: rgba(52, 211, 153, 0.5);
            box-shadow: 0 8px 32px rgba(52, 211, 153, 0.15);
        }

        .pricing-card.pricing-pro {
            border-color: rgba(251, 191, 36, 0.35);
            box-shadow: 0 0 40px rgba(251, 191, 36, 0.08);
        }
        .pricing-card.pricing-pro:hover {
            border-color: rgba(251, 191, 36, 0.6);
            box-shadow: 0 8px 40px rgba(251, 191, 36, 0.2);
        }

        .pricing-popular-tag {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0d0d1f;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 5px 20px;
            border-radius: 100px;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .pricing-plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .pricing-free .pricing-plan-name { color: #34d399; }
        .pricing-pro .pricing-plan-name { color: #fbbf24; }

        .pricing-price {
            font-size: 3rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 0.25rem;
            line-height: 1.1;
        }
        .pricing-price small {
            font-size: 1rem;
            color: rgba(255,255,255,0.4);
            font-weight: 400;
        }
        .pricing-price .pricing-strikethrough {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.3);
            text-decoration: line-through;
            margin-right: 8px;
        }

        .pricing-subtitle {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem;
            text-align: left;
        }
        .pricing-features li {
            padding: 8px 0;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.65);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .pricing-features li:last-child {
            border-bottom: none;
        }
        .pricing-features li i {
            font-size: 0.85rem;
            width: 18px;
            text-align: center;
            flex-shrink: 0;
        }
        .pricing-free .pricing-features li i { color: #34d399; }
        .pricing-pro .pricing-features li i { color: #fbbf24; }

        .pricing-quota-boxes {
            display: flex;
            gap: 12px;
            margin-bottom: 1.5rem;
        }
        .pricing-quota-box {
            flex: 1;
            background: rgba(52, 211, 153, 0.08);
            border: 1px solid rgba(52, 211, 153, 0.2);
            border-radius: 12px;
            padding: 16px 8px;
            text-align: center;
        }
        .pricing-quota-num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #34d399;
            line-height: 1;
        }
        .pricing-quota-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .pricing-quota-type {
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
        }

        .pricing-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        .pricing-cta-free {
            background: rgba(52, 211, 153, 0.15);
            border: 2px solid #34d399;
            color: #34d399;
        }
        .pricing-cta-free:hover {
            background: #34d399;
            color: #0d0d1f;
            box-shadow: 0 4px 24px rgba(52, 211, 153, 0.4);
            text-decoration: none;
        }
        .pricing-cta-pro {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border: 2px solid transparent;
            color: #0d0d1f;
        }
        .pricing-cta-pro:hover {
            box-shadow: 0 4px 24px rgba(251, 191, 36, 0.5);
            transform: translateY(-2px);
            text-decoration: none;
            color: #0d0d1f;
        }

        .pricing-note {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
            margin-top: 2rem;
        }

        @media (max-width: 767px) {
            .pricing-section {
                padding: 40px 0 32px;
            }
            .pricing-section .section-badge {
                font-size: 0.75rem;
                padding: 6px 16px;
                margin-bottom: 0.75rem;
            }
            .pricing-section h2.display-4 {
                font-size: 1.6rem !important;
                line-height: 1.2;
                margin-bottom: 0.5rem !important;
            }
            .pricing-section .lead {
                font-size: 0.9rem;
                margin-bottom: 0 !important;
            }
            .pricing-section .mb-5 {
                margin-bottom: 1.5rem !important;
            }
            /* Show Pro card first on mobile */
            .pricing-section .row {
                flex-direction: column-reverse;
            }
            .pricing-card {
                padding: 24px 18px;
                border-radius: 16px;
            }
            .pricing-popular-tag {
                font-size: 0.7rem;
                padding: 4px 14px;
                top: -12px;
            }
            .pricing-plan-name {
                font-size: 1.4rem;
                margin-bottom: 0.25rem;
            }
            .pricing-price {
                font-size: 2.2rem;
                margin-bottom: 0.15rem;
            }
            .pricing-price small {
                font-size: 0.85rem;
            }
            .pricing-price .pricing-strikethrough {
                font-size: 1.1rem;
            }
            .pricing-subtitle {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }
            .pricing-quota-boxes {
                gap: 8px;
                margin-bottom: 1rem;
            }
            .pricing-quota-box {
                padding: 12px 6px;
                border-radius: 10px;
            }
            .pricing-quota-num {
                font-size: 1.7rem;
            }
            .pricing-quota-label {
                font-size: 0.62rem;
            }
            .pricing-quota-type {
                font-size: 0.85rem;
            }
            .pricing-features {
                margin-bottom: 1.25rem;
            }
            .pricing-features li {
                padding: 6px 0;
                font-size: 0.88rem;
                gap: 8px;
            }
            .pricing-cta-btn {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            .pricing-note {
                font-size: 0.75rem;
                margin-top: 1.25rem;
            }
        }

        /* ============ ECOSYSTEM SECTION — MOBILE ============ */
        @media (max-width: 767px) {
            /* Ecosystem section heading */
            .pintar-ecosystem-section .display-4 {
                font-size: 1.5rem !important;
                margin-bottom: 0.5rem !important;
            }
            .pintar-ecosystem-section .lead {
                font-size: 0.85rem;
                margin-bottom: 0 !important;
            }
            .pintar-ecosystem-section .section-badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: rgba(52, 211, 153, 0.12);
                border: 1px solid rgba(52, 211, 153, 0.3);
                border-radius: 100px;
                padding: 5px 14px;
                font-size: 0.72rem;
                font-weight: 700;
                color: #34d399;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-bottom: 0.75rem;
            }
            .pintar-ecosystem-section .mb-4 {
                margin-bottom: 1rem !important;
            }

            /* Ecosystem cards: 2-col grid with proper sizing */
            .pintar-ecosystem-section .eco-card {
                padding: 18px 12px !important;
                border-radius: 14px !important;
            }
            .pintar-ecosystem-section .eco-card img {
                width: 40px !important;
                height: 40px !important;
                border-radius: 10px !important;
                margin-bottom: 10px !important;
            }
            .pintar-ecosystem-section .eco-card .eco-icon-div {
                width: 40px !important;
                height: 40px !important;
                border-radius: 10px !important;
                margin-bottom: 10px !important;
                font-size: 1rem !important;
            }
            .pintar-ecosystem-section .eco-card h5 {
                font-size: 0.85rem !important;
                margin-bottom: 2px !important;
            }
            .pintar-ecosystem-section .eco-card .eco-desc {
                font-size: 10px !important;
                margin-bottom: 8px !important;
                line-height: 1.3 !important;
            }
            .pintar-ecosystem-section .eco-card .eco-badge {
                font-size: 9px !important;
                padding: 2px 8px !important;
            }

            /* Reduce row gap */
            .pintar-ecosystem-section .row {
                margin-left: -6px;
                margin-right: -6px;
            }
            .pintar-ecosystem-section .row > [class*="col-"] {
                padding-left: 6px;
                padding-right: 6px;
                margin-bottom: 12px !important;
            }

            /* View All Products button */
            .pintar-ecosystem-section .eco-view-all {
                font-size: 13px !important;
                padding: 8px 20px !important;
            }
        }

        @media (max-width: 400px) {
            .pintar-ecosystem-section .eco-card {
                padding: 14px 10px !important;
            }
            .pintar-ecosystem-section .eco-card img {
                width: 36px !important;
                height: 36px !important;
            }
            .pintar-ecosystem-section .eco-card .eco-icon-div {
                width: 36px !important;
                height: 36px !important;
            }
            .pintar-ecosystem-section .eco-card h5 {
                font-size: 0.8rem !important;
            }
            .pintar-ecosystem-section .eco-card .eco-desc {
                font-size: 9px !important;
            }
            .pintar-ecosystem-section .eco-card .eco-badge {
                font-size: 8px !important;
                padding: 2px 6px !important;
            }
        }

/* Footer Link Hover Effects (from second style block) */
        /* Footer Link Hover Effects */
        footer a:hover {
            color: #fbbf24 !important;
            transform: translateX(3px);
        }

        footer ul li {
            transition: transform 0.2s ease;
        }

        footer ul li:hover {
            transform: translateX(5px);
        }
