
        /* ---
        [ 1. CORE DESIGN PHILOSOPHY & GLOBALS ]
        --- */
       :root {
  /* 1a. Color Palette */
  --color-brand: #0055d4;           /* Vibrant Blue */
  --color-dark: #0a2540;            /* Deep Navy (for text & contrast) */
  --color-accent: #00c49a;          /* Teal/Green highlight */

  --color-text-dark: #1a1a1a;       /* Main Headings */
  --color-text-light: #555;         /* Body Copy */
  --color-text-inverted: #f0f0f0;   /* Light text on dark */
  --color-text-monochrome: #777;    /* Neutral gray for muted icons/text */

  --color-bg-light: #ffffff;        /* Default Background */
  --color-bg-subtle: #f9fafb;       /* Section Background */
  --color-border: #e6e6e6;          /* Light Border */
  --color-glow: rgba(0, 85, 212, 0.15); /* Faint blue glow */
  --color-brand-glow: 0 4px 20px rgba(0, 85, 212, 0.2); /* Soft brand glow */

  /* 1b. Semantic Status Colors */
  --color-success: var(--color-accent);
  --color-danger: #e74c3c;
  --color-warning: #fd7e14;

  /* 1c. Corner Roundness & Spacing */
  --border-radius-lg: 16px;         /* Large containers, visuals */
  --border-radius-md: 8px;          /* Buttons, smaller cards */
  --spacing-section: 120px;            
  --header-height: 84px; /* Height of the main nav header */

 /* 1d. Shadows & Effects */
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 25px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    -shadow-xl: 0 20px 50px rgba(0,0,0,0.25);
    --shadow-brand-hover: 0 8px 25px rgba(0, 85, 212, 0.15); /* Blue glow hover */
    --color-brand-glow: 0 4px 20px rgba(0, 85, 212, 0.2);

  /* 1e. Custom Table Vars (For Glassmorphism) */
  --xc-border: rgba(10, 23, 35, 0.1);
  --xc-glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --xc-head-bg: rgba(232, 240, 255, 0.7); /* More opaque for layering */
  --xc-head-text: #0b254b;
}

 *, *::before, *::after {		  box-sizing: border-box;		}

        html { scroll-behavior: smooth; }

        body {
            font-family: "Inter", -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--color-text-dark);
            background-color: var(--color-bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            width: 90%;
            max-width: 1600px;
            margin: 0 auto;
            z-index: 3;
            position: relative;
        }

        section { 
            padding-top: var(--spacing-section); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            /* CRITICAL FIX: Removed 'overflow: hidden;' which was making content invisible */
        }
        
        .section-light { background-color: var(--color-bg-subtle); }
        .section-dark { background-color: var(--color-dark); color: var(--color-text-inverted); }

         .section-intro-text {
            text-align: center; 
            max-width: 800px; 
            margin: -20px auto 60px auto; 
        }


        /* 1e. Typography (Clear hierarchy) */
        h1, h2, h3, h4 { 
            color: var(--color-dark); 
            line-height: 1.3; 
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

        h1 { font-size: 3.5rem; } /* Adjusted for one line */
        h2 { font-size: 2.75rem; text-align: center; margin: 0 0 60px 0; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.25rem; font-weight: 600; }
        p { font-size: 1.1rem; line-height: 1.7; color: var(--color-text-light); }
        p:last-child { margin-bottom: 0; }
        .section-dark p { color: var(--color-text-inverted); opacity: 0.9; }
        
        /* 1f. Animation (Subtle & Purposeful) */
        .animate-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---  [ 2. PREMIUM HEADER (GLASSMORPHISM) ]   --- */
        .premium-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.75); /* Semi-transparent */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.08); /* Softer, universal border */
            transition: all 0.3s ease;
        }
        
        /* This class is added by JS on scroll */
        .premium-header.scrolled {
            background: rgba(255, 255, 255, 0.75); 
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
            border-bottom: 1px solid rgba(0,0,0,0.08); 
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-logo {
            height: 44px; /* INCREASED: Logo height */
            width: auto;
            text-decoration: none;
            flex-shrink: 0;
        }
        .header-logo img {
            height: 100%;
            width: auto;
            display: block;
        }
        
        /* Desktop Navigation */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .header-nav-list {
            display: contents; /* Acts as desktop nav by default */
        }
         .header-nav a.active {
            color: var(--color-brand);
            font-weight: 700;
        }
        .header-nav a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-light);
            text-decoration: none;
            padding: 6px 12px;
            border-radius: var(--border-radius-md);
            /* ADDED: Transform for hover effect */
            transform: scale(1);
            transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
        }

        .header-nav a:hover {
            color: var(--color-dark);
            background-color: var(--color-bg-subtle);
            transform: scale(1.05); /* ADDED: Hover scale */
        }
        /* FIXED: Removed background from Contact Us */
        .header-nav a.header-cta {
            background: none;
            color: var(--color-text-light);
            padding: 6px 12px;
        }
        .header-nav a.header-cta:hover {
            background: var(--color-bg-subtle);
            color: var(--color-dark);
            transform: scale(1.05);
        }


        /* --- NEW: Mobile Navigation --- */
        .mobile-nav-toggle {
            display: none; /* Hidden on desktop */
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            margin-left: 15px;
        }
        .mobile-nav-toggle .icon-bar {
            display: block;
            width: 24px;
            height: 3px;
            background-color: var(--color-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .mobile-nav-toggle .icon-bar + .icon-bar {
            margin-top: 5px;
        }
        /* Mobile Nav "Open" State (X icon) */
        .mobile-nav-toggle.open .icon-bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-nav-toggle.open .icon-bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-nav-toggle.open .icon-bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
       
        /* ---   [ 3. PREMIUM HERO SECTION ]  --- */
        
        #hero-premium {
            padding-top: calc(var(--spacing-section) + 84px); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            overflow: hidden; 
            
            background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-dark) 100%);
        }
        
        .liquid-blobs {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
            overflow: hidden;
        }
        .gradient-blob {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.4;
        }
        .blob-1 {
            top: -150px;
            left: -200px;
            background: #0077ff;
            animation: move-blob-1 20s ease-in-out infinite alternate;
        }
        @keyframes move-blob-1 {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(200px, 100px) scale(1.3); }
        }
        .blob-2 {
            bottom: -200px;
            right: -200px;
            background: rgba(255, 255, 255, 0.2);
            animation: move-blob-2 25s ease-in-out infinite alternate;
        }
        @keyframes move-blob-2 {
            from { transform: translate(0, 0) scale(0.9); }
            to { transform: translate(-200px, -100px) scale(1.1); }
        }

        /* --- Hero Content --- */
        
        .hero-header-text {
            text-align: center;
            max-width: 900px; 
            margin: 0 auto 60px auto; 
        }
        .hero-header-text h1 { 
            font-size: 3.5rem; 
            margin: 0 0 25px 0; 
            color: #fff; 
            line-height: 1.3; 
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .hero-header-text p.subtitle {
            font-size: 1.25rem;
            color: #fff; 
            font-weight: 500;
            margin-bottom: 0;
            opacity: 0.9;
        }

        .hero-content-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr; /* Pillars | Video */
            /* UPDATED: Aligns items to be equal height */
            align-items: stretch; 
            gap: 40px; 
        }
        
        /* --- Glass Cards (Video and Pillar) --- */
        
        .interactive-glass-card {
            position: relative; 
            overflow: hidden; 
            border-radius: var(--border-radius-lg);
            
            background: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            
            box-shadow: var(--shadow-lg);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        #hero-premium .interactive-glass-card:hover {
          transform: translateY(-8px) scale(1.03);
          box-shadow: var(--shadow-xl);
        }

        #hero-premium .animate-item.is-visible {
          opacity: 1;
          transform: translateY(0);
        }

        #hero-premium .animate-item:hover {
          opacity: 1;
          transform: translateY(-4px);
        }
        .hero-visual {
            aspect-ratio: 16 / 9;
        }
        
        .hero-visual-content {
            width: 100%;
            height: 100%; 
            overflow: hidden; 
            z-index: 2; 
            position: relative;
            border-radius: var(--border-radius-lg); 
        }
        .hero-visual-content video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* --- Glass Pillar Card (Left Column) --- */
        .pillar-card-container {
            padding: 30px;
        }
        
        .pillars-wrapper {
            /* UPDATED: Use Flexbox to space pillars evenly */
            display: flex;
            flex-direction: column;
            justify-content: space-around; /* Evenly space 5 items */
            height: 100%; /* Fill the stretched card */
        }
        .pillar {
            display: flex;
            align-items: start;
            gap: 15px;
        }
        .pillar .icon {
            width: 40px; 
            height: 40px; 
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.15); 
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--border-radius-md);
            display: flex; 
            align-items: center; 
            justify-content: center;
        }
        .pillar .icon svg { 
            width: 24px; 
            height: 24px; 
            color: #fff; 
        }
        .pillar h4 { 
            margin: 0 0 5px 0; 
            font-size: 1.1rem;
            color: #fff; 
        }
        .pillar p { 
            font-size: 1rem; 
            line-height: 1.5; 
            margin: 0;
            color: var(--color-text-inverted); 
            opacity: 0.9;
        }
        
        .pillar-mobile-hidden {
            display: flex;
        }

      


		/* ---  [ 4. PREMIUM BACKGROUND (SINGLE GLOW) ]  --- */
        section.features { 
            padding-top: var(--spacing-section); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            /* Static base gradient */
            background-color: #f0f4f8; 
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
            overflow: hidden;
        }
        
        /* Background Glow/Animation (As requested by user) */
        .features::before {
            content: '';
            position: absolute;
            z-index: 1;
            border-radius: 50%;
            filter: blur(100px);
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
        }
        
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .features .container {
             position: relative;
             z-index: 2; /* Keep container content above BG */
        }
        
        /* --- [ TYPOGRAPHY ] --- */
        h2 { 
            font-size: 2.75rem; 
            text-align: center; 
            margin: 0 0 10px 0; /* UPDATED: Reduced bottom margin */
            color: var(--color-dark); 
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        h3 {
            font-size: 2rem;
            color: var(--color-dark); 
            line-height: 1.3; 
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0 0 20px 0;
        }
        p { 
            font-size: 1.1rem; 
            line-height: 1.7; 
            color: var(--color-text-light); 
            margin-bottom: 0;
        }

        /* NEW: Centered subtitle style */
        .xcproc-intro { 
            text-align: center; 
            max-width: 800px; 
            margin: 0 auto 60px auto; 
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* --- [ ANIMATION (for preview) ] --- */
        .animate-item { opacity: 1; transform: translateY(0); }

        /* --- "CURSOR-STYLE" FEATURES --- */
        .feature-box-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: 1fr 1.2fr; /* Text | Visual */
            align-items: center; /* Vertical centering */
            gap: 60px;
            
            /* NEW: Glassmorphism Style */
            background: rgba(255, 255, 255, 0.6); 
            backdrop-filter: blur(15px); 
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3); /* 2px border */
            border-radius: var(--border-radius-lg);
            padding: 60px;
            box-shadow: var(--shadow-md);

            /* UPDATED: Simple transition */
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; 
            position: relative;
            overflow: hidden; 
        }
        .feature-box.reverse {
            grid-template-columns: 1.2fr 1fr;
            align-items:center;
        }
        
        /* NEW: Solid blue border on hover */
        .feature-box:hover {
            border-color: var(--color-brand);
            box-shadow: var(--shadow-brand-hover);
            transform: translateY(-5px); /* Simple lift effect */
        }
        
        .feature-text, .feature-visual {
            /* Styles removed, no longer needed */
        }
        
        .feature-visual {
            height: 400px;
            /* NEW: Glassmorphism for visual */
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            overflow: hidden;
        }
        .feature-visual img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }


        /* ---        [ PREMIUM "HOW IT WORKS" SECTION ]        --- */
        
        .how-it-works {
            padding-top: var(--spacing-section); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            background-color: #f4f8ff;
        }
        
        .section-background-wrapper {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
            overflow: hidden; 
            
            background: linear-gradient(
                135deg, 
                #f5f9ff,
                #e6f0ff,
                #f4f8ff,
                #e6f0ff
            );
            background-size: 400% 400%;
            animation: move-liquid-base 30s ease-in-out infinite;
        }

        @keyframes move-liquid-base {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .liquid-blobs {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
        }
        .gradient-blob {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.4;
        }
        .blob-1 {
            top: 10%;
            left: -100px;
            background: rgba(0, 85, 212, 0.5); 
            animation: move-blob-1 20s ease-in-out infinite alternate;
        }
        .blob-2 {
            bottom: 10%;
            right: -100px;
            background: rgba(0, 196, 154, 0.4); 
            animation: move-blob-2 25s ease-in-out infinite alternate;
        }

        /* --- Section Content --- */
        
        .how-it-works h2 { 
            font-size: 2.75rem; 
            text-align: center; 
            margin: 0 0 60px 0; 
            color: var(--color-dark);
            line-height: 1.3; 
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        .how-it-works-grid { 
            display: grid; 
            grid-template-columns: 1fr 1.5fr; 
            gap: 80px; 
            position: relative; 
        }

        /* --- Glass Nav (Left) --- */
        .how-it-works-nav { 
            position: sticky; 
            top: 150px; 
            align-self: start;
            
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: var(--shadow-lg);
            
            padding: 30px;
            border-radius: var(--border-radius-lg);
        }
        
        .how-it-works-nav .card-heading {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-dark);
            padding: 0 20px 20px 20px;
            margin: 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .how-it-works-nav .step { 
            padding: 20px;
            border-radius: var(--border-radius-md);
            opacity: 0.6; 
            transition: opacity 0.3s ease, background 0.3s ease;
            position: relative;
        }
        .how-it-works-nav .step:first-of-type {
            margin-top: 20px;
        }
        
        .how-it-works-nav .step.active { 
            opacity: 1; 
            background: rgba(255, 255, 255, 0.7); 
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .how-it-works-nav .step-number { 
            font-size: 1rem; 
            font-weight: 700; 
            color: var(--color-brand); 
            margin-bottom: 8px; 
        }
        .how-it-works-nav .step h3 {
            font-size: 1.1rem;
            color: var(--color-dark);
            margin: 0 0 5px 0;
        }
        .how-it-works-nav .step p {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--color-text-light);
            margin: 0;
        }
        
        /* --- Glass Visuals (Right) --- */
        .how-it-works-visuals .visual-item { 
            height: 450px; 
            margin-bottom: 30px; 
            border-radius: var(--border-radius-lg); 
            overflow: hidden; 
            
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: var(--shadow-lg);
            
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .how-it-works-visuals .visual-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .how-it-works-visuals .visual-item img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        
        /* --- "Arrival" Animation --- */
        .animate-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transition-delay: var(--delay, 0s);
        }
        .animate-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        



/* ---
        [ 8. FINAL TABLE DESIGN (Glassmorphism + Floating) ]
        --- */
        .process-library{
            overflow: hidden;
        }
		/* Background Glow/Animation */
        .process-library::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .process-library .container {
             position: relative;
             z-index: 2;
             overflow: hidden;
        }
        
        /* --- [ TYPOGRAPHY ] --- */
        h2 { font-size: 2.75rem; text-align: center; margin: 0 0 10px 0; color: var(--color-dark); }
        .library-header p { 
            text-align: center; 
            max-width: 800px; 
            margin: 0 auto 60px auto; 
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--color-text-light);
        }
        
        /* --- [ ANIMATION (for preview) ] --- */
        .animate-item { opacity: 1; transform: translateY(0); }

        /* ---
        [ 8. FINAL TABLE DESIGN (Glassmorphism + Floating) ]
        --- */
        .xcpep-table-wrap {
            font-family: inherit;
            margin: 0 auto;
            /*max-width: 1300px; /* WIDER CONTAINER */
        }
        .xcpep-process-table {
            width: 100%;
            border-collapse: separate; 
            border-spacing: 0;
            
            /* GLASSMORHISM CORE */
            background: rgba(255, 255, 255, 0.6); 
            backdrop-filter: blur(15px); 
            -webkit-backdrop-filter: blur(15px);
            
            border: 1px solid rgba(255, 255, 255, 0.3); 
            border-radius: 10px; 
            overflow: hidden;
            box-shadow: var(--shadow-lg); 
            transition: all 0.3s ease;
        }
        .xcpep-process-table:hover {
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); 
        }

        .xcpep-process-table thead th {
            background: rgba(255, 255, 255, 0.8); 
            border-bottom: 1px solid var(--xc-border);
            color: var(--xc-head-text);
            text-align: left;
            padding: 10px 14px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .xcpep-process-table tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.1); 
        }

        /* --- TABLE CELL STYLING (The core fix) --- */
        .xcpep-process-table td {
            vertical-align: top;
            padding: 10px 14px 6px;
            border-bottom: 1px solid var(--xc-border); 
            font-size: 1rem;
            color: var(--color-text-dark);
            line-height: 1.5;
        }
        
        .xcpep-process-table td:first-child {
            /* Left Column: Anchored Blue/White Blur */
            min-width: 195px;
            font-weight: 600;
            color: var(--xc-head-text); 
            background: rgba(232, 240, 255, 0.6); 
            border-right: 1px solid rgba(0, 0, 0, 0.1); 
            padding-top: 20px; 
            padding-bottom: 20px;
            transition: background 0.3s ease;
        }
        
        .xcpep-process-table tbody tr:hover td:first-child {
            background: rgba(215, 230, 255, 0.7); /* Darker hover for left col */
        }
        
        /* Remove bottom border from last row cells */
        .xcpep-process-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        /* --- ACCORDION DETAILS STYLING --- */
        .xcpep-process-table details {
            border: 1px solid rgba(11,37,71,0.04);
            border-radius: var(--border-radius-md);
            background: var(--color-bg-light); /* White background for visibility */
            padding: 12px 15px; 
            transition: all 0.2s ease;
            cursor: default; 
        }
        .xcpep-process-table details[open] {
             box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .xcpep-process-table summary {
            cursor: pointer;
            font-weight: 600; 
            color: var(--color-brand); /* Brand blue by default */
            transition: color 0.2s ease;
            
            /* NEW: Remove default browser marker/arrow */
            list-style: none;
        }
        .xcpep-process-table summary::-webkit-details-marker {
             display: none;
        }
        
        .xcpep-process-table summary:hover {
            color: var(--color-dark); 
        }
        
        /* Custom Plus/Minus Toggle (Premium Look) */
        .xcpep-process-table summary:after {
            content: "+"; 
            float: right;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--color-brand);
            margin-top: -5px;
            transition: transform 0.2s ease;
        }
        .xcpep-process-table details[open] summary:after {
            content: "+";
            transform: rotate(45deg); 
        }
        
        /* --- TAGS (Inner UI) --- */
        .process-tag-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px; 
            margin: 10px 0 0 0; 
            border-top: 1px solid var(--color-border);
            padding-top: 10px;
        }
        .process-tag {
            background: var(--color-bg-subtle);
            border: 1px solid var(--color-border);
            color: var(--color-text-light);
            padding: 6px 12px;
            border-radius: var(--border-radius-md);
            font-size: 0.85rem; 
            font-weight: 500;
            flex-shrink: 0;
            transition: background 0.2s ease;
        }
        .process-tag:hover {
            background: #e9eff5;
        }




        /* ---
        [ 5. CLIENT MARQUEE & TESTIMONIALS (MERGED) ]
        --- */
       .trust-section {
            background: var(--color-bg-subtle);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            overflow: hidden; /* Overflow is OK here */
        }
        .trust-section h2.trust-heading {
            text-align: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-text-light);
            margin: 0 0 60px 0;
        }
        /* UPDATED: Subtle Testimonial */
        .trust-section .subtle-quote-wrapper {
            max-width: 800px;
            margin: 0 auto 50px auto; 
            text-align: center;
        }
        .trust-section .subtle-quote {
            font-size: 1.1rem; 
            font-weight: 500;
            font-style: italic; 
            color: var(--color-dark);
            line-height: 1.6;
            margin: 0;
        }
        .trust-section .quote-author {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text-light);
            margin-top: 10px;
        }
        
        .marquee-track {
            display: flex;
            width: fit-content;
            animation: scroll 30s linear infinite;
        }
        .marquee-logo {
            display: block;
            height: 50px; /* INCREASED logo size */
            margin: 0 45px;
            flex-shrink: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .marquee-logo .logo-grayscale {
            display: block;
            /* UPDATED: Swapped default opacity */
            opacity: 0.7; 
            filter: grayscale(100%);
            transition: opacity 0.3s ease;
        }
        .marquee-logo .logo-color {
            display: none;
        }
        .marquee-logo img {
            height: 100%;
            width: auto;
        }
        /* UPDATED: The "Focus" Hover Effect (Color default, White hover) */
        .marquee-track:hover .marquee-logo {
            opacity: 0.3;
        }
        .marquee-track .marquee-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        /* This is now the default state */
        .marquee-logo .logo-color {
            display: block;
        }
        .marquee-logo .logo-grayscale {
            display: none;
        }
        /* This is now the hover state */
        .marquee-track .marquee-logo:hover .logo-color {
            display: none;
        }
        .marquee-track .marquee-logo:hover .logo-grayscale {
            display: block;
            opacity: 1;
            filter: grayscale(0%); /* Keep it white, not gray */
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


        /* DELETED .testimonial-grid styles */

        /* ---
        [ 5. "CURSOR-STYLE" FEATURES ]
        --- */
        .feature-box-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: 1fr 1.2fr; /* Text | Visual */
            align-items: center; /* Vertical centering */
            gap: 60px;
            border: 1px solid var(--color-border);
            background: var(--color-bg-light);
            border-radius: var(--border-radius-lg);
            padding: 60px;
            box-shadow: var(--shadow-md);
        }
        .feature-box.reverse {
            grid-template-columns: 1.2fr 1fr;
            align-items:center;
        }
        

        .feature-text h3 { margin: 0 0 20px 0; }
        .feature-visual {
            height: 400px;
            background: var(--color-bg-subtle);
            border-radius: var(--border-radius-md);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            overflow: hidden;
        }
        .feature-visual img { width: 100%; height: 100%; object-fit: cover; }

        /* ---
        [ 7. xcPROC DATA HUB (LIGHT MODE) ]
        --- */
        .xcproc-intro { text-align: center; max-width: 800px; margin: 0px auto 60px auto; }
        .xcproc-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
        }
        .xcproc-nav {
            align-self: start; /* Fix for sticky */
            position: sticky;
            top: 150px; /* Offset for sticky header */
        }
        .xcproc-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .xcproc-nav li a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-text-light); /* Inactive */
            text-decoration: none;
            border-radius: var(--border-radius-md);
            transition: all 0.3s ease;
            position: relative;
            /* ACCESSIBILITY: Added role */
            role: tab; 
        }
        .xcproc-nav li a:hover {
            color: var(--color-dark);
            background: var(--color-bg-light);
        }
        .xcproc-nav li a.active {
            color: var(--color-brand); /* Active */
            background: #f0f6ff;
            font-weight: 700;
        }
        .xcproc-nav li a.active::before { /* Blue highlight bar */
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 50%;
            background: var(--color-brand);
            border-radius: 0 4px 4px 0;
        }
        .xcproc-nav .cta-link {
            display: block;
            margin-top: 20px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-brand);
        }

        .xcproc-content-pane {
            position: relative;
            min-height: 500px;
        }
        .xcproc-item {
            display: none;
            /* ACCESSIBILITY: Added role */
            role: tabpanel;
        }
        .xcproc-item.active {
            display: block;
            animation: contentFadeIn 0.5s ease;
        }
        @keyframes contentFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .xcproc-item h3 { margin-top: 0; }
        .xcproc-visual {
            width: 100%;
            height: 350px;
            margin-top: 25px;
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--color-bg-light);
        }
        .xcproc-visual img { width: 100%; height: 100%; object-fit: cover; }

        /* ---
        [ 8. PROCESS LIBRARY (PREMIUM ACCORDION) ]
        --- */
        .process-accordion .accordion-item {
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius-md);
            margin-bottom: 15px;
            background: var(--color-bg-light);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .process-accordion .accordion-item:hover {
            box-shadow: var(--shadow-sm);
        }
        /* ACCESSIBILITY: Changed <div> to <button> */
        .process-accordion .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.15rem;
            color: var(--color-dark);
            
            /* Button reset */
            width: 100%;
            background: none;
            border: none;
            text-align: left;
        }
        .process-accordion .accordion-header::after {
            content: '+';
            font-size: 1.8rem;
            color: var(--color-brand);
            transition: transform 0.3s ease;
            font-weight: 400;
        }
        /* ACCESSIBILITY: Use aria-expanded */
        .process-accordion .accordion-header[aria-expanded="true"]::after {
            transform: rotate(45deg);
        }
        .process-accordion .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            role: region;
        }
        .process-accordion .accordion-content-inner {
            padding: 0px 30px 30px 30px;
            border-top: 1px solid var(--color-border);
        }

        /* The "Tag/Badge" Grid */
        .process-tag-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 0 0;
        }
        .process-tag {
            background: var(--color-bg-subtle);
            border: 1px solid var(--color-border);
            color: var(--color-text-light);
            padding: 8px 15px;
            border-radius: var(--border-radius-md);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ---
       [ 9. ADVANCED DATA CAPTURE (GLASSMORPHISM) ]
        --- */
        .data-capture {
            /* New background for glass to blur */
            background-color: #f0f4f8; 
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
            overflow: hidden;
        }
        .data-capture::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .data-capture .container {
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        .capture-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .capture-card {
            padding: 30px;
            border-radius: var(--border-radius-lg);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            
            /* Glassmorphism Effect */
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .capture-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.75);
        }
        .capture-card h4 { margin: 0 0 10px 0; }
        .capture-video {
            height: 450px;
            width: 70%;
            background: #000;
            margin: 0 auto;
            border-radius: var(--border-radius-md);
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }
        .capture-video video { width: 100%; height: 100%; object-fit: cover; }
        .capture-video:hover{
            /*transform: perspective(1500px) scale(1.05);*/
            z-index: 10;
            border-color: rgba(0, 122, 255, 0.6);
            box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
        }


/*Manufactureing data*/
strong, b {
            font-weight: 600;
            color: var(--color-text-dark);
        }
        .animate-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- [ 2. PREMIUM BACKGROUND ] --- */
        .ai-flow-section {
            background-color: #f0f4f8;
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
            overflow: hidden;
        }
        .ai-flow-section::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .ai-flow-section .container { z-index: 2; }


        /* --- [ 3. NEW AI TIMELINE UI (MOBILE-FIRST) ] --- */
        
        .ai-flow-timeline {
            display: grid;
            /* Mobile-first: 1-column layout */
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 500px; /* Constrain width on mobile */
            margin: 0 auto;
        }

        .ai-flow-card {
            padding: 30px;
            border-radius: var(--border-radius-lg);
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        .ai-flow-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-brand-hover);
            border-color: var(--color-brand);
        }
        .ai-flow-card .icon {
            width: 40px;
            height: 40px;
            margin-bottom: 15px;
            color: var(--color-brand);
        }
        .ai-flow-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0 0 8px 0;
        }
        .ai-flow-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-text-light);
            margin: 0;
        }

        /* Core Hub Card Style */
        .ai-flow-card.hub-core {
            border-width: 2px;
            border-color: var(--color-brand);
            animation: pulse 2s infinite ease-out;
        }
        .ai-flow-card.hub-core .icon {
            color: var(--color-accent);
            width: 48px;
            height: 48px;
        }
        .ai-flow-card.hub-core h4 {
            color: var(--color-brand);
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 85, 212, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(0, 85, 212, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 85, 212, 0); }
        }

        /* Destinations Card (Grid inside a card) */
        .ai-flow-card.destinations {
            padding: 20px;
        }
        .ai-flow-card.destinations h4 {
             font-size: 1.25rem;
             color: var(--color-dark);
             margin-bottom: 20px;
        }
        .destinations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .destination-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            padding: 15px 10px;
            border-radius: var(--border-radius-md);
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .destination-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
            background: #fff;
        }
        .destination-item .icon {
            width: 32px;
            height: 32px;
            color: var(--color-text-light);
            margin-bottom: 0;
            opacity: 0.8;
        }
        .destination-item p {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-dark);
            line-height: 1.4;
        }

        /* Connector (Mobile-first: Vertical) */
        .ai-flow-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            position: relative;
        }
        .ai-flow-connector::before {
            content: '';
            position: absolute;
            width: 3px;
            height: 100%;
            background: var(--color-brand);
            opacity: 0.2;
            border-radius: 3px;
        }
        .ai-flow-connector-icon {
            width: 16px;
            height: 16px;
            color: var(--color-brand);
            animation: pulse-icon 1.5s infinite ease-in-out;
            position: relative;
            z-index: 1;
        }
        @keyframes pulse-icon {
            0% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 1; }
            100% { transform: scale(1); opacity: 0.5; }
        }


       /* ---
        [ 11. USE CASES (PREMIUM GRID) ]
        --- */
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            /* perspective: 1500px; */ /* <-- Removed */
        }
        .use-case-card {
            padding: 30px;
            background: rgba(255, 255, 255, 0.6); 
            backdrop-filter: blur(15px); 
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            
            /* transform-style: preserve-3d; */ /* <-- Removed */
            /* transition: all 0.1s linear, border-color 0.3s ease-out; */ /* <-- Replaced */
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* <-- New simple transition */
            position: relative;
            /* overflow: hidden; */ /* <-- Removed */
        }

        .use-case-card:hover {
            border-color: var(--color-brand);
            box-shadow: var(--shadow-brand-hover);
            transform: translateY(-5px); /* <-- Added simple lift effect */
        }

        /* REMOVED the entire .use-case-card::before CSS block for the sheen */

        .use-case-card .icon,
        .use-case-card h4,
        .use-case-card p {
            position: relative;
            /* z-index: 2; */ /* <-- Removed */
        }

        .use-case-card .icon {
            width: 40px;
            height: 40px;
            color: var(--color-brand);
            margin-bottom: 20px;
            display: block; 
        }
        .use-case-card h4 { 
            margin: 0 0 10px 0; 
        }
        .use-case-card p { 
            font-size: 1rem; 
            line-height: 1.6; 
            margin-bottom: 0;
            color: var(--color-text-light); 
        }
        


        /* ---
        [ NEW: COMPARISON TABLE (PREMIUM ACCORDION DESIGN) ]
        --- */
 

        /* UPDATED: Section now has the premium gradient and glow */
        section.comparison { 
            position: relative;
            /* NEW: Glassmorphism setup from cost model file */
            background-color: #f0f4f8; 
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
            overflow: hidden; /* Needed for the glow */
        }

        /* NEW: Background Glow/Animation from cost model file */
        .comparison::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* --- [ TYPOGRAPHY ] --- */
        h2 { 
            font-size: 2.75rem; 
            text-align: center; 
            margin: 0 0 10px 0; 
            color: var(--color-dark);
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        p { 
            font-size: 1.1rem; 
            line-height: 1.7; 
            color: var(--color-text-light); 
        }
        .xcproc-intro { 
            text-align: center; 
            max-width: 800px; 
            margin: 0 auto 60px auto; 
        }
        
        /* --- [ ANIMATION (Premium Fade-in) ] --- */
       /* .animate-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            transition-delay: var(--delay, 0s);
        }
        body.loaded .animate-item {
            opacity: 1;
            transform: translateY(0);
        }*/

        /* ---
        [ NEW: COMPARISON TABLE (PREMIUM ACCORDION DESIGN) ]
        --- */

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);

            /* * THE GLASS EFFECT 
             */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.55);
            border: var(--xc-glass-border);
            z-index: 10;
            position: relative;
        }

        /* --- Table Header --- */
        .comparison-table thead th {
            /* REMOVED: background: var(--xc-head-bg); */
            color: var(--xc-head-text);
            text-align: left;
            padding: 18px 25px; /* Increased padding */
            font-weight: 600;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--xc-border);
        }

        /* UPDATED: 3-column layout */
        .comparison-table thead th:first-child {
            width: 50%;
        }
        .comparison-table thead th:not(:first-child) {
            text-align: left;
            width: 25%;
        }

        /* ADDED: "Dead" column styling */
        .comparison-table thead th.col-legacy {
            opacity: 0.7;
        }

        /* --- Accordion Row Styling --- */
        .comparison-table > tbody > tr > td {
            padding: 0; /* Remove padding from cell to allow <details> to fill it */
        }
        
        /* Separate major categories */
        .comparison-table > tbody:not(:last-child) > tr > td {
             border-bottom: 1px solid var(--xc-border);
        }

        .comparison-table details {
            width: 100%;
        }

        .comparison-table summary {
            display: flex;
            align-items: center;
            /* UPDATED: justify-content removed to allow badge */
            padding: 20px 25px;
            cursor: pointer;
            list-style: none; /* Remove default marker */
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--color-dark);
            transition: background 0.2s ease;
        }
        .comparison-table summary::-webkit-details-marker { display: none; }
        
        .comparison-table details[open] summary {
            /* REMOVED: background: var(--xc-head-bg); */
            /* ADDED: Subtle active color for open state */
            color: var(--color-brand);
        }

        .comparison-table summary:hover {
            background: rgba(232, 240, 255, 0.5); /* Subtle hover */
        }

        /* ADDED: Key Differentiator Badge */
        .summary-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-right: auto; /* Pushes icon to the right */
        }
        .key-differentiator-badge {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-brand);
            background: rgba(0, 85, 212, 0.1);
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px solid rgba(0, 85, 212, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            /* ADDED: Transition for the pop effect */
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* ADDED: Badge pop on summary hover */
        .comparison-table summary:hover .key-differentiator-badge {
            transform: scale(1.05);
        }

        /* * PREMIUM SVG CHEVRON ICON 
         */
        .summary-icon {
            display: inline-flex;
            color: var(--color-brand);
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .comparison-table details[open] .summary-icon {
            transform: rotate(180deg); 
        }

        /* --- Nested Sub-Table --- */
        .sub-table-wrapper {
            /* REMOVED: background: rgba(255, 255, 255, 0.2); */
            padding: 0; /* No padding, table handles it */
        }
        
        .sub-table {
            width: 100%;
            border-collapse: collapse;
        }

        .sub-table tr {
            /* REMOVED: border-top: 1px solid var(--xc-border); */
        }
        
        /* REMOVED: Zebra striping */
        .sub-table tr:nth-child(even) {
            /* background: rgba(255, 255, 255, 0.2); */
        }

        .sub-table td {
            padding: 20px 25px; /* Increased padding */
            font-size: 0.95rem; /* Reduced font size */
            line-height: 1.5;
            vertical-align: top;
            color: var(--color-text-light);
            /* ADDED: Transition for all cells */
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        }

        /* UPDATED: 3-column layout widths */
        .sub-table td:first-child {
            font-weight: 500;
            color: var(--color-text-dark);
            width: 50%; /* Match header width */
        }

        .sub-table td:not(:first-child) {
            text-align: left;
            width: 25%; /* Match header width */
        }

        /* ADDED: "Dead" column styling */
        .sub-table td.col-legacy {
            opacity: 0.7;
        }

        /* * ADDED: The "Living Table" Interaction 
         */
        .sub-table tr:hover td.col-xcpep {
            transform: scale(1.02);
            box-shadow: var(--color-brand-glow);
            opacity: 1;
            z-index: 10;
            border-radius: 4px; /* Give the "lifted" element a slight radius */
        }
        .sub-table tr:hover td:first-child,
        .sub-table tr:hover td.col-legacy {
            /* UPDATED: Softer fade for a more subtle spotlight */
            opacity: 0.75; /* Was 0.6 */
        }


        /* --- Icon Styling --- */
        .icon-text-flex {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .icon {
            font-size: 1.2rem; /* Slightly smaller icon */
            font-weight: 700;
            line-height: 1.5; /* Align with text */
            flex-shrink: 0;
        }
        .icon.check { color: var(--color-success); }
        .icon.cross { color: var(--color-danger); }
        .icon.partial { color: var(--color-warning); }

        /* ADDED: Monochrome icon styling for legacy column */
        .col-legacy .icon.check,
        .col-legacy .icon.cross,
        .col-legacy .icon.partial {
            color: var(--color-text-monochrome);
        }

        .text.strikethrough {
            text-decoration: line-through;
            opacity: 0.6;
        }

        /* --- Table Note --- */
        .table-note {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin: 20px 0 0 0;
            padding: 0 10px;
        }

        /* ADDED: Contextual CTA Button */
        .comparison-cta {
            text-align: center;
            margin-top: 40px;
        }
        .comparison-cta-button {
            display: inline-block;
            background: var(--color-brand);
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: var(--border-radius-md);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 85, 212, 0.15);
            transition: all 0.3s ease;
        }
        .comparison-cta-button:hover {
            background: #004ac2; /* Darker brand */
            box-shadow: 0 6px 20px rgba(0, 85, 212, 0.25);
            transform: translateY(-2px);
        }
        .comparison-cta-button span {
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .comparison-cta-button:hover span {
            transform: translateX(4px);
        }




        /* ---
        [ 12. DIFFERENTIATOR (PROBLEM/SOLUTION) ]
        --- */

        #philosophy::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        #philosophy h2 { 
            font-size: 2.75rem; 
            text-align: center; 
            margin: 0 0 60px 0; 
            color: var(--color-dark);
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        #philosophy h3 { 
            font-size: 1.5rem; /* Slightly smaller for cards */
            color: var(--color-dark);
            line-height: 1.3;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0 0 25px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
       #philosophy p { 
            font-size: 1rem; /* Smaller for internal card text */
            line-height: 1.7; 
            color: var(--color-text-dark);
            margin: 0;
        }

        #philosophy{
        	    background-color: #f0f4f8;
			    background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
			    overflow: hidden;
        }
        .differentiator-grid {
            display: grid;
            /* Switched to a 2-column, 1-to-1 grid */
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: stretch; 
        }

        .differentiator-card {
            padding: 40px;
            border-radius: var(--border-radius-lg);
            
            /* GLASS EFFECT */
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);

            /* TRANSITION */
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
            
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Ensures cards align height */
        }

        /* --- SOLUTION CARD (HERO) --- */
        .differentiator-card.solution {
            border-left: 4px solid var(--color-brand);
            opacity: 1;
            /* Make it grow slightly more on hover to emphasize it */
        }
        .differentiator-card.solution:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            z-index: 10; /* Bring to front */
        }
        .differentiator-card.solution .icon { 
            color: var(--color-brand); 
        }

        /* --- PROBLEM CARD (DE-EMPHASIZED) --- */
        .differentiator-card.problem {
            border-left: 4px solid #e74c3c;
            opacity: 0.7; /* Faded by default */
        }
        .differentiator-card.problem:hover {
            opacity: 1; /* Bring to full focus on hover */
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            z-index: 10; /* Bring to front */
        }
        
        /* ICONS: Make problem icons monochrome */
        .differentiator-card.problem h3,
        .differentiator-card.problem .icon { 
            color: var(--color-text-monochrome); 
        }
        
        /* --- LIST STYLING --- */
        .differentiator-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .differentiator-list li {
            display: flex;
            gap: 10px;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        /* ICONS IN LISTS */
        .differentiator-list .icon { 
            font-size: 1.5rem; 
            flex-shrink: 0; 
            line-height: 1; /* Tighter alignment */
            margin-top: 2px; /* Pixel-align with text */
        }
        .differentiator-card.solution .differentiator-list .icon.check { 
            color: var(--color-accent); 
        }
        .differentiator-card.solution .differentiator-list li {
            color: var(--color-text-dark);
            font-weight: 500;
        }
        
        .differentiator-card.problem .differentiator-list li {
            color: var(--color-text-light); /* Faded text */
        }
        .differentiator-card.problem .differentiator-list .icon.cross { 
            color: var(--color-text-monochrome); /* Monochrome icon */
        }
        
        /* --- PHILOSOPHY TEXT (INSIDE SOLUTION) --- */
        .philosophy-text-wrapper {
            /* NEW: Apply card styling */
            padding: 40px;
            border-radius: var(--border-radius-lg);
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            
            /* NEW: Remove max-width and auto margin, set bottom margin to match grid gap */
            margin: 30px 0 0 0; /* NEW: Set top margin, remove bottom */
            
            /* Keep flex layout */
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .philosophy-text-wrapper .icon {
            color: var(--color-brand);
            flex-shrink: 0;
            margin-top: 5px; /* Align with first line of text */
        }
        .philosophy-text-wrapper p {
            text-align: left;
            font-size: 1rem;
            /* NEW: Made text darker for more emphasis */
            color: var(--color-text-dark);
            line-height: 1.7; /* Explicitly set line height */
        }


        /* ---
        [ 13. SECURITY & TRUST (3x2 GRID + GLASSMORPHISM) ]
        --- */
        #security {
            /* New background for glass to blur */
            background-color: #f8f9fa; 
            overflow: hidden;
        }
        #security::before {
            content: '';
            position: absolute;
            top: 20%; right: -20%;
            width: 60%; height: 100%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        #security .container {
            position: relative;
            z-index: 2;
        }
        .cert-header{
            display: flex;
            align-items: start;
            justify-content: space-between;
            width: 100%;     
            margin-bottom: 10px;       
        }
        .cert-header img{
            width: 4rem;
            height: auto;
        }
        .cert-image{
            display: flex;
            gap:1rem;
        }
        .security-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .security-card {
            padding: 30px;
            border-radius: var(--border-radius-lg);
            
            /* Glassmorphism Effect */
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .security-card:hover {
            border-color: var(--color-brand);
            box-shadow: var(--shadow-brand-hover);
            transform: translateY(-5px);
        }

        .security-card .icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            color: var(--color-brand);
        }
        .security-card h4 { margin: 0 0 10px 0; font-size: 1.1rem; }
        .security-cta {
            text-align: center;
            margin-top: 60px;
            margin-bottom: 20px;
        }       
        .trust-button {
            background: var(--color-brand);
            color: white;
            padding: 14px 30px;
            border-radius: var(--border-radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .trust-button:hover {
            /*background: #000;*/
            transform: scale(1.1);
        }

        /* ---
        [ 14. FAQ ]
        --- */
        /* NEW: Added premium background + glow */
        .faq-premium { 
            padding-top: var(--spacing-section); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            overflow: hidden; /* Contains the glow */
            margin: 0px 0px; /* Fill preview window */
        }
        
        /* NEW: Background Glow */
        .faq-premium::before {
            content: '';
            position: absolute;
            top: 20%; left: -20%;
            width: 60%; height: 100%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* NEW: Grid Layout */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr; /* 2-column layout */
            gap: 80px;
            align-items: flex-start;
        }

        .faq-intro {
            /* This is the left column */
            position: sticky; /* Sticks while scrolling past questions */
            top: 150px;
        }
        .faq-intro h2 {
            text-align: left; /* Align left for this layout */
        }
        .faq-intro .subtitle {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--color-text-dark);
            margin-bottom: 25px;
        }
        .faq-intro .description {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* ---
        [ 4. "GLASS" ACCORDION ]
        --- */
        
        /* This is now the right column */
        .faq-accordion .faq-accordion-item {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            
            border-radius: var(--border-radius-lg);
            margin-bottom: 15px; 
            overflow: hidden; 
            transition: box-shadow 0.3s ease;
        }
        .faq-accordion .faq-accordion-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-accordion .faq-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px; 
            cursor: pointer;
            font-weight: 600;
            font-size: 1.15rem;
            color: var(--color-dark);
            
            width: 100%;
            background: none;
            border: none;
            text-align: left;
        }

        /* NEW: +/- Icon */
        .accordion-icon {
            position: relative;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .accordion-icon::before,
        .accordion-icon::after {
            content: '';
            position: absolute;
            background-color: var(--color-dark);
            transition: all 0.3s ease;
            border-radius: 1px;
        }
        .accordion-icon::before {
            width: 18px;
            height: 3px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        .accordion-icon::after {
            width: 3px;
            height: 18px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .faq-accordion .faq-accordion-header[faq-aria-expanded="true"] .accordion-icon::after {
            transform: translateX(-50%) rotate(90deg);
        }
        .faq-accordion .faq-accordion-header[faq-aria-expanded="true"] {
            color: var(--color-brand);
        }
        .faq-accordion .faq-accordion-header[faq-aria-expanded="true"] .accordion-icon::before,
        .faq-accordion .faq-accordion-header[faq-aria-expanded="true"] .accordion-icon::after {
            background-color: var(--color-brand);
        }

        .faq-accordion .faq-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            role: region;
        }
        .faq-accordion .faq-accordion-content p {
            padding: 0 30px 30px 30px;
            margin: 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding-top: 25px;
            font-size: 1rem;
            line-height: 1.6;
        }
        



        /* --- 15 .        [ PREMIUM LIGHT CTA ]        --- */
        
        #contact {
            padding-top: var(--spacing-section); 
            padding-bottom: var(--spacing-section); 
            position: relative;
            overflow: hidden; /* CRITICAL: Contains the blobs */
            margin: 0px 0px; 
            
            background: linear-gradient(
                135deg, 
                #f5f9ff, /* Lightest Blue */
                #e6f0ff, /* Light Blue */
                #f4f8ff, /* Mid Blue */
                #e6f0ff  /* Light Blue */
            );
            background-size: 400% 400%; /* Make it huge */
            animation: move-liquid-base 30s ease-in-out infinite; /* Base animation */
        }

        @keyframes move-liquid-base {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Liquid Blobs Container */
        .liquid-blobs {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
        }
        .gradient-blob {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.4;
        }
        
        .blob-1 {
            top: -100px;
            left: -100px;
            background: rgba(0, 85, 212, 0.5);
            animation: move-blob-1 20s ease-in-out infinite alternate;
        }
        @keyframes move-blob-1 {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(150px, 100px) scale(1.2); }
        }

        .blob-2 {
            bottom: -150px;
            right: -150px;
            background: rgba(0, 196, 154, 0.4);
            animation: move-blob-2 25s ease-in-out infinite alternate;
        }
        @keyframes move-blob-2 {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(-200px, -100px) scale(0.9); }
        }

        .blob-3 {
            top: 50%;
            left: 50%;
            background: rgba(0, 85, 212, 0.3);
            animation: move-blob-3 18s ease-in-out infinite alternate;
        }
        @keyframes move-blob-3 {
            from { transform: translate(-50%, -50%) scale(0.8); }
            to { transform: translate(-40%, -60%) scale(1.1); }
        }
        /* End Liquid Blobs */

        .cta-perspective-wrapper {
            perspective: 1500px;
        }

        .sales-cta-card {
            position: relative; 
            overflow: hidden; 
            text-align: center;
            padding: 60px;
            border-radius: var(--border-radius-lg);
            
            /*background: rgba(255, 255, 255, 0.65);*/
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            
            box-shadow: var(--shadow-lg);
            
            transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
            transform-style: preserve-3d;
        }
        
        /* Shine Effect */
        .sales-cta-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.8) 0%, 
                rgba(255, 255, 255, 0) 40%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1; 
        }
        .sales-cta-card:hover::before {
            opacity: 1; 
        }
        
        .cta-content {
            position: relative;
            z-index: 2; /* Sits above the shine */
        }

        .cta-content p {
            margin: 0 0 30px 0;
            font-size: 1.1rem;
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* --- Click-to-Copy Component --- */
        .click-to-copy {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            border-radius: var(--border-radius-md);
            
            background: var(--color-brand);
            color: var(--color-text-inverted);
            border: 1px solid var(--color-border);
            
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .click-to-copy:hover {
            border-color: rgba(0, 85, 212, 0.3);
            box-shadow: var(--shadow-md);
            color: var(--color-text-inverted);
            transform: scale(1.02);
        }
        
        .click-to-copy .icon {
            width: 18px;
            height: 18px;
            color: var(--color-brand);
            transition: transform 0.3s ease;
        }
        
        .click-to-copy:hover .icon {
            transform: scale(1.1);
        }
        
        .click-to-copy.copied {
            background: #e6f0ff;
            border-color: var(--color-brand);
            color: var(--color-brand);
            font-weight: 600;
        }
        
        .click-to-copy.copied .icon {
            color: var(--color-brand);
        }
        
        /* --- "Arrival" Animation --- */
        .contact-animate-item {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .contact-animate-item.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }



        /* ---
        [ 16. FOOTER (MINIMAL & IMPACTFUL) ]
        --- */
        
        .premium-footer {
        	background: var(--color-brand);
            /*background-color: var(--color-bg-subtle); */
            padding: 80px 0 40px 0;
            border-top: 1px solid var(--color-border);
            /*margin: -80px -20px -80px -20px; /* Fill preview */
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr; 
            gap: 60px;
            margin-bottom: 60px;
        }

        /* Col 1: Brand */
        .footer-logo {
            height: 40px;
            width: auto;
            margin-bottom: 20px;
            background-color: var(--color-text-inverted);
        }
        .footer-col.brand p {
            font-size: 0.95rem;
            max-width: 340px;
            margin-bottom: 20px;
            color: var(--color-text-inverted);
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: var(--color-text-inverted) !important;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: var(--color-brand);
        }
        .social-links .icon {
            width: 24px;
            height: 24px;
        }

        /* Col 2 & 3: Links */
        .footer-col.links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-col.links a {
            text-decoration: none;
            color: var(--color-text-inverted);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .footer-col.links a:hover {
            color: var(--color-dark);
        }

        /* Col 4: Address */
        .footer-col.address p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0 0 15px 0;
            color: var(--color-text-inverted);
        }
        .footer-col.address a {
            color: var(--color-text-inverted);
            text-decoration: none;
            font-weight: 500;
        }
        .footer-col.address a:hover {
            color: var(--color-brand);
        }

        /* --- Bottom Bar --- */
        .footer-bottom-bar {
            border-top: 1px solid var(--color-border);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            font-size: 0.85rem;
            color: var(--color-text-inverted);
            margin: 0;
        }
        .copyright a {
            color: var(--color-text-inverted);
            font-weight: 700;
            text-decoration: none;
        }
        .copyright a:hover {
            color: var(--color-dark);
        }

        .legal-links {
            display: flex;
            gap: 20px;
        }
        .legal-links a {
            font-size: 0.85rem;
            color: var(--color-text-inverted);
            text-decoration: none;
            font-weight: 500;
        }
        .legal-links a:hover {
            color: var(--color-dark);
        }
       .footer-col.links h4 {
		  color: var(--color-text-inverted); /* or your custom color like #0055d4 */
		  margin-top: 0;
		}
		.footer-col.address h4 {
		  color: var(--color-text-inverted); /* or your custom color like #0055d4 */
		}

        /* --- 3. SCROLL TO TOP BUTTON STYLES --- */
        .scroll-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 998;
            width: 2.3rem;
            height: 2.3rem;
            background: var(--color-brand);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            /* Hide by default */
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 85, 212, 0.25);
        }
        .scroll-to-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
 
        .scroll-to-top:hover {
            background: var(--color-dark);
            box-shadow: 0 6px 20px rgba(0, 85, 212, 0.35);
            transform: translateY(-2px); /* Add a slight lift on hover */
        }
 
        .scroll-to-top svg {
            width: 20px;
            height: 20px;
        }


        /* --- [ 1. NEW: HERO Legacy (This Page) ] --- */
        #hero-legacy {
            padding-top: calc(var(--spacing-section) + var(--header-height));
            padding-bottom: var(--spacing-section);
            position: relative;
            background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-dark) 100%);
            color: white;
            overflow: hidden;
            z-index: 1; /* Sits below sticky navs */
        }
        /* Liquid blobs */
        #hero-legacy .liquid-blobs { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; }
        #hero-legacy .gradient-blob { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
        #hero-legacy .blob-1 { top: -100px; left: -100px; background: rgba(0, 85, 212, 0.5); animation: move-blob-1 20s ease-in-out infinite alternate; }
        #hero-legacy .blob-2 { bottom: -150px; right: -150px; background: rgba(255, 255, 255, 0.4); animation: move-blob-2 25s ease-in-out infinite alternate; }
        @keyframes move-blob-1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(150px, 100px) scale(1.2); } }
        @keyframes move-blob-2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-200px, -100px) scale(0.9); } }

        #hero-legacy .hero-header-text {
            text-align: center; 
            max-width: 900px; 
            margin: 0 auto; 
        }
        #hero-legacy h1, #hero-legacy p { color: white; }
        #hero-legacy h1 { margin: 0 0 25px 0; font-size: 3.2rem; }
        #hero-legacy p.subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 0;
            max-width: 600px; 
            margin-left: auto;
            margin-right: auto;
        }

/* --- [ 2. NEW: "STICKY ANCHOR BAR" ] --- */
        .anchor-nav-section {
            position: sticky;
            top: var(--header-height); /* Sticks to the bottom of the main header */
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.08);
            z-index: 999; /* Below header, above content */
            padding: 15px 0;
            /* Starts hidden */
            opacity: 0;
            transform: translateY(-100%);
            transition: all 0.4s ease-out;
            visibility: hidden; /* Add visibility toggle */
        }
        /* This class is added by JS when you scroll past the hero */
        .anchor-nav-section.is-visible {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        
        .anchor-nav-list {
            display: flex;
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
            gap: 10px 25px; /* Row gap, column gap */
            align-items: center;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .anchor-nav-list .nav-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .anchor-nav-list a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-light);
            text-decoration: none;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }
        .anchor-nav-list a:hover {
            color: var(--color-brand);
            border-bottom-color: var(--color-brand);
        }
        /* NEW: Active state for anchor link */
        .anchor-nav-list a.active {
            color: var(--color-brand);
            font-weight: 700;
        }


        /* --- [ 4. NEW: "Problem" Section (Whitepaper + Living Text) ] --- */
        #intro {
            /* This section now uses the light gradient */
        }
        /* NEW: This card wraps the intro text */
        .section-light-gradient {
            background-color: #f0f4f8; 
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
            overflow: hidden;
        }
        .section-light-gradient::before {
            content: '';
            position: absolute;
            top: -20%; left: -20%;
            width: 60%; height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        .section-light-gradient > .container,
        .section-light-gradient > .container-wide {
            position: relative;
            z-index: 2;
        }

        .whitepaper-card {
            padding: 40px 50px;
            border-radius: var(--border-radius-lg);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .whitepaper-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .whitepaper-card h2 {
            text-align: left;
            margin-bottom: 20px;
        }
        .whitepaper-card .intro-text p {
            font-size: 1.15rem;
            color: var(--color-text-dark);
            font-weight: 500;
            margin-bottom: 20px;
        }
        .whitepaper-card .intro-text p:last-child {
             font-size: 1.1rem;
             font-weight: 400;
             color: var(--color-text-light);
             margin-bottom: 0;
        }
        
        /* NEW: "Living Text" Pain Points List */
        #pain-points h3 {
            text-align: left;
            font-size: 2rem;
            margin: 60px 0 30px 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .pain-point-list {
            /* This contains the list of pain points */
        }
        .pain-point-item {
            padding: 15px 20px;
            border-radius: var(--border-radius-md);
            margin-bottom: 10px;
            border-left: 3px solid transparent; 
            transition: all 0.25s ease-out;
            /* Glassmorphism Effect */
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .pain-point-item p {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--color-text-light);
        }
        .pain-point-item p strong {
            color: var(--color-text-dark);
            font-weight: 600;
        }
        .pain-point-item:hover {
            transform: translateY(-3px) scale(1.01);
            background: rgba(255, 255, 255, 0.9);
            border-left-color: var(--color-danger); /* Use danger color */
            box-shadow: var(--shadow-md);
            cursor: default;
            opacity: 1; 
        }


         /* --- [ 5. "EVIDENCE REVEAL" UI (IMAGE FIRST) ] --- */
        
        .solution-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px; 
        }

        .solution-item {
            padding: 30px;
            border-radius: var(--border-radius-lg);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.25s ease-out;
        }
        
        .solution-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-accent);
        }

        .solution-item h3 {
            font-size: 1.8rem;
            margin: 0 0 15px 0;
        }
        
        .solution-item .body-text p {
            font-size: 1.1rem;
            color: var(--color-text-light);
            margin-bottom: 25px; 
        }

        /* Visual Toggle Button */
        .visual-toggle {
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-brand);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        .visual-toggle:hover {
            opacity: 0.7;
        }
        .visual-toggle .chevron {
            width: 14px;
            height: 14px;
            stroke: var(--color-brand);
            stroke-width: 2.5;
            transition: transform 0.3s ease;
        }
        /* "Active" state is now the default (shown) */
        .visual-toggle.active .chevron {
            transform: rotate(90deg);
        }

        /* Visual Container */
        .visual-container {
            max-height: 1000px; /* Default large value, JS will fix */
            overflow: hidden;
            transition: max-height 0.5s ease-out, margin-top 0.5s ease-out, border-top-color 0.1s linear 0.2s;
            border-top: 1px solid var(--color-border);
            margin-top: 25px;
        }
        /* This is now the "closed" state */
        .visual-container:not(.open) {
            max-height: 0;
            border-top-color: transparent;
            margin-top: 0;
            transition: max-height 0.5s ease-out, margin-top 0.5s ease-out, border-top-color 0.1s linear 0s;
        }
        
        .solution-item .content-image {
            width: 100%;
            aspect-ratio: 16 / 0;
            background: var(--color-bg-subtle);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius-lg);
            margin-top: 30px; 
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            overflow: hidden;
        }
        .solution-item .content-image img {
            width: 100%; height: 100%; object-fit: contain;
        }
        .solution-item .caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin-top: 10px;
        }


         /* --- [ 6. UPDATED: Key Benefits "Premium Grid" ] --- */

        .premium-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px; 
        }

        .benefit-card {
            padding: 35px 40px; 
            border-radius: var(--border-radius-lg);
            /* IMPROVED GLASSMORPHISM */
            background: rgba(255, 255, 255, 0.85); 
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); 
            border: 1px solid rgba(255, 255, 255, 0.3); 
            box-shadow: 0 5px 20px rgba(0,0,0,0.06); 
            
            display: flex;
            flex-direction: column; 
            gap: 20px;           
            transition: all 0.3s ease;
        }
        .benefit-card:hover {
            transform: translateY(-5px); 
            box-shadow: var(--shadow-md); 
            border-color: var(--color-brand);
        }

        /* This is now the style for the inlined SVG */
        .benefit-card .icon {
            width: 44px;  /* Icon size */
            height: 44px; /* Icon size */
            color: var(--color-brand);
            stroke-width: 2; /* Ensure stroke width is consistent */
            margin-top: 0; 
            flex-shrink: 0; 
        }

        .benefit-card h4 {
            font-size: 1.2rem; 
            margin: 0 0 8px 0; 
            color: var(--color-dark);
        }
        .benefit-card p {
            font-size: 1rem; 
            line-height: 1.7; 
            color: var(--color-text-light);
        }


        /* --- [ 7. UPDATED: Black box glass box ] --- */
            /* --- SVG Icon Styling --- */
        .svg-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            stroke-width: 2;
        }
        /* Muted icons for the "Black Box" */
        .svg-icon.lock { stroke: #b0b0b0; } /* Lighter gray */
        .svg-icon.x { stroke: #d70000; opacity: 0.6; } /* Faded red */
        
        /* Prominent icons for the "Glass Box" */
        .svg-icon.unlock { stroke: #007aff; } /* Bold blue */
        .svg-icon.check { stroke: #34c759; } /* Bold green */

        /* --- Section Layout --- */
        .premium-comparison {
            /*max-width: 1200px;*/
            margin: 0 auto;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 4rem; /* Generous spacing */
        }
        .comparison-header h2 {
            font-size: 2.75rem; /* Slightly smaller, more refined */
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            color: #1d1d1f;
        }
        .comparison-header .subhead {
            font-size: 1.2rem;
            color: #555;
            max-width: 90%;
            margin: 0 auto;
            line-height: 1.6;
        }
        .comparison-header .impact-stat {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d70000;
            margin-top: 1.5rem;
        }

        /* --- Comparison Grid --- */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem; /* Generous gap */
        }

        .comparison-card {
            background-color: #ffffff;
            border-radius: 16px; /* Slightly softer radius */
            padding: 2.5rem; /* 40px padding */
            border: none; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- BLACK BOX STYLING (MUTED) --- */
        .comparison-card.black-box {
            background-color: #fcfcfc; /* Slightly off-white to de-emphasize */
            color: #888; /* Muted text color */
            box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Lighter shadow */
            opacity: 0.9; /* Slightly faded */
            transform: scale(0.98); /* Slightly smaller default */
        }

        .comparison-card.black-box .card-header h3 {
            color: #888; /* Muted header */
        }
        .comparison-card.black-box p {
            color: #a0a0a0; /* Muted paragraph */
        }
        .comparison-card.black-box ul li {
            color: #a0a0a0; /* Muted list items */
        }

        /* Black Box hover: only very subtle lift, no glow, no special border */
        .comparison-card.black-box:hover {
            transform: translateY(-3px) scale(0.99); /* Minimal lift */
            box-shadow: 0 6px 15px rgba(0,0,0,0.06); /* Slightly deeper shadow */
            opacity: 1; /* Bring to full opacity on hover */
        }

        /* --- GLASS BOX STYLING (ELEVATED) --- */
        .comparison-card.glass-box {
            background-color: #ffffff; /* Crisp white */
            color: #1d1d1f; /* Strong text color */
            box-shadow: 0 6px 20px rgba(0,0,0,0.08); /* More pronounced shadow */
            border: 1px solid rgba(0, 122, 255, 0.2); /* Subtle blue border */
        }

        .comparison-card.glass-box .card-header h3 {
            color: #1d1d1f; /* Strong header */
        }
        .comparison-card.glass-box p {
            color: #333; /* Strong paragraph */
        }
        .comparison-card.glass-box ul li {
            color: #333; /* Strong list items */
        }
        .comparison-card.glass-box ul li .list-text strong {
            display: block;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        /* Glass Box hover: more significant lift and blue glow */
        .comparison-card.glass-box:hover {
            transform: translateY(-8px) scale(1.02); /* More pronounced lift */
            border-color: #007aff; /* Bold blue border */
            box-shadow: 0 12px 35px rgba(0, 122, 255, 0.2); /* Distinct blue glow */
            z-index: 10;
        }

        /* --- Card Content Styling (Common) --- */
        .card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        .comparison-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        .comparison-card ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .comparison-card ul li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.25rem; 
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .comparison-card ul li .list-text { flex: 1; }


/* --- [ 8. UPDATED: Our Products ] --- */
/* --- Section Content --- */
        .product-section {
            max-width: 1100px;
            margin: 6rem auto; /* Generous vertical margin */
            padding: 0 2rem; /* Horizontal padding for responsiveness */
            position: relative;
            z-index: 2; /* Above the background */
        }

        /* --- 4. HEADER ALIGNMENT (LEFT-ALIGNED) --- */
        .product-header {
            text-align: left; /* Switched to left-align */
            margin-bottom: 4rem;
        }
        .product-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .product-header p {
            font-size: 1.25rem;
            color: #555;
             max-width: 90%; /* Still constrain line length */
            margin: 0; /* Remove auto margin */
            line-height: 1.6;
            text-align: center;
        }

        /* --- Product Grid --- */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem; /* Generous gap */
            perspective: 1500px;
        }

        /* --- GLASSMORPHISM CARD with SUBTLE BORDER/GLOW --- */
        .product-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-decoration: none;
            color: #1d1d1f;
            padding: 3rem; /* Spacious padding */
            border-radius: 24px; /* Apple-style radius */
            position: relative;
            overflow: hidden; /* For the shine effect */
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- 3D INTERACTION & GLOW --- */
        .product-card:hover {
            transform: perspective(1500px) rotateY(4deg) scale(1.03);
            z-index: 10;
        }
        .product-card.xcproc:hover {
            transform: perspective(1500px) rotateY(-4deg) scale(1.03);
        }
        
        /* Specific glow/border on hover */
        .product-card.xcpep:hover {
            border-color: rgba(0, 122, 255, 0.6); /* Blue border */
            box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
        }
        .product-card.xcproc:hover {
            /* Kept a unique glow for xcproc, but link is blue */
            border-color: rgba(0, 122, 255, 0.6); /* Blue border */
            box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
        }

        /* --- FOCUS EFFECT --- */
        .product-grid:hover .product-card:not(:hover) {
            opacity: 0.7;
            transform: scale(0.98);
        }

        /* --- 1. LOGO SIZING & ALIGNMENT --- */
        .product-logo {
            height: 45px; /* Consistent height */
            width: auto;
            max-width: 100%;
            object-fit: contain; /* Prevents distortion */
            align-self: flex-start; /* Aligns to top */
            margin-bottom: 1.5rem; /* Space between logo and text */
        }

        .product-tagline {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.5;
            margin-bottom: auto; /* Pushes explore link to bottom */
        }

        /* --- 2. "EXPLORE" LINK TO BUTTON --- */
        .product-link {
            display: inline-flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 2rem;
            padding: 0.75rem 0; /* Base padding (top/bottom) */
            
            /* 3. CONSISTENT LINK COLOR (BLUE) */
            color: #007aff; 
            
            /* Prep for transition */
            background-color: transparent;
            border-radius: 10px;
            transition: all 0.2s ease-out;
            align-self: flex-start; /* Align link to the left */
        }
        .product-link .arrow {
            margin-left: 0.5rem;
            transition: transform 0.2s ease-out;
        }

        /* Button-like hover state */
        .product-card:hover .product-link {
            color: #ffffff;
            background-color: #007aff;
            padding: 0.75rem 1.25rem; /* Add horizontal padding */
            transform: translateY(-5px); /* Lift button up a bit */
            box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
        }
        
        .product-card:hover .product-link .arrow {
            transform: translateX(3px); /* Move arrow on hover */
        }
        

        /* --- "SHINE" EFFECT --- */
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            z-index: 1;
            transition: transform 0s ease;
        }
        .product-card:hover::before {
            transform: translateX(300%);
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }


         /* ---        [ 9. RESPONSIVENESS ]        --- */

        /* --- Section Content --- */
        .industry-section {
            max-width: 1100px;
            margin: 6rem auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .industry-header {
            text-align: left; /* Confident left-align */
            margin-bottom: 4rem;
        }
        .industry-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .industry-header p {
            font-size: 1.25rem;
            color: #555;
            max-width: 90%;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
        }

        /* --- Industry Grid --- */
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3-column layout */
            gap: 2rem; /* Gap between cards */
            perspective: 1500px;
        }

        /* --- 2. THE GLASSMORPHISM CARD (DIV) --- */
        .industry-card {
            color: #1d1d1f;
            padding: 2.5rem;
            border-radius: 24px;
            position: relative;
            overflow: hidden; /* For the shine effect */
            
            /* The Glass Effect */
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.8);

            /* Base shadow & transition */
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            
            /* --- NON-CLICKABLE --- */
            cursor: default; 
        }

        /* --- 3. THE 3D HOVER INTERACTION --- */
        .industry-card:hover {
            transform: perspective(1500px) scale(1.05); /* Simplified tilt */
            z-index: 10;
            border-color: rgba(0, 122, 255, 0.6); /* Blue border */
            box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
        }
        
        /* --- 4. THE FOCUS EFFECT --- */
        .industry-grid:hover .industry-card:not(:hover) {
            opacity: 0.7;
            transform: scale(0.98);
        }

        /* --- 5. SVG ICON STYLING --- */
        .industry-svg {
            width: 40px;
            height: 40px;
            stroke-width: 1.5; /* Premium thin lines */
            stroke: #0055d4; /* Neutral default color */
            fill: #0055d4; /* Neutral default color */
            margin-bottom: 1.5rem;
            transition: stroke 0.3s ease;
        }

        /* --- 6. PREMIUM TYPOGRAPHY --- */
        .industry-name {
            font-size: 1.5rem; /* 24px */
            font-weight: 600;
            color: #1d1d1f;
            transition: color 0.3s ease;
        }
        
        /* --- Description Text --- */
        .industry-desc {
            font-size: 0.95rem; /* 15px */
            color: #555;
            line-height: 1.5;
            margin-top: 0.75rem; /* Space from title */
            margin-bottom: 0;
        }
        
        /* --- 7. UNIFIED HOVER COLOR CHANGE --- */
        .industry-card:hover .industry-svg {
            stroke: #007aff; /* Brand blue */
        }
        .industry-card:hover .industry-name {
            color: #007aff; /* Brand blue */
        }

        /* --- 8. THE "SHINE" EFFECT --- */
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            z-index: 1;
            transition: transform 0s ease;
        }

        .industry-card:hover::before {
            transform: translateX(300%);
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

         /* ---        [ 10. RESPONSIVENESS ]        --- */
        /* --- Section Content --- */
        .video-section {
            max-width: 1100px;
            margin: 0rem auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .video-header {
            text-align: left; /* Confident left-align */
            margin-bottom: 3rem;
        }
        .video-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .video-header p {
            font-size: 1.25rem;
            color: #555;
            max-width: 80%;
            text-align: center;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- 2. THE "FLOATING GLASS" FRAME --- */
        .video-showcase-wrapper {
            /* Removed perspective, no longer needed */
        }
        
        .glass-video-frame {
            border-radius: 24px; /* Apple-style radius */
            position: relative;
            overflow: hidden; /* This is CRITICAL */
            
            /* The Glass Effect (applied to the frame) */
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.8);

            /* Base shadow & transition */
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            
            /* This is a fix for some browsers to ensure the video is clipped to the border-radius */
            -webkit-mask-image: -webkit-radial-gradient(white, black);
        }

        /* --- 3. THE "MINIMAL LIFT" INTERACTION & GLOW --- */
        .glass-video-frame:hover {
            /* Removed rotateY, replaced with a simple lift */
            transform: scale(1.03) translateY(-5px); 
            z-index: 10;
            border-color: rgba(0, 122, 255, 0.6); /* Blue border */
            box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
        }

        /* --- 4. THE HTML5 VIDEO TAG --- */
        .saas-frame-video {
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: 16 / 9; /* Enforce ratio */
            border: none;
            background-color: #1d1d1f; /* Dark bg for video load */
        }





        /* ---        [ 17. RESPONSIVENESS ]        --- */
        @media (max-width: 900px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            
            /* UPDATED Hero Responsive */
            .hero-content-grid {
                grid-template-columns: 1fr; 
                gap: 40px;
                align-items: stretch; /* Keep it stretched */
            }
            .hero-header-text h1 { font-size: 2.8rem; }
            .pillar-card-container { grid-row: 1; }
            .hero-visual { grid-row: 2; }
            
            .pillars-wrapper {
                /* On mobile, use a gap instead of space-around */
                justify-content: flex-start;
                gap: 25px;
                height: auto; /* Let content define height */
            }
            
            /* --- MOBILE NAV FIX --- */
            .mobile-nav-toggle {
                display: block; /* Show hamburger icon */
            }

            /* This is the mobile menu */
            .header-nav-list {
                display: none; /* HIDE BY DEFAULT ON MOBILE */
                flex-direction: column;
                position: fixed;
                top: 74px; /* UPDATED: 44px logo + 15px pad + 15px pad */
                left: 0;
                width: 100%;
                background: var(--color-bg-light);
                border-top: 1px solid var(--color-border);
                box-shadow: var(--shadow-md);
                padding: 10px 0;
                
                /* Hide/show logic */
                opacity: 0;
                transform: translateY(-20px);
                pointer-events: none;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }
            .header-nav-list.open {
                display: flex; /* SHOW WHEN .open CLASS IS ADDED */
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
                background-color: rgb(255 255 255 / 90%);
                backdrop-filter: blur(20px);
            }
            /* Mobile menu links */
            .header-nav-list a {
                padding: 15px 20px;
                border-radius: 0;
                border-bottom: 1px solid var(--color-bg-subtle);
                transform: none; /* Disable desktop hover scale */
            }
            .header-nav-list a:hover {
                transform: none; /* Disable desktop hover scale */
            }
            /* --- End Mobile Nav --- */

            /* --- PREMIUM BACKGROUND (SINGLE GLOW) --- */
             h2 { font-size: 2.2rem; }
            .feature-box, .feature-box.reverse { 
                grid-template-columns: 1fr; 
            }
            .feature-box.reverse .feature-text { 
                grid-row: 1; 
            }
            .feature-visual { 
                height: 300px; 
            }
            /* ---  PREMIUM BACKGROUND (SINGLE GLOW)  --- */

             /* ---        [ PREMIUM "HOW IT WORKS" SECTION ]        --- */
            .how-it-works-grid { 
                grid-template-columns: 1fr; 
            }
            .how-it-works-nav { 
                position: static; 
            }
            .how-it-works-nav .step {
                /* On mobile, all steps are visible (not dimmed) */
                opacity: 1; 
                margin-bottom: 15px;
                background: rgba(255, 255, 255, 0.6);
            }
            
            .how-it-works-visuals { 
                /* Hides images on tablet/mobile */
                display: none; 
            }

/* ---  [ End PREMIUM "HOW IT WORKS" SECTION ]  --- */


            .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
            
            .feature-box, .feature-box.reverse { grid-template-columns: 1fr; }
            .feature-box.reverse .feature-text { grid-row: 1; }
            .feature-visual { height: 300px; }
            
           /* .how-it-works-grid { grid-template-columns: 1fr; }
            .how-it-works-nav { position: static; }
            .how-it-works-visuals .visual-item { height: 320px; }*/


            /* Stack to 1 column */
            .differentiator-grid { 
                /* Switch to 1 column */
                grid-template-columns: 1fr; 
            }
            /* Reset grid-column spans (not needed, but good practice) */
            .differentiator-card.solution,
            .differentiator-card.problem {
                grid-column: span 1; 
            }
            /* The default DOM order is now Problem, then Solution,
               which is a great storytelling flow on mobile!
               (Show the pain, then the remedy)
            */
            /* NEW: Re-order for mobile */
            .differentiator-card.solution { grid-row: 1; }
            .differentiator-card.problem { grid-row: 2; }




            
            .xcproc-grid { grid-template-columns: 1fr; }
            .xcproc-nav { position: static; }
            .xcproc-nav ul { 
                position: static; 
                display: flex; 
                overflow-x: auto; /* Allow horizontal scroll on mobile */
                gap: 5px; 
                padding-bottom: 10px; /* Add space for scrollbar */
            }
            .xcproc-nav li {
                flex-shrink: 0; /* Prevent tabs from shrinking */
            }
            .xcproc-nav li a { flex-grow: 1; text-align: center; }

            .process-tag-grid { column-count: 2; }

            .capture-grid { grid-template-columns: 1fr; }
            .use-case-grid { grid-template-columns: 1fr 1fr; }
            .differentiator-grid { grid-template-columns: 1fr; }
            .security-grid { grid-template-columns: 1fr 1fr; }
            .feature-box.reverse .feature-text { grid-column: 1; }
        	.feature-box.reverse .feature-visual { grid-column: 1; }

            .faq-grid {
                grid-template-columns: 1fr; /* Stack columns */
                gap: 40px;
            }
            .faq-intro {
                position: static; /* Un-stick the intro */
                text-align: center; /* Center stacked text */
            }
            .faq-intro h2 {
                text-align: center;
            }
            .faq-intro .description {
                max-width: 80%;
                margin: 0 auto;
            }

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

            .solution-item .content-image,
            .solution-item .caption,
            .visual-toggle {
                display: none;
            }
            .solution-item .body-text p {
                 margin-bottom: 0; /* Remove extra space */
            }

            /* Hide anchor nav on mobile */
            .anchor-nav-section {
                display: none;
            }

            /*Black box*/
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            .comparison-card.black-box {
                opacity: 1; /* Reset opacity on mobile */
                transform: scale(1);
            }
            .comparison-card.black-box:hover {
                 transform: none; /* Disable hover on mobile */
            }
            .comparison-card.glass-box:hover {
                 transform: none; /* Disable hover on mobile */
                 border-color: rgba(0, 122, 255, 0.2); /* Reset border */
                 box-shadow: 0 6px 20px rgba(0,0,0,0.08); /* Reset shadow */
            }


            .product-grid {
                grid-template-columns: 1fr;
            }
            .product-grid:hover .product-card:not(:hover) {
                opacity: 1;
                transform: none;
            }
            .product-card:hover {
                transform: none;
            }
            .product-card:hover::before {
                transition: none;
                transform: translateX(-80%);
            }
            /* Disable button hover on mobile for cleaner tap */
            .product-card:hover .product-link {
                color: #007aff;
                background-color: transparent;
                padding: 0.75rem 0;
                transform: none;
                box-shadow: none;
            }
            .product-card:hover .product-link .arrow {
                transform: none;
            }

             .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }


        }
        @media (max-width: 600px) {

            section { padding: 80px 0; }
            h1 { font-size: 2.5rem; }
            /* Hero Section */
            #hero-premium {
                padding-top: calc(var(--spacing-section) + 40px);
                padding-bottom: var(--spacing-section);
            }
            .hero-header-text h1 { font-size: 2.5rem; }
            .hero-header-text p.subtitle { font-size: 1.1rem; }
            
            .pillar-mobile-hidden {
                display: none;
            }
            .pillar-card-container { grid-row: 1; }
            .hero-visual { grid-row: 2; }

			 /* --- PREMIUM BACKGROUND (SINGLE GLOW) --- */
			 .how-it-works h2 { font-size: 2.2rem; }

			section { padding: 80px 0; }
	            .feature-box { 
	                padding: 30px; 
	                /* Disable glass on mobile */
	                background: var(--color-bg-light);
	                backdrop-filter: none;
	                -webkit-backdrop-filter: none;
	                border: 2px solid var(--color-border);
	            }
	            .feature-box:hover {
	                border-color: var(--color-brand);
	            }
	            .feature-visual {
	                background: var(--color-bg-subtle);
	                border: 1px solid var(--color-border);
	            }

 			/* --- End PREMIUM BACKGROUND (SINGLE GLOW) --- */

            .process-tag-grid { column-count: 1; }
            .feature-box { padding: 30px; }
            .use-case-grid { grid-template-columns: 1fr; }
            .security-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; gap: 10px; text-align: center; }
            .comparison-tabs { flex-direction: column; }
            .how-it-works-nav .step { opacity:1 !important }
            .how-it-works-visuals { display:none;  }
            /* ADDED: Hides the extra pillars on mobile */
            .pillar-mobile-hidden { display: none; }


            .sales-cta-card {
            position: relative; 
            overflow: hidden; 
            text-align: center;
            padding: 8px;
            padding-top: 40px;
            padding-bottom: 40px;
            border-radius: var(--border-radius-lg);
            
            /*background: rgba(255, 255, 255, 0.65);*/
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            
            box-shadow: var(--shadow-lg);
            
            transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
            transform-style: preserve-3d;
            }
            .click-to-copy{
                padding: 8px 10px;
                font-size: 0.87rem;
            }
            .contact-animate-item.is-visible {
                opacity: 1;
                transform: translateY(0) scale(1);
                padding: 20px;
            }
            .feature-visual{
                display: none;
            }

            .capture-video{
                height:240px;
                width: 100%;
            }

            .footer-grid{
                grid-template-columns: 1fr;
            }
            .faq-accordion .faq-accordion-header {
                font-size: 1.05rem;
                padding: 20px 25px;
            }
            .faq-accordion .faq-accordion-content p {
                padding: 0 25px 25px 25px;
                padding-top: 20px;
            }
            .faq-intro .description {
                font-size: 1rem;
                max-width: 100%;
            }
            .whitepaper-card { padding: 30px 25px; }

            .footer-bottom-bar {
                flex-direction: column-reverse; 
                gap: 20px;
                align-items: center;
                text-align: center;
            }


            /*Page Two */
             #hero-legacy h1 { font-size: 2.2rem; }
            #hero-legacy p.subtitle { font-size: 1.1rem; }
            .premium-benefits-grid{grid-template-columns: 1fr;}
            .solution-item { padding: 25px; }
            .solution-item h3 { font-size: 1.5rem; }
            .solution-item .body-text p { font-size: 1rem; }
            .industry-grid {
                grid-template-columns: 1fr;
            }
            .industry-grid:hover .industry-card:not(:hover) {
                opacity: 1;
                transform: none;
            }
            .industry-card:hover {
                transform: none;
            }
            .industry-card:hover::before {
                transition: none;
                transform: translateX(-80%);
            }
        }

        /* ---
        [ 20. BENTO GRID REDESIGN ]
        --- */

        /* This selector was in the new file, need to merge it */
        .xcproc-interactive {
            overflow: hidden; /* Needed for glow effect */
        }
        .xcproc-interactive.section-light { 
            background-color: #f0f4f8; 
            background-image: linear-gradient(135deg, var(--color-bg-subtle) 0%, #e6f0ff 100%);
        }

        .xcproc-interactive::before {
            content: '';
            position: absolute;
            top: -20%; 
            left: -20%;
            width: 60%; 
            height: 150%;
            background: radial-gradient(circle, var(--color-glow), transparent 70%);
            animation: slow-spin 20s linear infinite;
            z-index: 1;
        }
        /* We already have a slow-spin keyframe, but this ensures it's available if the other is removed */
        @keyframes slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .xcproc-interactive .container {
            position: relative;
            z-index: 2;
        }

        .xcproc-intro strong {
            color: var(--color-brand);
            font-weight: 600;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 25px;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            
            border-radius: var(--border-radius-lg);
            padding: 30px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            overflow: hidden; 
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.75);
            border-color: rgba(255, 255, 255, 0.7); /* Glow hover */
        }
        
        .bento-card-content {
            /* This div just holds the text */
        }

        .bento-card-icon {
            width: 24px;
            height: 24px;
            color: var(--color-brand);
            margin-right: 10px;
            flex-shrink: 0;
        }

        .bento-card h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--color-dark); 
            display: flex;
            align-items: center;
        }
        .bento-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--color-text-light); 
            flex-grow: 0; 
        }

        .bento-card-visual {
            width: 100%;
            margin-top: auto; 
            border-radius: var(--border-radius-md); 
            overflow: hidden;
            flex-grow: 1; 
            min-height: 250px; 
            background: #ffffff; 
            border: 1px solid rgba(0,0,0,0.05);
            padding: 16px; 
            display: flex; 
            align-items: center;
            justify-content: center;
        }
        .bento-card-visual img {
            width: 100%;
            height: auto; 
            max-height: 100%; 
            display: block;
            object-fit: contain; 
        }
        
        .bento-card-wage .bento-card-visual,
        .bento-card-rm .bento-card-visual,
        .bento-card-ops .bento-card-visual { 
             min-height: 200px;
             padding: 0; 
        }
         .bento-card-wage .bento-card-visual img,
        .bento-card-rm .bento-card-visual img,
        .bento-card-ops .bento-card-visual img { 
            object-fit: cover; 
            height: 100%;
        }

        /* --- Grid Sizing --- */
        
        .bento-card-machine,
        .bento-card-wage {
            grid-column: span 3;
            grid-row: span 1; 
        }

        .bento-card-rm,
        .bento-card-ops {
            grid-column: span 3;
            grid-row: span 1;
        }
        
        .bento-card-tools,
        .bento-card-bop,
        .bento-card-custom {
            grid-column: span 2;
            grid-row: span 1;
        }
        
        .bento-card-custom {
            background: rgba(255, 255, 255, 0.6);
            padding: 30px;
            min-height: auto; 
        }
        .bento-card-custom:hover {
             background: rgba(255, 255, 255, 0.75);
        }

        /* ---
        [ 21. BENTO RESPONSIVENESS ]
        --- */
        @media (max-width: 1370px)  {
            .hero-visual {
                aspect-ratio: 16 / 0;
            }
            .how-it-works-visuals .visual-item { 
                height: 365px;                 
            }
         }   

          @media (min-width: 1025px) {
            h2 { font-size: 2.75rem; }
            .xcproc-intro { max-width: 800px; }

            .ai-flow-timeline {
                /* Switch to horizontal 5-column grid */
                grid-template-columns: 1fr auto 1.2fr auto 1fr;
                gap: 25px;
                align-items: center;
                max-width: 100%; /* Use full container width */
            }

            .ai-flow-card {
                height: 100%; /* Make all cards equal height */
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .ai-flow-card.hub-core {
                transform: scale(1.05); /* Keep it slightly larger */
            }

            /* Connector (Desktop: Horizontal) */
            .ai-flow-connector {
                width: 100px;
                height: auto;
            }
            .ai-flow-connector::before {
                width: 100%;
                height: 3px;
            }
            .ai-flow-connector-icon {
                /* Simple horizontal arrow for desktop */
                animation: none;
                opacity: 1;
                font-size: 2.5rem;
                font-weight: 300;
                transform: scale(1);
            }
        }

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

            .bento-card-machine,
            .bento-card-wage,
            .bento-card-rm,
            .bento-card-ops,
            .bento-card-tools,
            .bento-card-bop,
            .bento-card-custom {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            /* The FIX for the tablet "empty space" problem */
            .bento-card-custom {
                grid-column: span 2;
            }
        }

         @media (max-width: 960px) {
            .xcpep-process-table td:first-child { min-width: 140px; }
        }
        
          @media (max-width: 768px) {
            body { padding: 40px 0; }
            h2 { font-size: 2.2rem; }
            .xcproc-intro { width: 90%; margin-bottom: 40px; }

            /* Mobile: Stack the table */
            .comparison-table {
                border-radius: 0; 
                border: none; 
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                box-shadow: none;
            }
            
            /* Hide the desktop header */
            .comparison-table thead {
                display: none;
            }

            .comparison-table > tbody {
                display: block;
                width: 100%;
                margin-bottom: 10px;
                border-radius: var(--border-radius-md);
                overflow: hidden;
                border: 1px solid var(--color-border);
                background: var(--color-bg-light);
                box-shadow: var(--shadow-sm);
            }
            .comparison-table > tbody > tr > td {
                border: none;
            }

            .comparison-table summary {
                padding: 15px 20px;
                font-size: 1.05rem;
            }
            /* ADDED: Mobile badge responsiveness */
            .key-differentiator-badge {
                font-size: 0.65rem;
                padding: 3px 6px;
                gap: 8px;
            }
            .comparison-table details[open] summary {
                background: var(--color-bg-subtle);
                border-bottom: 1px solid var(--color-border); /* Keep border for mobile */
            }

            .sub-table-wrapper { background: transparent; }
            .sub-table { display: block; }
            .sub-table tbody { display: block; }
            .sub-table tr {
                display: grid;
                grid-template-columns: 1fr; /* Single column layout for items */
                gap: 10px;
                padding: 15px 20px;
                border-top: 1px solid var(--color-border); /* Keep border for mobile */
            }
            .sub-table tr:first-child { border-top: none; }
            
            .sub-table td {
                display: block;
                padding: 0;
                border: none;
                width: auto !important; /* Override desktop widths */
                text-align: left !important;
            }

            .sub-table td:first-child {
                grid-column: 1 / -1; /* Feature name spans full width */
                font-weight: 600;
                margin-bottom: 10px;
                font-size: 1rem; /* Reset font size for mobile */
            }

            /* Stack comparison columns */
            .sub-table td:not(:first-child) {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            /* Add labels for mobile */
            .sub-table td:not(:first-child)::before {
                content: attr(data-label);
                font-size: 0.8rem;
                font-weight: 600;
                color: var(--color-text-light);
                margin-bottom: 4px;
            }
            
            .icon {
                font-size: 1.1rem;
            }
            .icon-text-flex {
                gap: 6px;
            }

            .glass-video-frame:hover {
                transform: none; /* Disable 3D tilt on mobile */
            }
        }


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

            .bento-card-machine,
            .bento-card-wage,
            .bento-card-rm,
            .bento-card-ops,
            .bento-card-tools,
            .bento-card-bop,
            .bento-card-custom {
                grid-column: span 1; /* Resets the tablet fix */
                grid-row: span 1;
            }

            .xcpep-table-wrap { margin: 0; }
            .xcpep-process-table { 
                border-radius: 0; 
                border: none; 
                box-shadow: none;
                background: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
            .xcpep-process-table thead { display: none; } 
            
            .xcpep-process-table,
            .xcpep-process-table tbody,
            .xcpep-process-table tr { display: block; width: 100%; }
            
            .xcpep-process-table tr {
                border: 1px solid var(--xc-border); /* Add border for mobile blocks */
                background: var(--color-bg-light); /* Solid white bg for mobile */
                margin-bottom: 15px;
                border-radius: var(--border-radius-md);
                overflow: hidden;
            }
            .xcpep-process-table td {
                 display: block; 
                 border-bottom: none !important;
                 background: var(--color-bg-light) !important;
            }

            .xcpep-process-table td:first-child {
                border-right: none;
                border-bottom: 1px solid var(--xc-border);
                background: var(--xc-head-bg) !important;
                font-size: 1.1rem;
                padding: 15px 14px;
                min-width: unset;
                font-weight: 700;
            }
            .xcpep-process-table td:last-child {
                padding-top: 20px;
                padding-bottom: 20px;
            }
        }
        
        /* --- COST MODEL PROMISE SECTION STYLING  --- */
        .promise-block-wrapper {
            
            margin: 60px auto 0 auto; 
            padding: 0px; 
            position: relative; 
            z-index: 2;
            /*max-width: 1300px; /* ALIGNED WITH NEW TABLE WIDTH */
        }

        .promise-content-box {
            padding: 30px; 
            border-radius: var(--border-radius-lg); 
            /* Subtle Glassmorphism to match table */
            background: rgba(255, 255, 255, 0.7); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5); 
            box-shadow: var(--shadow-sm);
            /* PREMIUM HIGHLIGHTING ON HOVER */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .promise-content-box:hover {
            transform: translateY(-3px); /* subtle lift */
            box-shadow: 0 8px 25px rgba(0, 85, 212, 0.15); /* light blue glow */
            border-color: var(--color-brand); /* border turns blue */
        }
        .promise-content-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-brand); 
            margin-top: 0;
            margin-bottom: 10px;
        }
        .promise-content-box p {
            font-size: 1rem; 
            line-height: 1.7; 
            color: var(--color-text-light); 
            margin-bottom: 0;
        }
        .promise-content-box p b, .promise-content-box p strong {
            color: var(--color-text-dark);
            font-weight: 600;
        }

        

        /* ---
        [ 22. NEW MINIMAL CTA ]
        --- */
        
        .bento-final-cta {
            text-align: center;
            margin-top: 80px; 
        }
        
        .bento-final-cta-link {
            display: inline-block;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-brand);
            text-decoration: none;
            background: transparent;
            border: 2px solid var(--color-brand);
            border-radius: var(--border-radius-md);
            padding: 12px 28px;
            transition: all 0.3s ease;
        }
        .bento-final-cta-link span {
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .bento-final-cta-link:hover {
            background: var(--color-brand);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 85, 212, 0.2);
            transform: translateY(-2px);
        }
        .bento-final-cta-link:hover span {
            transform: translateX(5px);
        }
        
        /* ---
        [ 23. NEW CUSTOM DB ILLUSTRATION ]
        --- */
        .custom-db-illustration {
            width: 100%;
            background: #fff;
            border-radius: var(--border-radius-md); 
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-top: 10px;
            border: 1px solid rgba(0,0,0,0.05); 
            flex-grow: 1; /* Fill space */
        }
        .custom-db-header {
            flex-shrink: 0;
            height: 24px; 
            background: #f0f0f0;
            border-bottom: 1px solid #ddd;
            display: flex;
            align-items: center;
            padding: 0 8px;
        }
        .custom-db-header-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ccc;
            margin-right: 4px;
        }
        .custom-db-header-dot:nth-child(1) { background: #ff5f57; }
        .custom-db-header-dot:nth-child(2) { background: #ffbd2e; }
        .custom-db-header-dot:nth-child(3) { background: #28c940; }
        
        .custom-db-body {
            flex-grow: 1;
            display: flex;
            padding: 12px;
            gap: 12px;
            min-height: 150px; /* Give it a minimum height */
        }
        .custom-db-sidebar {
            flex: 0 0 80px;
            border-right: 1px solid #eee;
            padding-right: 12px;
        }
        .custom-db-sidebar-item {
            font-size: 0.8rem; 
            font-weight: 500;
            color: var(--color-text-light);
            padding: 4px 6px;
            border-radius: 4px;
            margin-bottom: 4px;
        }
        .custom-db-sidebar-item.active {
            color: var(--color-brand);
            background: #f0f6ff;
            font-weight: 600;
        }
        .custom-db-main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-width: 0; 
        }
        .custom-db-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0 0 12px 0;
        }
        .custom-db-chart-container {
            width: 100%;
            flex-grow: 1;
            border: 1px solid #eee;
            border-radius: var(--border-radius-md);
            padding: 10px;
        }
        .custom-db-chart-line {
            width: 100%;
            height: 40px; 
        }
        .custom-db-chart-line path {
            stroke-dasharray: 500;
            stroke-dashoffset: 500;
            animation: draw 2s ease-in-out forwards;
        }
        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }
        .custom-db-data-snippets {
            margin-top: 10px;
            display: flex;
            gap: 8px;
        }
        .custom-db-snippet {
            flex: 1;
            background: #f9f9f9;
            padding: 6px;
            border-radius: 4px;
        }
        .custom-db-snippet span {
            display: block;
            font-size: 0.75rem; 
            color: var(--color-text-light);
            margin-bottom: 2px;
        }
        .custom-db-snippet strong {
            font-size: 0.8rem;
            color: var(--color-dark);
        }
 