/* New Professional Design Styles */
        /* Hero: Option D orbit-first — ticker + full orbit canvas + compact footer */
        .hero-new {
            padding: 0 !important;
            position: relative;
            overflow: hidden;
            color: white;
            min-height: 560px;
            max-height: none;
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            justify-content: flex-start !important;
            isolation: isolate;
        }
        .hero-new--orbit-first {
            min-height: 88vh;
            max-height: 960px;
        }
        .hero-orbit-first-layout {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            flex: 1;
            width: 100%;
            min-height: inherit;
        }
        .hero-pain-ticker {
            flex-shrink: 0;
            /* BUG-037: clear fixed .navbar + translucent bottom fade (not just box height) */
            padding: max(140px, calc(env(safe-area-inset-top, 0px) + 124px)) 16px 12px;
            text-align: center;
            z-index: 25;
            pointer-events: none;
        }
        .hero-pain-ticker-text {
            display: inline-block;
            margin: 0;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fffbeb;
            background: #92400e;
            border: 1px solid #fbbf24;
            line-height: 1.35;
            max-width: min(96vw, 720px);
        }
        .hero-orbit-canvas {
            position: relative;
            flex: 1 1 auto;
            min-height: clamp(280px, 48vh, 520px);
            width: 100%;
        }
        .hero-orbit-footer {
            flex-shrink: 0;
            z-index: 28;
            padding: 10px 20px 22px;
            text-align: center;
            pointer-events: auto;
            background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 41, 0.72) 28%, rgba(10, 25, 41, 0.92) 100%);
        }
        .hero-orbit-tagline {
            font-size: clamp(1.05rem, 2.4vw, 1.65rem);
            font-weight: 800;
            line-height: 1.15;
            margin: 0 0 6px;
            color: #ffffff;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.9);
            opacity: 1;
            transform: none;
            animation: none;
        }
        .hero-orbit-tagline em {
            font-style: normal;
            color: #99f6e4;
        }
        .hero-orbit-sub {
            font-size: clamp(0.75rem, 1.4vw, 0.9rem);
            color: #f8fafc;
            margin: 0 auto 14px;
            max-width: 640px;
            line-height: 1.45;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
            opacity: 1;
            transform: none;
            animation: none;
        }
        .hero-orbit-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            opacity: 1;
            transform: none;
            animation: none;
        }
        .hero-orbit-actions .btn-primary-new,
        .hero-orbit-actions .btn-secondary-new {
            font-size: 0.875rem;
            padding: 10px 18px;
        }
        @media (min-width: 769px) {
            .hero-new--orbit-first {
                min-height: 85vh;
                max-height: 900px;
            }
            .hero-pain-ticker {
                padding-top: max(148px, calc(env(safe-area-inset-top, 0px) + 128px));
            }
            .hero-orbit-canvas { min-height: 420px; }
            .hero-orbit-footer { padding-bottom: 28px; }
        }
        @media (min-width: 1200px) {
            .hero-new--orbit-first {
                min-height: 88vh;
                max-height: 920px;
            }
            .hero-pain-ticker {
                padding-top: max(156px, calc(env(safe-area-inset-top, 0px) + 136px));
            }
            .hero-orbit-canvas { min-height: 460px; }
        }
        /* Layer 1: Slider / hero background – always behind Layer 2 */
        .hero-background-layer {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-background-slide {
            position: absolute;
            inset: -4%;
            width: 108%;
            height: 108%;
            left: -4%;
            top: -4%;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            opacity: 0;
            transition: opacity 2.5s ease-in-out;
            animation: hero-bg-slow-drift 60s ease-in-out infinite alternate;
        }
        .hero-background-slide.hero-background-slide--active {
            opacity: 1;
            z-index: 1;
            animation: hero-bg-slow-drift 60s ease-in-out infinite alternate, hero-bg-breathe 10s ease-in-out infinite;
        }
        @keyframes hero-bg-slow-drift {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.06) translate(1%, 1%); }
        }
        /* Very slow subtle "alive" pulse on background images */
        @keyframes hero-bg-breathe {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.9; }
        }
        
        .hero-magnifier {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
            pointer-events: none;
            display: none;
            z-index: 2; /* Above background layer, below Layer 2 content */
            transform: translate(-50%, -50%);
            overflow: hidden;
        }
        .hero-magnifier-inner {
            position: absolute;
            left: 0;
            top: 0;
            background-image: url('/images/NewDesign/Untitled156_20260222150450%20(1).png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            will-change: transform;
            transform-origin: 0 0;
        }
        .hero-magnifier-inner .hero-magnifier-clone {
            position: absolute;
            pointer-events: none;
        }
        .hero-magnifier-inner .hero-magnifier-clone * {
            pointer-events: none;
        }
        
        .navbar {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            position: fixed !important;
            width: 100% !important;
            top: 0 !important;
            z-index: 1200 !important;
            overflow: visible !important;
            padding-top: 8px;
            padding-bottom: 12px;
        }
        @media (min-width: 769px) {
            .navbar { padding-top: 12px; padding-bottom: 20px; }
        }
        /* Beat deferred styles.css (12px 0 28px) — tall pad + solid mobile bar covered the hero ticker */
        @media (max-width: 768px) {
            .navbar {
                padding-top: max(8px, env(safe-area-inset-top, 0px));
                padding-bottom: 10px !important;
            }
        }
        .navbar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.72) 35%, rgba(0,0,0,0.62) 70%, rgba(0,0,0,0.5) 100%);
            z-index: 0;
            pointer-events: none;
            /* Shorter fade so hero ticker is not visually covered (BUG-037) */
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 72%, rgba(0,0,0,0.35) 88%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 0%, black 72%, rgba(0,0,0,0.35) 88%, transparent 100%);
        }
        @media (min-width: 769px) {
            .navbar {
                padding-bottom: 12px !important; /* override styles.css 28px fade pad */
            }
        }
        @media (max-width: 768px) {
            .navbar::before {
                background: rgba(0,0,0,0.82) !important;
                /* Soft fade so the bar doesn't hard-clip the hero ticker */
                -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0,0,0,0.45) 88%, transparent 100%);
                mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0,0,0,0.45) 88%, transparent 100%);
            }
        }
        /* Over white: glassy navbar – frosted glass, same fade at bottom */
        .navbar.scrolled::before {
            background: rgba(255, 255, 255, 0.72) !important;
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.6) 65%, transparent 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.6) 65%, transparent 85%, transparent 100%);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
        }
        .navbar.scrolled {
            backdrop-filter: blur(16px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
            border-bottom: 1px solid rgba(10, 25, 41, 0.08) !important;
            box-shadow: 0 1px 3px rgba(10, 25, 41, 0.06) !important;
        }
        .navbar.scrolled .logo,
        .navbar.scrolled .logo-text,
        .navbar.scrolled .nav-menu a,
        .navbar.scrolled .dropdown-toggle,
        .navbar.scrolled .btn-book-meeting,
        .navbar.scrolled .user-avatar-content {
            color: var(--text-primary) !important;
        }
        .navbar.scrolled .dropdown-menu {
            background: #ffffff !important;
            border: 1px solid rgba(10, 25, 41, 0.12) !important;
            box-shadow: 0 12px 40px rgba(10, 25, 41, 0.18) !important;
        }
        .navbar.scrolled .dropdown-menu a { color: var(--text-primary) !important; }
        .navbar.scrolled .dropdown-menu a:hover {
            background: rgba(0, 102, 204, 0.08) !important;
            color: var(--cta-primary, #0066cc) !important;
        }
        .navbar.scrolled .dropdown-arrow { color: var(--text-primary) !important; }
        .navbar.scrolled .mobile-menu-toggle span { background: var(--text-primary); }
        /* Matte (hero): ensure nav buttons and links are visible – white on dark overlay */
        .navbar .logo,
        .navbar .logo-text,
        .navbar .nav-menu a,
        .navbar .nav-menu .nav-link,
        .navbar .dropdown-toggle,
        .navbar .btn-book-meeting,
        .navbar .user-avatar-content,
        .navbar #cartToggleBtn {
            color: #ffffff !important;
        }
        .navbar .dropdown-arrow { color: #ffffff !important; }
        .navbar #cartToggleBtn {
            background: rgba(255, 255, 255, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.4) !important;
            color: #ffffff !important;
        }
        .navbar #cartToggleBtn:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            border-color: rgba(255, 255, 255, 0.6) !important;
        }
        .navbar .mobile-menu-toggle span { background: #ffffff !important; }
        .navbar .nav-dropdown { position: relative; z-index: 1201; }
        .navbar .nav-dropdown:hover,
        .navbar .nav-dropdown:focus-within { z-index: 1201; }
        .navbar .dropdown-menu { z-index: 1202 !important; }
        .navbar .container, .navbar .nav-content { position: relative; z-index: 1; background: none !important; border: none !important; box-shadow: none !important; }
        /* BUG-037 B2: keep primary nav labels readable (no ChorusContr… truncation) */
        @media (min-width: 769px) and (max-width: 1500px) {
            .navbar .nav-content { gap: 12px; max-width: none; }
            .navbar .nav-menu { gap: 10px; min-width: 0; flex: 1 1 auto; justify-content: flex-end; }
            .navbar .nav-menu a,
            .navbar .nav-menu .nav-link,
            .navbar .dropdown-toggle {
                font-size: 13px !important;
                padding: 6px 0 !important;
                white-space: nowrap !important;
                overflow: visible !important;
                text-overflow: clip !important;
                max-width: none !important;
            }
            .navbar .logo-text { font-size: 15px; max-width: 150px; }
            .navbar .btn-book-meeting span { font-size: 12px; }
            .navbar .btn-book-meeting { padding-left: 10px; padding-right: 10px; }
        }
        @media (min-width: 769px) and (max-width: 1180px) {
            .navbar .logo-text { display: none !important; }
            .navbar .nav-menu { gap: 8px; }
            .navbar .nav-menu a,
            .navbar .nav-menu .nav-link { font-size: 12.5px !important; }
        }
        /* Over dark hero: dropdown and mobile menu must be readable (dark panel, white text) */
        .navbar:not(.scrolled) .dropdown-menu {
            background: rgba(10, 25, 41, 0.98) !important;
            border: 1px solid rgba(255, 255, 255, 0.18) !important;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
        }
        .navbar:not(.scrolled) .nav-dropdown .dropdown-toggle {
            font-weight: 600;
        }
        .navbar:not(.scrolled) .dropdown-menu a {
            color: rgba(255, 255, 255, 0.92) !important;
        }
        .navbar:not(.scrolled) .dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.14) !important;
            color: #ffffff !important;
        }
        /* Mobile: when menu is open over dark hero, use dark panel and white text */
        @media (max-width: 768px) {
            .navbar:not(.scrolled) .nav-menu.active {
                background: rgba(10, 25, 41, 0.98) !important;
                border-top-color: rgba(255, 255, 255, 0.2) !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
            }
            .navbar:not(.scrolled) .nav-menu.active a,
            .navbar:not(.scrolled) .nav-menu.active .nav-link,
            .navbar:not(.scrolled) .nav-menu.active .dropdown-toggle {
                color: #ffffff !important;
            }
            .navbar:not(.scrolled) .nav-menu.active .dropdown-menu.mobile-open {
                background: rgba(20, 40, 60, 0.99) !important;
            }
            .navbar:not(.scrolled) .nav-menu.active .dropdown-menu.mobile-open a {
                color: #ffffff !important;
            }
            .navbar.scrolled .nav-menu.active .dropdown-menu.mobile-open {
                background: #ffffff !important;
                border: 1px solid rgba(10, 25, 41, 0.1) !important;
            }
            .navbar.scrolled .nav-menu.active .dropdown-menu.mobile-open a {
                color: var(--text-primary) !important;
            }
            .navbar.scrolled .nav-menu.active .dropdown-menu.mobile-open a:hover {
                background: rgba(0, 102, 204, 0.08) !important;
                color: var(--cta-primary, #0066cc) !important;
            }
        }

        .hero-new-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10; /* Layer 2: above background and magnifier */
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            padding: 0 24px;
        }
        
        .hero-text-column {
            text-align: left;
        }
        
        .hero-title {
            font-size: clamp(1.5rem, 4vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            animation: fade-up 0.8s ease-out forwards;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero-title span {
            color: var(--teal-accent);
            display: block;
        }
        
        .hero-subtitle {
            font-size: clamp(0.95rem, 1.5vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: fade-up 0.8s ease-out 0.2s forwards;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: flex-start;
            opacity: 0;
            transform: translateY(30px);
            animation: fade-up 0.8s ease-out 0.4s forwards;
        }

        @keyframes fade-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary-new {
            background: var(--cta-primary);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary-new:hover {
            background: var(--cta-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.6);
        }

        .btn-secondary-new {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-secondary-new:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .hero-stats-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0;
            transform: translateX(30px);
            animation: fade-in-right 0.8s ease-out 0.6s forwards;
        }
        
        @keyframes fade-in-right {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stat-card {
            background: rgba(10, 25, 41, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s, border-color 0.3s;
        }
        
        .stat-card:hover {
            transform: translateX(-5px);
            border-color: var(--teal-accent);
            background: rgba(10, 25, 41, 0.8);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: rgba(20, 184, 166, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--teal-accent);
        }

        .stat-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 4px 0;
            color: white;
        }
        
        .stat-info p {
            font-size: 0.9rem;
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        /* Hero: minimal floating product bubbles (navbar products) */
        .hero-new .hero-new-content,
        .hero-new .hero-new-content * {
            cursor: auto;
        }
        .hero-new .hero-product-float,
        .hero-new .hero-product-float:hover {
            cursor: pointer !important;
        }
        /* Layer 2: Product graph — fills orbit canvas (orbit-first layout) */
        .hero-product-floats {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 20;
            pointer-events: none;
            min-height: 280px;
            /* Hide until JS finishes first orbit layout (BUG-033 jumble flash) */
            opacity: 0;
            visibility: hidden;
            transform: translateZ(0);
            overflow: visible;
            transition: opacity 0.25s ease-out;
        }
        .hero-product-floats.is-ready {
            opacity: 1;
            visibility: visible;
            pointer-events: none;
        }
        .hero-new--orbit-first .hero-product-floats {
            min-height: 0;
        }
        .hero-product-floats .hero-product-float,
        .hero-product-floats .hero-graph-nodes a,
        .hero-product-floats .hero-graph-nodes button {
            pointer-events: auto;
        }
        /* Center: eye exactly in the middle of the product circle (same center as gear rotation) */
        .hero-center-rings {
            position: absolute;
            left: var(--hero-circle-cx, 50%);
            top: var(--hero-circle-cy, 50%);
            width: 240px;
            height: 240px;
            transform: translate(-50%, -50%);
            z-index: 22;
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* The magical blue eye background (sclera) */
        .hero-eye-sclera {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .hero-wisdom-eye-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: contain;
            pointer-events: none;
            /* Removed mix-blend-mode: screen and animation */
        }
        /* The glowing blue/purple iris that tracks the mouse – sized to fit inside the eye image */
        .hero-eye-iris {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.1s ease-out;
            position: relative;
            z-index: 2;
        }
        /* The dark vertical slit pupil – proportional to the iris so it stays inside the eye */
        .hero-eye-pupil-slit {
            width: 8px;
            height: 36px;
            background: #000;
            border-radius: 50%;
            box-shadow: 0 0 6px #000, 0 0 4px rgba(255, 255, 255, 0.4);
            z-index: 2;
            animation: hero-pupil-breathe 4s ease-in-out infinite alternate;
        }
        @keyframes hero-pupil-breathe {
            0% { transform: scaleY(1) scaleX(1); }
            100% { transform: scaleY(1.05) scaleX(0.9); }
        }
        .hero-center-rings:hover,
        .hero-center-rings.hero-center-rings--drag-over {
            cursor: copy;
        }
        /* Tablet: slightly smaller center rings so they fit with the product circle */
        @media (max-width: 992px) and (min-width: 769px) {
            .hero-center-rings {
                width: 180px;
                height: 180px;
            }
            .hero-eye-iris {
                width: 40px;
                height: 40px;
            }
        }
        /* Mobile: hide center rings to free space for the product circle and avoid clutter */
        @media (max-width: 768px) {
            .hero-center-rings {
                display: none !important;
                pointer-events: none;
                visibility: hidden;
            }
        }
        /* Graph SVG: chain links layer (visible on mouse move) */
        .hero-graph-svg {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 20;
            pointer-events: none;
            visibility: hidden;
        }
        .hero-graph-chains {
            visibility: visible;
            z-index: 19;
            opacity: 0;
            transition: opacity 0.45s ease;
        }
        .hero-graph-chains.is-active {
            opacity: 1;
        }
        .hero-graph-chains {
            opacity: 0.85;
        }
        .hero-chain-path {
            fill: none;
            stroke: rgba(45, 212, 191, 0.55);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 8 10;
            animation: hero-chain-flow 1.2s linear infinite;
        }
        .hero-chain-path--link {
            stroke: rgba(255, 255, 255, 0.45);
            stroke-width: 2.5;
            stroke-dasharray: 6 8;
            animation-duration: 0.9s;
        }
        @keyframes hero-chain-flow {
            to { stroke-dashoffset: -36; }
        }
        /* Group hub nodes (outer ring) */
        .hero-group-hub {
            width: clamp(72px, 8vw, 128px) !important;
            height: clamp(72px, 8vw, 128px) !important;
            min-width: clamp(72px, 8vw, 128px) !important;
            min-height: clamp(72px, 8vw, 128px) !important;
            max-width: clamp(72px, 8vw, 128px) !important;
            max-height: clamp(72px, 8vw, 128px) !important;
            border: 2px solid rgba(45, 212, 191, 0.55) !important;
            background: rgba(3, 26, 53, 0.85) !important;
            cursor: pointer;
            padding: 0;
            font: inherit;
            color: inherit;
            appearance: none;
            -webkit-appearance: none;
            position: absolute;
            transform: translate(-50%, -50%);
            z-index: 26;
            transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), top 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease, box-shadow 0.25s ease;
        }
        .hero-group-hub:hover,
        .hero-group-hub.hero-group-hub--expanded,
        .hero-group-hub.hero-group-hub--active {
            border-color: rgba(45, 212, 191, 1) !important;
            box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.6), 0 16px 40px rgba(0, 0, 0, 0.45) !important;
            transform: translate(-50%, -50%) scale(1.08);
        }
        .hero-group-hub.hero-group-hub--active:not(.hero-group-hub--expanded) {
            border-color: rgba(196, 165, 90, 0.75) !important;
            box-shadow: 0 0 0 1px rgba(196, 165, 90, 0.4), 0 12px 32px rgba(0, 0, 0, 0.35) !important;
            transform: translate(-50%, -50%) scale(1.04);
        }
        .hero-chain-path--inner {
            stroke: rgba(196, 165, 90, 0.4);
            stroke-dasharray: 5 9;
        }
        .hero-orbit-track {
            fill: none;
            stroke: rgba(45, 212, 191, 0.35);
            stroke-width: 1.5;
            stroke-dasharray: 6 10;
        }
        .hero-group-switcher {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 8px;
            top: auto;
            transform: none;
            z-index: 28;
            display: flex;
            gap: clamp(8px, 2vw, 28px);
            flex-wrap: nowrap;
            justify-content: space-evenly;
            align-items: center;
            padding: 0 clamp(8px, 3vw, 40px);
            box-sizing: border-box;
            pointer-events: none;
        }
        .hero-group-chip {
            border: 1px solid rgba(45, 212, 191, 0.55);
            background: #031a35;
            color: #ffffff;
            border-radius: 999px;
            padding: 8px 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            cursor: pointer;
            pointer-events: auto;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            flex-shrink: 0;
        }
        .hero-group-chip:hover,
        .hero-group-chip.hero-group-chip--active {
            border-color: rgba(45, 212, 191, 1);
            background: rgba(15, 69, 61, 0.92);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        }
        .hero-group-chip.hero-group-chip--active {
            animation: hero-chip-pulse 2.4s ease-in-out infinite;
        }
        @keyframes hero-chip-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35); }
            50% { transform: scale(1.04); box-shadow: 0 6px 22px rgba(45, 212, 191, 0.35); }
        }
        .hero-group-chip-count {
            display: inline-block;
            margin-left: 4px;
            padding: 1px 6px;
            border-radius: 999px;
            background: rgba(45, 212, 191, 0.9);
            color: #031a35;
            font-size: 10px;
            font-weight: 800;
        }
        /* Legacy hub nodes — unused in circular ring mode */
        .hero-group-hub-sub {
            display: block;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(45, 212, 191, 0.9);
            text-align: center;
            margin-top: 2px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }
        .hero-group-hub-count {
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 22px;
            height: 22px;
            padding: 0 5px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(20, 120, 100, 0.95));
            color: #031a35;
            font-size: 11px;
            font-weight: 800;
            line-height: 22px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
            z-index: 30;
            pointer-events: none;
        }
        /* Inner ring: smaller orbit of products around expanded hub */
        .hero-graph-inner-ring {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 23;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s;
        }
        .hero-graph-inner-ring.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: none;
        }
        .hero-inner-ring-label {
            position: absolute;
            left: 50%;
            top: calc(var(--hero-circle-cy, 50%) - 13.5rem);
            transform: translateX(-50%);
            z-index: 27;
            font-size: clamp(10px, 1.1vw, 13px);
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
            pointer-events: none;
            white-space: nowrap;
        }
        .hero-inner-ring-count {
            color: rgba(45, 212, 191, 0.95);
            font-weight: 800;
        }
        .hero-inner-ring-orbit {
            position: absolute;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .hero-inner-ring-orbit .hero-inner-product {
            position: absolute;
            left: 50%;
            top: 50%;
            width: clamp(40px, 4.2vw, 72px) !important;
            height: clamp(40px, 4.2vw, 72px) !important;
            min-width: clamp(40px, 4.2vw, 72px) !important;
            min-height: clamp(40px, 4.2vw, 72px) !important;
            max-width: clamp(40px, 4.2vw, 72px) !important;
            max-height: clamp(40px, 4.2vw, 72px) !important;
            pointer-events: auto;
            transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
            z-index: 24;
        }
        .hero-inner-ring-orbit .hero-inner-product:hover {
            z-index: 25;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 1), 0 10px 28px rgba(0, 0, 0, 0.4);
        }
        .hero-inner-ring-orbit .hero-product-float-label {
            font-size: 9px;
            opacity: 0.72;
            transition: opacity 0.2s ease;
        }
        .hero-inner-ring-orbit .hero-inner-product:hover .hero-product-float-label,
        .hero-inner-ring-orbit .hero-inner-product:focus-visible .hero-product-float-label {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-group-switcher {
                bottom: max(1%, env(safe-area-inset-bottom, 0px));
                padding: 0 max(10px, env(safe-area-inset-left, 0px)) 0 max(10px, env(safe-area-inset-right, 0px));
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-group-chip {
                padding: 6px 10px;
                font-size: 9px;
            }
            .hero-inner-ring-label {
                top: calc(var(--hero-circle-cy, 50%) - 10rem);
                font-size: 9px;
            }
            .hero-group-hub {
                width: clamp(56px, 14vw, 88px) !important;
                height: clamp(56px, 14vw, 88px) !important;
                min-width: clamp(56px, 14vw, 88px) !important;
                min-height: clamp(56px, 14vw, 88px) !important;
                max-width: clamp(56px, 14vw, 88px) !important;
                max-height: clamp(56px, 14vw, 88px) !important;
            }
            .hero-inner-ring-orbit .hero-inner-product {
                width: clamp(36px, 10vw, 52px) !important;
                height: clamp(36px, 10vw, 52px) !important;
                min-width: clamp(36px, 10vw, 52px) !important;
                min-height: clamp(36px, 10vw, 52px) !important;
                max-width: clamp(36px, 10vw, 52px) !important;
                max-height: clamp(36px, 10vw, 52px) !important;
            }
        }
        .hero-graph-nodes {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 25;
            pointer-events: none;
            transform-origin: var(--hero-circle-cx, 50%) var(--hero-circle-cy, 50%);
            /* Rotation disabled for published site: was hero-gear-rotate 200s – widgets stay fixed to avoid distracting movement */
        }
        /* Very slow continuous gear rotation: one full turn in 200s for a calm, dynamic orbit – kept for reference, not applied */
        @keyframes hero-gear-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .hero-graph-nodes:hover {
            animation-play-state: paused;
        }
        .hero-graph-nodes:hover .hero-product-float-inner {
            animation-play-state: paused;
        }
        .hero-graph-nodes a,
        .hero-graph-nodes button {
            pointer-events: auto;
        }
        /* Graph node (all products): position set inline by JS; smooth move when gear rotates (29s) */
        .hero-product-float-graph {
            position: absolute;
            transform: translate(-50%, -50%);
            z-index: 21;
            transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), top 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Counter-rotate: only used if parent rotated; we use orbit so inner needs no animation */
        .hero-product-graph .hero-product-float-inner {
            display: block;
            position: relative;
            width: 100%;
            height: 100%;
            transform-origin: 50% 50%;
        }
        @keyframes hero-gear-counter {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }
        /* Calm ocean wave: gentle vertical bob */
        @keyframes hero-wave {
            0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
            25% { transform: translate(-50%, -50%) translateY(-8px) scale(1.03); }
            50% { transform: translate(-50%, -50%) translateY(0) scale(1); }
            75% { transform: translate(-50%, -50%) translateY(8px) scale(0.97); }
        }
        /* Circular position movement only: widget shape stays fixed, its position traces a circle (like a gear's center moving on a track) */
        @keyframes hero-orbit-clockwise {
            0%   { transform: translate(-50%, -50%) translate(0, -10px); }
            25%  { transform: translate(-50%, -50%) translate(10px, 0); }
            50%  { transform: translate(-50%, -50%) translate(0, 10px); }
            75%  { transform: translate(-50%, -50%) translate(-10px, 0); }
            100% { transform: translate(-50%, -50%) translate(0, -10px); }
        }
        /* Base: widget shape fixed. Position set by JS (each widget moves to next slot); transition animates the move. */
        .hero-product-graph .hero-product-float {
            width: clamp(44px, 5.5vw, 100px) !important;
            height: clamp(44px, 5.5vw, 100px) !important;
            min-width: clamp(44px, 5.5vw, 100px) !important;
            min-height: clamp(44px, 5.5vw, 100px) !important;
            max-width: clamp(44px, 5.5vw, 100px) !important;
            max-height: clamp(44px, 5.5vw, 100px) !important;
            padding: 0 !important;
            border-radius: 12px !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
            aspect-ratio: 1 !important;
            border: 1px solid rgba(255, 255, 255, 0.6);
            animation: hero-float-in 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
            transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), left 0.7s cubic-bezier(0.4, 0, 0.2, 1), top 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.2s ease;
        }
        .hero-product-graph .hero-product-float:hover {
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 1), 0 12px 32px rgba(0, 0, 0, 0.45);
            border-color: rgba(255, 255, 255, 1);
            border-width: 1px;
            transform: translate(-50%, -50%) scale(1.18);
        }
        /* 5s loading bar: snake that grows around the border (gets longer over time) */
        .hero-product-graph .hero-product-float.hero-product-float--loading {
            border-color: rgba(255, 255, 255, 0.3);
        }
        @property --hero-load-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }
        .hero-product-graph .hero-product-float.hero-product-float--loading::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            border: 2px solid transparent;
            background: conic-gradient(from -90deg, rgba(255, 255, 255, 0.95) 0deg, rgba(255, 255, 255, 0.95) var(--hero-load-angle), transparent var(--hero-load-angle), transparent 360deg) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 2px;
            box-sizing: border-box;
            pointer-events: none;
            z-index: 0;
            animation: hero-loading-snake 3s linear forwards;
        }
        .hero-product-graph .hero-product-float .hero-product-float-img,
        .hero-product-graph .hero-product-float .hero-product-float-label {
            position: relative;
            z-index: 1;
        }
        @keyframes hero-loading-snake {
            to { --hero-load-angle: 360deg; }
        }
        .hero-product-graph .hero-product-float .hero-product-float-img {
            position: absolute !important;
            left: 0 !important;
            top: 0 !important;
            width: 100% !important;
            height: 100% !important;
            min-width: 100% !important;
            min-height: 100% !important;
            max-width: 100% !important;
            max-height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
            border-radius: 10px !important;
            display: block !important;
            aspect-ratio: 1 !important;
        }
        /* Desktop: same viewport ratio, slightly larger cap */
        @media (min-width: 769px) {
            .hero-product-graph .hero-product-float {
                width: clamp(56px, 5.5vw, 110px) !important;
                height: clamp(56px, 5.5vw, 110px) !important;
                min-width: clamp(56px, 5.5vw, 110px) !important;
                min-height: clamp(56px, 5.5vw, 110px) !important;
                max-width: clamp(56px, 5.5vw, 110px) !important;
                max-height: clamp(56px, 5.5vw, 110px) !important;
                padding: 0;
                border-width: 1px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
                animation: hero-float-in 0.5s ease-out forwards;
                transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), left 0.7s cubic-bezier(0.4, 0, 0.2, 1), top 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.2s ease;
            }
            .hero-product-graph .hero-product-float .hero-product-float-img {
                position: absolute !important;
                left: 0 !important;
                top: 0 !important;
                width: 100% !important;
                height: 100% !important;
                min-width: 100% !important;
                min-height: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
                object-fit: contain !important;
                object-position: center !important;
                border-radius: 12px !important;
            }
            .hero-product-graph .hero-product-float:hover {
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 1), 0 14px 36px rgba(0, 0, 0, 0.5);
                border-color: rgba(255, 255, 255, 1);
                border-width: 1px;
                transform: translate(-50%, -50%) scale(1.18);
            }
            /* Labels always visible on desktop */
            .hero-product-graph .hero-product-float .hero-product-float-label {
                opacity: 1;
                visibility: visible;
                font-size: 0.65rem;
                padding: 3px 5px;
                margin-bottom: 4px;
                max-width: 72px;
                white-space: normal;
                text-align: center;
                line-height: 1.2;
            }
            .hero-product-graph .hero-product-float:hover .hero-product-float-label {
                opacity: 1;
                visibility: visible;
            }
        }
        @keyframes hero-float-subtle {
            0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
            50% { transform: translate(-50%, -50%) translateY(-4px) scale(1.02); }
        }
        /* Position rotation is driven by JS (each widget moves to next slot); no CSS duration needed */
        /* Widget = 65×64 square with rounded corners */
        .hero-product-float {
            position: absolute;
            z-index: 21;
            width: 65px;
            height: 64px;
            border-radius: 12px;
            background: none;
            background-color: transparent;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            border: 3px solid rgba(255, 255, 255, 0.9);
            box-sizing: border-box;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            display: block;
            text-decoration: none;
            transition: box-shadow 0s;
            overflow: hidden;
            transform: translate(-50%, -50%);
            animation: hero-float-in 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
        }
        .hero-product-float:hover,
        .hero-product-float.hero-product-float-magnifier-focus {
            background: none;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 12px 36px rgba(0, 0, 0, 0.5);
            opacity: 1;
        }
        /* With logo: show product image filling the 360×360 circle */
        .hero-product-float.hero-product-float-with-logo {
            background-image: none !important;
            background-color: transparent;
        }
        .hero-product-float.hero-product-float-with-logo::before {
            display: none;
        }
        .hero-product-float svg,
        .hero-product-float .hero-product-float-img {
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            display: block;
            box-sizing: border-box;
        }
        /* Show the image – 360×360 icon visible */
        .hero-product-float.hero-product-float-with-logo .hero-product-float-img {
            position: absolute !important;
            left: 0 !important;
            top: 0 !important;
            width: 100% !important;
            height: 100% !important;
            min-width: 100% !important;
            min-height: 100% !important;
            overflow: hidden !important;
            opacity: 1 !important;
            pointer-events: none !important;
        }
        /* Four icons: staggered entrance + float */
        .hero-product-float-1 { left: calc(22% + 280px); top: calc(28% + 25px); animation-delay: 0s, 0.55s; }     /* Hotel */
        .hero-product-float-2 { left: calc(40% + 100px); top: 28%;   animation-delay: 0.08s, 0.63s; }   /* Real Estate */
        .hero-product-float-3 { left: calc(58% - 20px); top: 28%;   animation-delay: 0.16s, 0.71s; }   /* Gym */
        .hero-product-float-4 { left: calc(76% - 204px); top: calc(28% + 40px); animation-delay: 0.24s, 0.79s; }   /* Online Shop */
        .hero-product-float-5 { left: 55.1%; top: 64.1%; animation-delay: 0.4s; }   /* bottom */
        .hero-product-float-6 { left: 44.9%; top: 64.1%; animation-delay: 1.2s; }   /* bottom-left */
        .hero-product-float-7 { left: 37%;   top: 57.5%; animation-delay: 2s; }     /* left */
        .hero-product-float-8 { left: 35.2%; top: 47.4%; animation-delay: 2.8s; }   /* top-left */
        .hero-product-float-9 { left: 40.4%; top: 38.5%; animation-delay: 0.2s; }   /* between 8 and 1 */
        @keyframes hero-float-in {
            0% { transform: translate(-50%, -50%) scale(0.85) translateY(18px); }
            100% { transform: translate(-50%, -50%) scale(1) translateY(0); }
        }
        @keyframes hero-float {
            0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
            50% { transform: translate(-50%, -50%) translateY(-8px) scale(1.04); }
        }
        .hero-product-float-label {
            position: absolute;
            left: 50%;
            bottom: 100%;
            margin-bottom: 8px;
            transform: translateX(-50%);
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            color: #fff;
            background: rgba(10, 25, 41, 0.9);
            padding: 6px 10px;
            border-radius: 6px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 20;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        }
        .hero-product-float:hover .hero-product-float-label {
            opacity: 1;
            visibility: visible;
        }
        
        /* Floating elements animation */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-color), var(--teal-accent));
            filter: blur(60px);
            opacity: 0.2;
            z-index: 1;
            animation: float 20s infinite ease-in-out;
        }
        
        .float-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
        .float-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation-delay: -5s; background: var(--primary-accent); }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 50px); }
        }

        .trust-strip {
            border-bottom: 1px solid var(--border-light);
            padding: 40px 0;
            background: white;
            position: relative;
            z-index: 10;
        }
        .trust-strip p {
            text-align: center;
            color: var(--text-light);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
        }
        .trust-logos {
            display: flex;
            justify-content: center;
            gap: 64px;
            flex-wrap: wrap;
            align-items: center;
        }
        .trust-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0.6;
            transition: opacity 0.2s;
        }
        .trust-logo:hover {
            opacity: 1;
        }

        .section-header-new {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
            padding: 0 16px;
        }
        .section-header-new h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }
        .section-header-new p {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }
        .value-card {
            padding: 40px;
            border-radius: 24px;
            background: white;
            border: 1px solid var(--border-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--teal-accent));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .value-card:hover {
            transform: translateY(-8px);
            border-color: transparent;
            box-shadow: var(--shadow-xl);
        }
        .value-card:hover::before {
            opacity: 1;
        }
        .value-icon {
            width: 64px;
            height: 64px;
            background: var(--bg-secondary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            color: var(--cta-primary);
            transition: all 0.3s;
        }
        .value-card:hover .value-icon {
            background: var(--cta-primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--text-primary);
            font-weight: 700;
        }
        .value-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .live-demo-section {
            background: #f8fafc;
            color: var(--text-primary);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .live-demo-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        .live-demo-section h2 {
            font-size: 3rem;
            margin-bottom: 24px;
            color: var(--text-primary);
            font-weight: 800;
        }
        .live-demo-section p {
            font-size: 1.35rem;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .demo-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .demo-btn {
            background: white;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            color: var(--text-primary);
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .demo-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        /* Tablet: single column, product floats still percentage-based with reduced offsets */
        @media (max-width: 1200px) {
            .hero-new { min-height: 700px; }
            .hero-product-float-1 { left: calc(18% + 180px); top: calc(26% + 20px); }
            .hero-product-float-2 { left: calc(38% + 60px); top: 26%; }
            .hero-product-float-3 { left: calc(58% - 20px); top: 26%; }
            .hero-product-float-4 { left: calc(78% - 140px); top: calc(26% + 30px); }
        }
        @media (max-width: 992px) {
            .hero-new { min-height: 650px; }
            .hero-new-content { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 0 20px; }
            .hero-text-column { text-align: center; }
            .hero-actions { justify-content: center; }
            .hero-stats-column { flex-direction: row; flex-wrap: wrap; justify-content: center; }
            .stat-card { flex: 1; min-width: 200px; justify-content: center; }
            .hero-product-floats { min-height: 280px; }
            .hero-product-float { width: 58px; height: 56px; }
            .hero-product-graph .hero-product-float { width: clamp(52px, 6.5vw, 88px) !important; height: clamp(52px, 6.5vw, 88px) !important; min-width: clamp(52px, 6.5vw, 88px) !important; min-height: clamp(52px, 6.5vw, 88px) !important; max-width: clamp(52px, 6.5vw, 88px) !important; max-height: clamp(52px, 6.5vw, 88px) !important; }
            .hero-product-float-1 { left: 14%; top: 24%; }
            .hero-product-float-2 { left: 38%; top: 24%; }
            .hero-product-float-3 { left: 62%; top: 24%; }
            .hero-product-float-4 { left: 86%; top: 24%; }
            .hero-product-float-5, .hero-product-float-6, .hero-product-float-7, .hero-product-float-8, .hero-product-float-9 { left: 50%; top: 50%; }
        }
        @media (max-width: 768px) {
            .hero-new--orbit-first { min-height: 620px; max-height: none; }
            .hero-pain-ticker {
                padding: max(112px, calc(env(safe-area-inset-top, 0px) + 96px)) 10px 6px;
            }
            .hero-pain-ticker-text { font-size: 0.6875rem; padding: 4px 10px; }
            .hero-orbit-canvas { min-height: 300px; }
            .hero-orbit-footer { padding: 8px 12px 18px; }
            .hero-orbit-actions { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
            .hero-orbit-actions .btn-primary-new,
            .hero-orbit-actions .btn-secondary-new { width: 100%; justify-content: center; min-height: 44px; }
            .hero-product-graph .hero-product-float { width: clamp(48px, 10vw, 72px) !important; height: clamp(48px, 10vw, 72px) !important; min-width: clamp(48px, 10vw, 72px) !important; min-height: clamp(48px, 10vw, 72px) !important; max-width: clamp(48px, 10vw, 72px) !important; max-height: clamp(48px, 10vw, 72px) !important; }
            .hero-new-content { padding: 0 16px; gap: 32px; }
            .hero-title { font-size: clamp(1.75rem, 5vw, 2.75rem); }
            .hero-subtitle { font-size: clamp(0.95rem, 2.5vw, 1.15rem); max-width: 100%; margin-bottom: 28px; }
            .hero-actions { flex-direction: column; padding: 0 16px; gap: 12px; }
            .hero-actions .btn-primary-new, .hero-actions .btn-secondary-new { width: 100%; justify-content: center; min-height: 48px; }
            .trust-logos { gap: 24px; padding: 0 16px; }
            .trust-logo { font-size: 1.1rem; }
            .value-props { padding: 64px 0; }
            .section-header-new { margin-bottom: 48px; padding: 0 16px; }
            .section-header-new h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
            .section-header-new p { font-size: clamp(0.95rem, 2vw, 1.2rem); }
            .value-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
            .about-grid { grid-template-columns: 1fr; gap: 32px; }
            .about-stats { grid-template-columns: 1fr 1fr; }
            .prism-stack-figure { order: -1; }
            .value-card { padding: 28px 24px; }
            .value-card h3 { font-size: 1.25rem; }
            .value-card p { font-size: 0.95rem; }
            .demo-actions { flex-direction: column; align-items: stretch; padding: 0 16px; }
            .demo-btn { justify-content: center; min-height: 48px; }
            .hero-stats-column { flex-direction: column; }
            .hero-product-floats { min-height: 220px; bottom: 10%; }
            .hero-product-float { width: 52px; height: 50px; border-radius: 10px; border-width: 1px; }
            .hero-product-graph .hero-product-float { width: clamp(48px, 10vw, 72px) !important; height: clamp(48px, 10vw, 72px) !important; min-width: clamp(48px, 10vw, 72px) !important; min-height: clamp(48px, 10vw, 72px) !important; max-width: clamp(48px, 10vw, 72px) !important; max-height: clamp(48px, 10vw, 72px) !important; border-radius: 12px !important; }
            .hero-product-float.hero-product-float-with-logo .hero-product-float-img {
                width: 100% !important; height: 100% !important;
                min-width: 100% !important; min-height: 100% !important;
            }
            .hero-product-graph .hero-product-float .hero-product-float-img {
                width: 100% !important; height: 100% !important;
                min-width: 100% !important; min-height: 100% !important;
                max-width: 100% !important; max-height: 100% !important;
                left: 0 !important; top: 0 !important;
                object-fit: contain !important;
                object-position: center !important;
            }
            .hero-product-float svg { width: 100%; height: 100%; }
            .hero-product-float-1 { left: 12%; top: 22%; }
            .hero-product-float-2 { left: 37%; top: 22%; }
            .hero-product-float-3 { left: 63%; top: 22%; }
            .hero-product-float-4 { left: 88%; top: 22%; }
            .hero-product-float-5, .hero-product-float-6, .hero-product-float-7, .hero-product-float-8, .hero-product-float-9 { left: 50%; top: 50%; }
            .stat-card { padding: 16px; min-width: 0; }
            .stat-icon { width: 40px; height: 40px; font-size: 1.2rem; }
            .stat-info h4 { font-size: 1.2rem; }
            .stat-info p { font-size: 0.75rem; }
        }
        @media (max-width: 576px) {
            .hero-new--orbit-first { min-height: 580px; }
            .hero-orbit-canvas { min-height: 260px; }
            .hero-product-float { width: 44px; height: 42px; border-radius: 8px; }
            .hero-product-graph .hero-product-float { width: clamp(44px, 14vw, 64px) !important; height: clamp(44px, 14vw, 64px) !important; min-width: clamp(44px, 14vw, 64px) !important; min-height: clamp(44px, 14vw, 64px) !important; max-width: clamp(44px, 14vw, 64px) !important; max-height: clamp(44px, 14vw, 64px) !important; border-radius: 12px !important; }
            .hero-product-float-1 { left: 10%; top: 20%; }
            .hero-product-float-2 { left: 35%; top: 20%; }
            .hero-product-float-3 { left: 65%; top: 20%; }
            .hero-product-float-4 { left: 90%; top: 20%; }
            .hero-product-float-label { font-size: 0.65rem; padding: 4px 6px; margin-bottom: 4px; }
            .trust-strip { padding: 24px 12px; }
            .trust-logos { gap: 16px; }
            .value-props { padding: 48px 0; }
            .value-card { padding: 20px 16px; }
        }
        @media (max-width: 400px) {
            .hero-new--orbit-first { min-height: 560px; }
            .hero-orbit-canvas { min-height: 240px; }
            .hero-product-float { width: 38px; height: 36px; }
            .hero-product-graph .hero-product-float { width: clamp(40px, 14vw, 56px) !important; height: clamp(40px, 14vw, 56px) !important; min-width: clamp(40px, 14vw, 56px) !important; min-height: clamp(40px, 14vw, 56px) !important; max-width: clamp(40px, 14vw, 56px) !important; max-height: clamp(40px, 14vw, 56px) !important; border-radius: 10px !important; }
            .hero-product-float-1 { left: 8%; top: 18%; }
            .hero-product-float-2 { left: 33%; top: 18%; }
            .hero-product-float-3 { left: 67%; top: 18%; }
            .hero-product-float-4 { left: 92%; top: 18%; }
        }

        /* Hero product modal: AI gate + fly-in card */
        .hero-product-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s linear 0.5s, opacity 0.3s ease;
        }
        .hero-product-modal.is-open {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            transition: visibility 0s, opacity 0.2s ease;
        }
        .hero-product-modal { pointer-events: none; }
        .hero-product-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(10, 25, 41, 0.85);
            backdrop-filter: blur(8px);
        }
        .hero-product-modal-gate {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            background: linear-gradient(180deg, #0a1929 0%, #0d2137 50%, #0a1929 100%);
            box-shadow: inset 0 0 60px rgba(0, 120, 200, 0.15);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }
        .hero-product-modal-gate-left {
            left: 0;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            transform: translateX(0);
        }
        .hero-product-modal.is-gate-open .hero-product-modal-gate-left {
            transform: translateX(-100%);
        }
        .hero-product-modal-gate-right {
            right: 0;
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            transform: translateX(0);
        }
        .hero-product-modal.is-gate-open .hero-product-modal-gate-right {
            transform: translateX(100%);
        }
        .hero-product-modal-content-wrap {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: min(420px, 92vw);
            max-height: min(520px, 85vh);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-product-modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 320px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
            transform: scale(0.3);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) 0.25s, opacity 0.35s ease 0.2s;
        }
        .hero-product-modal.is-gate-open .hero-product-modal-content {
            transform: scale(1);
            opacity: 1;
        }
        .hero-product-modal.is-closing .hero-product-modal-content {
            transform: scale(0.3);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.25s ease;
        }
        .hero-product-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s;
        }
        .hero-product-modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        .hero-product-cards {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 320px;
        }
        .hero-product-card {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px 20px;
            border-radius: 16px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0s linear 0.35s;
            box-sizing: border-box;
            overflow: hidden;
        }
        .hero-product-card.is-active {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.35s ease, visibility 0s;
        }
        .hero-product-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }
        .hero-product-card-graphic {
            width: 120px;
            height: 120px;
            margin: 16px 0;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-product-card-graphic svg {
            width: 80px;
            height: 80px;
        }
        .hero-product-card-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            max-width: 100%;
            line-height: 1.45;
            margin: 0;
        }
        .hero-product-card-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
            padding: 8px 14px;
            max-width: 100%;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 10px;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
            box-sizing: border-box;
        }
        .hero-product-card-link:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
            color: #fff;
            transform: translateY(-2px);
        }
        .hero-product-card-product-img {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            max-width: 36px;
            max-height: 36px;
            object-fit: contain;
            object-position: center;
            border-radius: 8px;
            flex-shrink: 0;
            display: block;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
        }
        /* Card 0: Gym | 1: Real Estate | 2: Law | 3: Hospitals | 4: Dentals | 5: Hotel | 6: Shop | 7: Industry | 8: Restaurants */
        .hero-product-card--0 { background: linear-gradient(145deg, #1a3a52 0%, #0d2840 50%, #0a1929 100%); }
        .hero-product-card--0 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(255, 160, 80, 0.3), transparent 60%); border-radius: 50%; }
        .hero-product-card--1 { background: linear-gradient(145deg, #1e3d5c 0%, #0f2d48 50%, #0a1929 100%); }
        .hero-product-card--1 .hero-product-card-graphic { background: radial-gradient(circle at 70% 30%, rgba(80, 200, 180, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--2 { background: linear-gradient(145deg, #182d42 0%, #0c2436 50%, #0a1929 100%); }
        .hero-product-card--2 .hero-product-card-graphic { background: radial-gradient(circle at 45% 55%, rgba(180, 160, 255, 0.3), transparent 60%); border-radius: 50%; }
        .hero-product-card--3 { background: linear-gradient(145deg, #152f45 0%, #0b2235 50%, #0a1929 100%); }
        .hero-product-card--3 .hero-product-card-graphic { background: radial-gradient(circle at 40% 60%, rgba(100, 220, 180, 0.3), transparent 60%); border-radius: 50%; }
        .hero-product-card--4 { background: linear-gradient(145deg, #1c3a54 0%, #0d2740 50%, #0a1929 100%); }
        .hero-product-card--4 .hero-product-card-graphic { background: radial-gradient(circle at 50% 40%, rgba(255, 220, 120, 0.25), transparent 65%); border-radius: 50%; }
        .hero-product-card--5 { background: linear-gradient(145deg, #1a3a52 0%, #0d2840 50%, #0a1929 100%); }
        .hero-product-card--5 .hero-product-card-graphic { background: radial-gradient(circle at 30% 30%, rgba(100, 180, 255, 0.3), transparent 60%); border-radius: 50%; }
        .hero-product-card--6 { background: linear-gradient(145deg, #1a3850 0%, #0e2a42 50%, #0a1929 100%); }
        .hero-product-card--6 .hero-product-card-graphic { background: radial-gradient(circle at 60% 40%, rgba(150, 120, 255, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--7 { background: linear-gradient(145deg, #1a3348 0%, #0d2638 50%, #0a1929 100%); }
        .hero-product-card--7 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(100, 180, 220, 0.3), transparent 65%); border-radius: 50%; }
        .hero-product-card--8 { background: linear-gradient(145deg, #1e3548 0%, #0f2838 50%, #0a1929 100%); }
        .hero-product-card--8 .hero-product-card-graphic { background: radial-gradient(circle at 55% 45%, rgba(255, 140, 100, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--9 { background: linear-gradient(145deg, #1a2f4a 0%, #121f38 50%, #0a1929 100%); }
        .hero-product-card--9 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--10 { background: linear-gradient(145deg, #312e81 0%, #1e1b4b 50%, #0f172a 100%); }
        .hero-product-card--10 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--11 { background: linear-gradient(145deg, #1A365D 0%, #2C5282 50%, #0f2744 100%); }
        .hero-product-card--11 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(154, 123, 58, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--12 { background: linear-gradient(145deg, #4338ca 0%, #312e81 50%, #1e1b4b 100%); }
        .hero-product-card--12 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--13 { background: linear-gradient(145deg, #134e4a 0%, #0f766e 50%, #0f172a 100%); }
        .hero-product-card--13 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--14 { background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 50%, #082f49 100%); }
        .hero-product-card--14 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.35), transparent 65%); border-radius: 50%; }
        .hero-product-card--18 { background: linear-gradient(145deg, #312e81 0%, #4c1d95 50%, #0f172a 100%); }
        .hero-product-card--18 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.4), transparent 65%); border-radius: 50%; }
        .hero-product-card--19 { background: linear-gradient(145deg, #312e81 0%, #1e1b4b 50%, #0f172a 100%); }
        .hero-product-card--20 { background: linear-gradient(145deg, #134e4a 0%, #0f766e 50%, #0f172a 100%); }
        .hero-product-card--21 { background: linear-gradient(145deg, #4338ca 0%, #312e81 50%, #1e1b4b 100%); }
        .hero-product-card--22 { background: linear-gradient(145deg, #0c4a6e 0%, #155e75 50%, #082f49 100%); }
        .hero-product-card--23 { background: linear-gradient(145deg, #3b0764 0%, #4c1d95 50%, #0f172a 100%); }
        .hero-product-card--24 { background: linear-gradient(145deg, #1e3a5f 0%, #0f2744 50%, #0a1929 100%); }
        .hero-product-card--25 { background: linear-gradient(145deg, #312e81 0%, #1e1b4b 50%, #0f172a 100%); }
        .hero-product-card--26 { background: linear-gradient(145deg, #4c1d95 0%, #312e81 50%, #0f172a 100%); }
        .hero-product-card--27 { background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 50%, #082f49 100%); }
        .hero-product-card--27 .hero-product-card-graphic { background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.4), transparent 65%); border-radius: 50%; }
        .dropdown-group-label { padding: 10px 20px 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(15, 69, 61, 0.65); pointer-events: none; }
        .dropdown-divider { height: 1px; margin: 8px 16px; background: rgba(15, 69, 61, 0.12); list-style: none; }
        .hp-infra-tree {
            margin: 28px 0 0;
            padding: 20px 24px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
        }
        .hp-infra-tree-root { margin: 0 0 8px; color: #0f453d; }
        .hp-infra-tree ul { margin: 4px 0 4px 1.15rem; padding: 0; }
        .hp-infra-tree li { margin: 6px 0; line-height: 1.5; color: #334155; }
        .hp-outcome-grid--infra {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 24px;
        }
        .product-showcase { padding: 72px 0 48px; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
        .product-showcase-group { margin-bottom: 48px; }
        .product-showcase-group-title { font-size: 28px; font-weight: 700; color: #0f453d; margin: 0 0 8px; }
        .product-showcase-group-sub { font-size: 16px; color: #64748b; max-width: 720px; margin: 0 0 28px; line-height: 1.6; }
        .product-family-explainer {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
            margin: 0 0 40px;
            padding: 20px 22px;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .product-family-explainer-card h4 { margin: 0 0 8px; font-size: 15px; font-weight: 700; color: #0f453d; }
        .product-family-explainer-card p { margin: 0; font-size: 14px; line-height: 1.6; color: #64748b; }
        .product-family-explainer-card--vertical { border-left: 3px solid #0d9488; padding-left: 14px; }
        .product-family-explainer-card--platform { border-left: 3px solid #2563eb; padding-left: 14px; }
        .product-showcase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
        .product-showcase-card { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 14px; border: 1px solid #e2e8f0; background: #fff; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; min-height: 140px; }
        .product-showcase-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15, 69, 61, 0.1); border-color: #9ca3af; }
        .product-showcase-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(15, 69, 61, 0.06);
            overflow: hidden;
            flex-shrink: 0;
        }
        .product-showcase-group--vertical .product-showcase-icon {
            background: linear-gradient(145deg, #f0fdfa 0%, #ecfeff 100%);
            border-color: #ccfbf1;
        }
        .product-showcase-group--platform .product-showcase-icon {
            background: linear-gradient(145deg, #eff6ff 0%, #f0fdfa 100%);
            border-color: #dbeafe;
        }
        .product-showcase-group--research .product-showcase-icon {
            background: linear-gradient(145deg, #eef2ff 0%, #f5f3ff 100%);
            border-color: #c7d2fe;
        }
        .product-showcase-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            display: block;
        }
        .product-showcase-icon-fallback {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(145deg, #0f453d 0%, #134e4a 100%);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-showcase-card h3,
        .product-showcase-card h4 { margin: 0; font-size: 16px; font-weight: 700; color: #0f453d; }
        .product-showcase-card p { margin: 0; font-size: 13px; line-height: 1.5; color: #64748b; flex: 1; }
        .product-showcase-card span { font-size: 12px; font-weight: 600; color: #0d9488; }
        .product-showcase-card:focus-visible {
            outline: 2px solid #0d9488;
            outline-offset: 2px;
        }
        @media (max-width: 992px) {
            .product-showcase { padding: 56px 0 40px; }
            .product-showcase-group-title { font-size: 24px; }
            .product-showcase-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
        }
        @media (max-width: 768px) {
            .product-showcase { padding: 48px 0 32px; }
            .product-showcase-group { margin-bottom: 36px; }
            .product-showcase-group-title { font-size: 22px; }
            .product-showcase-group-sub { font-size: 15px; margin-bottom: 20px; max-width: 100%; }
            .product-showcase-grid { grid-template-columns: 1fr; gap: 12px; }
            .product-showcase-card {
                padding: 16px 18px;
                min-height: 44px;
                -webkit-tap-highlight-color: rgba(15, 69, 61, 0.12);
                touch-action: manipulation;
            }
            #product-showcase .section-subtitle,
            #aiweb-products .section-subtitle {
                font-size: 15px;
                line-height: 1.55;
                padding: 0 4px;
            }
            .products-group-heading { font-size: 20px; }
            .products-group-subheading { font-size: 13px; max-width: 100%; }
        }
        @media (max-width: 576px) {
            .product-showcase-group-title { font-size: 20px; }
            .product-showcase-icon { width: 44px; height: 44px; border-radius: 10px; }
            .product-showcase-icon img,
            .product-showcase-icon-fallback { width: 32px; height: 32px; }
        }
        @media (hover: none) and (pointer: coarse) {
            .product-showcase-card:hover { transform: none; box-shadow: none; }
            .product-showcase-card:active {
                transform: scale(0.98);
                border-color: #0d9488;
                box-shadow: 0 4px 12px rgba(15, 69, 61, 0.08);
            }
            .hero-ring-product {
                touch-action: manipulation;
                -webkit-tap-highlight-color: rgba(45, 212, 191, 0.2);
            }
            .hero-group-chip {
                min-height: 44px;
                padding: 10px 14px;
                touch-action: manipulation;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .product-showcase-card { transition: none; }
            .hero-group-chip.hero-group-chip--active { animation: none; }
        }
        .products-group-block { margin-bottom: 40px; }
        .products-group-heading { font-size: 22px; font-weight: 700; color: #0f453d; margin: 0 0 6px; }
        .products-group-subheading { font-size: 14px; color: #64748b; margin: 0 0 20px; max-width: 680px; line-height: 1.55; }
/* Buyer-problem map: inbound search intent before internal product taxonomy. */
.hp-problems{padding:clamp(64px,8vw,104px) 0;background:linear-gradient(180deg,#f8fafc 0%,#eef6ff 100%)}
.hp-problems-head{max-width:780px;margin:0 auto 34px;text-align:center}
.hp-problem-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.hp-problem-card{display:flex;flex-direction:column;min-height:280px;padding:28px;border:1px solid rgba(15,23,42,.12);border-radius:20px;background:rgba(255,255,255,.92);box-shadow:0 12px 34px rgba(15,23,42,.07);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.hp-problem-card:hover{transform:translateY(-3px);border-color:rgba(14,116,144,.4);box-shadow:0 18px 40px rgba(15,23,42,.11)}
.hp-problem-card--featured{background:linear-gradient(145deg,#06253a,#0b4962);color:#fff;border-color:rgba(103,232,249,.35)}
.hp-problem-card--directory{background:linear-gradient(145deg,#f0fdfa,#ecfeff)}
.hp-problem-label{display:inline-flex;align-self:flex-start;margin-bottom:14px;padding:5px 10px;border-radius:999px;background:#e0f2fe;color:#075985;font-size:.74rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
.hp-problem-card--featured .hp-problem-label{background:rgba(103,232,249,.16);color:#a5f3fc}
.hp-problem-card h3{margin:0 0 12px;font-size:clamp(1.22rem,2vw,1.55rem);line-height:1.25;letter-spacing:-.02em}
.hp-problem-card p{margin:0 0 22px;color:#475569;line-height:1.65}
.hp-problem-card--featured p{color:#d9f5fb}
.hp-problem-card a{margin-top:auto;color:#0369a1;font-weight:800;text-decoration:none}
.hp-problem-card--featured a{color:#67e8f9}
.hp-problem-card small{display:block;margin-top:10px;color:#64748b;line-height:1.45}
.hp-problem-card--featured small{color:#b6dce5}
/* The tree remains semantic/crawlable in HTML; cards are the cleaner visual summary. */
.hp-outcomes>.container>.hp-infra-tree{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
@media(max-width:760px){.hp-problem-grid{grid-template-columns:1fr}.hp-problem-card{min-height:0;padding:24px}}
