        /* ===== PERFORMANCE: LAZY LOADING ANIMATIONS ===== */
        .skepticism-section.loaded, 
        .evidence-section.loaded, 
        .capabilities-section.loaded, 
        .process-section.loaded, 
        .team-work-section.loaded {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* ===== DESIGN TOKENS: CSS CUSTOM PROPERTIES ===== */
        :root {
            /* Color Palette - Professional and Accessible */
            --pure-white: #FFFFFF;
            --deep-black: #000000;
            --neutral-gray: #6B7280;
            --professional-blue: #0078D4;
            --light-blue: #E3F2FD;
            --success-green: #10B981;
            --light-gray: #F3F4F6;
            --medium-gray: #9CA3AF;
            --dark-gray: #1F2937;
            --alert-red: #DC2626;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
            color: var(--neutral-gray);
            line-height: 1.6;
            background: var(--pure-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--light-gray);
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
            text-decoration: none;
            letter-spacing: -0.02em;
        }
        .logo img {
                height: 40px;
                width: auto;
                border: none;
                outline: none;
            }
        
        /* Logo text container for vertical alignment */
        .logo-text-container {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: center !important;
            gap: 0 !important;  /* No gap, use margins instead */
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
            line-height: 1.2;
            display: block;
            margin-bottom: 2px;  /* Add small gap before powered by text */
        }
        
        .logo-powered-by {
            font-size: 11px !important;
            color: #6B7280 !important;  /* Grey color */
            margin-top: 4px !important;
            line-height: 1 !important;
            font-weight: 400 !important;
            letter-spacing: 0.03em !important;
            opacity: 0.9 !important;  /* Slightly more visible */
            display: block !important;  /* Ensure it's on its own line */
            white-space: nowrap !important;  /* Keep text on one line */
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            color: var(--neutral-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s ease;
        }
        .nav-links a:hover {
            color: var(--deep-black);
        }
        /* Mobile Navigation Hamburger Menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1100;
        }
        
        .nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--deep-black);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .nav-toggle span:nth-child(2) {
            margin: 5px 0;
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        @media (max-width: 1024px) {
            .nav-toggle {
                display: flex;
            }
        }
        
        .btn-nav-primary {
            background: var(--professional-blue);
            color: var(--pure-white);
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.2s ease;
        }
        .btn-nav-primary:hover {
                background: #006ABC;
            }
        /* Hero Section */
        .hero {
            background: var(--pure-white);
            padding: 100px 0 60px;
            text-align: center;
        }
        .hero-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            color: var(--deep-black);
        }
        .hero-subtitle {
            font-size: 20px;
            font-weight: 400;
            color: var(--neutral-gray);
            margin-bottom: 40px;
            max-width: 720px;
            line-height: 1.5;
            margin-left: auto;
            margin-right: auto;
        }
        /* Problem/Solution Section */
        .problem-solution-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px auto;
            max-width: 900px;
        }
        .problem-box, .solution-box {
            padding: 32px;
            border-radius: 8px;
            text-align: left;
        }
        .problem-box {
            background: #E3F2FD;
            border: 1px solid var(--professional-blue);
        }
        .solution-box {
            background: #E3F2FD;
            border: 1px solid var(--professional-blue);
        }
        .problem-title {
            color: var(--professional-blue);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .solution-title {
            color: var(--professional-blue);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .problem-text, .solution-text {
            color: var(--dark-gray);
            line-height: 1.8;
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            display: block;
            font-size: 48px;
            font-weight: 700;
            color: var(--success-green);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }
        .stat-label {
            display: block;
            font-size: 14px;
            color: var(--neutral-gray);
            font-weight: 500;
        }
        .cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--professional-blue);
            color: var(--pure-white);
            padding: 16px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .btn-primary:hover {
                background: #006ABC;
            }
        .btn-secondary {
            background: transparent;
            color: var(--deep-black);
            padding: 16px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            border: 1px solid var(--deep-black);
            transition: all 0.2s ease;
            display: inline-block;
        }
        .btn-secondary:hover {
                background: var(--deep-black);
                color: var(--pure-white);
            }
        /* How It Works Section */
        .how-it-works {
            padding: 60px 0;
            background: #FFFFFF;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .section-description {
            font-size: 18px;
            color: var(--neutral-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .process-visualization {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 60px 0;
            align-items: center;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .process-step {
            text-align: center;
            position: relative;
        }
        .process-step h3 {
                font-size: 20px;
                font-weight: 600;
                color: var(--deep-black);
                margin: 20px 0 10px;
            }
        .process-step p {
                font-size: 14px;
                color: var(--neutral-gray);
                max-width: 200px;
                margin: 0 auto;
            }
        .step-icon {
            margin: 0 auto 20px;
        }
        .animated-arrow {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: var(--professional-blue);
            animation: pulse 2s infinite;
        }
        .process-step:last-child .animated-arrow {
            display: none;
        }
        @keyframes pulse {
            0%, 100% {
                opacity: 0.3;
                transform: translateY(-50%) translateX(0);
            }

            50% {
                opacity: 1;
                transform: translateY(-50%) translateX(5px);
            }
        }
        .tesseract-visual {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            position: relative;
        }
        .tesseract-cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            /* animation: rotate 10s infinite linear; */  /* Disabled spinning animation */
        }
        @keyframes rotate {
            from {
                transform: rotateY(0deg) rotateX(25deg);
            }

            to {
                transform: rotateY(360deg) rotateX(25deg);
            }
        }
        .vertex {
            position: absolute;
            background: var(--professional-blue);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        .vertex:nth-child(1) {
                top: 0;
                left: 0;
            }
        .vertex:nth-child(2) {
                top: 0;
                right: 0;
            }
        .vertex:nth-child(3) {
                bottom: 0;
                left: 0;
            }
        .vertex:nth-child(4) {
                bottom: 0;
                right: 0;
            }
        .vertex:nth-child(5) {
                top: 20%;
                left: 20%;
            }
        .vertex:nth-child(6) {
                top: 20%;
                right: 20%;
            }
        .vertex:nth-child(7) {
                bottom: 20%;
                left: 20%;
            }
        .vertex:nth-child(8) {
                bottom: 20%;
                right: 20%;
            }
        .expert-analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            width: 120px;
            margin: 0 auto 20px;
        }
        .mini-expert {
            background: var(--light-blue);
            color: var(--professional-blue);
            padding: 4px;
            border-radius: 4px;
            font-size: 10px;
            text-align: center;
        }
        .synthesis-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }
        .process-timeline {
            max-width: 600px;
            margin: 40px auto 0;
        }
        .timeline-bar {
            height: 4px;
            background: var(--light-gray);
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }
        .timeline-progress {
            height: 100%;
            background: var(--success-green);
            width: 0;
            animation: progress 3s ease-out forwards;
        }
        @keyframes progress {
            to {
                width: 100%;
            }
        }
        .timeline-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .process-cta {
            text-align: center;
            margin-top: 40px;
        }
        /* Value Props Section */
        .value-props {
            padding: 80px 0;
            background: var(--pure-white);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .value-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        .value-card {
            text-align: center;
            padding: 40px 24px;
            background: var(--light-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .value-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 24px rgba(0,0,0,0.08);
            }
        .value-icon {
            font-size: 48px;
            margin-bottom: 24px;
        }
        .value-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 12px;
        }
        .value-description {
            font-size: 14px;
            color: var(--neutral-gray);
            line-height: 1.5;
        }
        /* Competitive Section */
        .competitive-section {
            padding: 80px 0;
            background: #FAFBFC;
        }
        .competitive-section h2 {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .ai-comparison-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        .ai-comparison-intro h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .ai-comparison-intro p {
            font-size: 18px;
            color: var(--neutral-gray);
        }
        .comparison-table {
            overflow-x: auto;
            margin: 0 -24px;
            padding: 0 24px;
        }
        .comparison-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07);
        }
        .comparison-table th {
            background: var(--deep-black);
            color: white;
            padding: 20px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
        }
        .comparison-table td {
            padding: 20px 16px;
            border-bottom: 1px solid var(--light-gray);
            font-size: 14px;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table .highlight {
            background: #E3F2FD;
            color: var(--professional-blue);
            font-weight: 600;
        }
        .example-comparison {
            margin-top: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .example-comparison h3 {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 40px;
        }
        .comparison-examples {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .example-regular, .example-advisor {
            padding: 32px;
            border-radius: 8px;
            border: 1px solid var(--light-gray);
            background: white;
        }
        .example-advisor {
            border-color: var(--professional-blue);
            background: #E3F2FD;
        }
        .example-regular h4, .example-advisor h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--deep-black);
        }
        .example-advisor h4 {
            color: var(--success-green);
        }
        /* Use Case Sections */
        .use-case-software, .use-case-consulting {
            padding: 80px 0;
            background: white;
        }
        .use-case-consulting {
            background: #FAFBFC;
        }
        .case-study-narrative {
            max-width: 900px;
            margin: 0 auto;
        }
        .the-challenge, .the-solution, .the-results {
            margin-bottom: 48px;
        }
        .the-challenge h3, .the-solution h3, .the-results h3 {
            font-size: 32px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 24px;
        }
        .advisor-contributions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        .advisor-card {
            background: var(--light-gray);
            padding: 24px;
            border-radius: 8px;
        }
        .advisor-card h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--professional-blue);
            margin-bottom: 12px;
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .result {
            text-align: center;
        }
        .result .metric {
            display: block;
            font-size: 36px;
            font-weight: 700;
            color: var(--success-green);
            margin-bottom: 8px;
        }
        .result .label {
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .key-insight {
            background: var(--light-blue);
            padding: 32px;
            border-radius: 8px;
            margin-top: 48px;
        }
        .key-insight .insight {
                font-size: 18px;
                font-style: italic;
                color: var(--dark-gray);
                margin-bottom: 16px;
            }
        .key-insight .attribution {
                text-align: right;
                color: var(--neutral-gray);
            }
        /* Teams Overview Section */
        .teams-overview {
            padding: 80px 0;
            background: var(--light-gray);
        }
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        .team-card {
            background: var(--pure-white);
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .team-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        .team-name {
            font-size: 22px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .team-badge {
            background: var(--success-green);
            color: var(--pure-white);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }
        .expert-roles {
            list-style: none;
            font-size: 14px;
            color: var(--neutral-gray);
            line-height: 1.8;
        }
        .expert-roles li::before {
                content: "→ ";
                color: var(--success-green);
                font-weight: 600;
            }
        /* Target Market Section */
        .target-market {
            padding: 80px 0;
            background: white;
        }
        .target-market h2 {
                text-align: center;
                font-size: 48px;
                font-weight: 700;
                color: var(--deep-black);
                margin-bottom: 60px;
            }
        .market-segments {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .segment {
            text-align: center;
            padding: 40px;
            border-radius: 8px;
            background: var(--light-gray);
            transition: all 0.3s ease;
        }
        .segment:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            }
        .segment-icon {
            font-size: 48px;
            margin-bottom: 24px;
        }
        .segment h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 24px;
        }
        .pain-points {
            margin-bottom: 32px;
        }
        .pain {
            color: var(--alert-red);
            font-size: 14px;
            margin-bottom: 8px;
        }
        .pain::before {
                content: "✗ ";
            }
        .solution, .benefit {
            color: var(--success-green);
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .solution::before, .benefit::before {
                content: "\2713 ";
            }
        .market-proof {
            text-align: center;
            margin-top: 60px;
            padding: 32px;
            background: var(--light-blue);
            border-radius: 8px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .proof-stat {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
        }

        /* Orchestration Story Section */
        .orchestration-story-section {
            padding: 60px 0;
            background: var(--pure-white);
        }
        .orchestration-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-subtitle {
            font-size: 18px;
            color: var(--neutral-gray);
            max-width: 600px;
            margin: 16px auto 0;
            text-align: center;
        }

        /* Philosophy Banner */
        .philosophy-banner {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
            border-left: 4px solid var(--professional-blue);
        }
        .philosophy-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 24px;
            align-items: center;
        }
        .philosophy-icon {
            font-size: 48px;
            text-align: center;
        }
        .philosophy-text h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 12px;
        }
        .philosophy-text p {
            font-size: 16px;
            color: var(--neutral-gray);
            line-height: 1.6;
        }

        /* Demo Callout */
        .demo-callout {
            background: linear-gradient(135deg, var(--professional-blue) 0%, #0056b3 100%);
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            color: white;
        }
        .demo-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: center;
        }
        .demo-text h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .demo-text p {
            font-size: 16px;
            opacity: 0.95;
            line-height: 1.6;
        }
        .demo-button {
            background: white;
            color: var(--professional-blue);
            padding: 12px 24px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* User Journey */
        .user-journey {
            margin: 80px 0;
        }
        .journey-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--deep-black);
            text-align: center;
            margin-bottom: 60px;
        }
        .journey-steps {
            display: grid;
            gap: 40px;
        }
        
        /* 2x2 Grid Layout for Journey Steps */
        .journey-steps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .journey-steps-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
        }
        
        /* Style for AI Advisor logos in grid layout */
        .step-logo {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .step-logo-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: contain;
        }
        
        /* Adjust journey-step layout for grid version to use logos instead of numbers */
        .journey-steps-grid .journey-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            grid-template-columns: none;
        }
        .journey-step {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 10px;
            padding: 10px;
            background: var(--pure-white);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }
        .journey-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--professional-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin-top: 8px;
        }
        .step-content h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 12px;
        }
        .step-content p {
            font-size: 16px;
            color: var(--neutral-gray);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .step-highlight {
            background: var(--light-gray);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--professional-blue);
            display: inline-block;
        }

        /* Revolutionary Difference */
        .revolutionary-difference {
            margin: 80px 0;
        }
        .revolutionary-difference h3 {
            font-size: 36px;
            font-weight: 700;
            color: var(--deep-black);
            text-align: center;
            margin-bottom: 60px;
        }
        .difference-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .difference-card {
            background: var(--pure-white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid var(--light-gray);
            text-align: center;
            transition: all 0.3s ease;
        }
        .difference-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        .difference-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .difference-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .difference-card p {
            font-size: 14px;
            color: var(--neutral-gray);
            line-height: 1.5;
            margin-bottom: 8px;
        }

        /* Impact Banner */
        .impact-banner {
            background: linear-gradient(135deg, var(--success-green) 0%, #28a745 100%);
            border-radius: 12px;
            padding: 48px;
            margin: 60px 0;
            color: white;
        }
        .impact-content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }
        .impact-content p {
            font-size: 18px;
            opacity: 0.95;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 32px;
        }
        .impact-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .impact-metric {
            text-align: center;
        }
        .metric-value {
            display: block;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .metric-label {
            display: block;
            font-size: 14px;
            opacity: 0.9;
        }

        /* Responsive Design for Orchestration Section */
        @media (max-width: 1024px) {
            .difference-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .demo-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .journey-step {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .step-number {
                margin: 0 auto 16px;
            }
            .philosophy-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .difference-grid {
                grid-template-columns: 1fr;
            }
            .impact-metrics {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* Use Cases Section */
        #use-cases {
            padding: 60px 0;
            background: #FAFBFC;
        }
        .use-cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-top: 60px;
        }
        .use-case-card {
            background: var(--pure-white);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            padding: 32px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }
        .use-case-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        /* Use Case Header */
        .use-case-header {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 24px;
            align-items: flex-start;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--light-gray);
        }
        .use-case-number {
            width: 60px;
            height: 60px;
            background: var(--professional-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .use-case-category {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--professional-blue);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .use-case-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .use-case-subtitle {
            font-size: 14px;
            color: var(--neutral-gray);
            margin: 0;
        }

        /* Use Case Content */
        .use-case-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .content-section-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 12px;
        }
        .challenge-text {
            font-size: 14px;
            color: var(--neutral-gray);
            line-height: 1.5;
        }
        .team-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .team-list li {
            font-size: 14px;
            color: var(--neutral-gray);
            padding: 4px 0;
        }
        .team-list li::before {
            content: "";
        }

        /* Achievements Section */
        .achievements {
            background: var(--light-gray);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 24px;
        }
        .achievements-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .achievements-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .achievements-list li {
            font-size: 14px;
            color: var(--neutral-gray);
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            line-height: 1.4;
        }
        .achievements-list li::before {
            content: "✓";
            color: var(--success-green);
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        /* Highlight Metric */
        .highlight-metric {
            background: linear-gradient(135deg, var(--professional-blue) 0%, #0056b3 100%);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            color: white;
        }
        .highlight-metric-value {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }
        .highlight-metric-label {
            font-size: 12px;
            opacity: 0.9;
        }

        /* Responsive Design for Use Cases */
        @media (max-width: 768px) {
            .use-case-header {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .use-case-number {
                margin: 0 auto 16px;
            }
            .use-case-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* Section Spacing Optimization - UX Designer Adjustments */
        .target-market {
            padding: 50px 0;
        }
        .teams-overview {
            padding: 50px 0;
        }
        .competitive-section {
            padding: 50px 0;
        }
        .value-props {
            padding: 50px 0;
        }
        .evidence-section {
            padding: 50px 0;
        }
        .capabilities-section {
            padding: 50px 0;
        }
        .integration-section {
            padding: 50px 0;
        }

        /* ROI Calculator Section */
        .roi-calculator-section {
            padding: 80px 0;
            background: #FAFBFC;
        }
        .roi-calculator {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 48px;
        }
        .calculator-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .calculator-header h3 {
                font-size: 36px;
                font-weight: 700;
                color: var(--deep-black);
                margin-bottom: 16px;
            }
        .calculator-header p {
                font-size: 18px;
                color: var(--neutral-gray);
            }
        .calculator-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .calculator-inputs, .calculator-outputs {
            padding: 32px;
            background: var(--light-gray);
            border-radius: 8px;
        }
        .calculator-inputs h4, .calculator-outputs h4 {
                font-size: 24px;
                font-weight: 600;
                color: var(--deep-black);
                margin-bottom: 24px;
            }
        .input-group {
            margin-bottom: 24px;
        }
        .input-group label {
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--deep-black);
                margin-bottom: 8px;
            }
        .input-group input, .input-group select {
                width: 100%;
                padding: 12px 16px;
                border: 1px solid var(--medium-gray);
                border-radius: 4px;
                font-size: 16px;
            }
        .input-group input:focus, .input-group select:focus {
                    outline: none;
                    border-color: var(--professional-blue);
                }
        .output-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .output-item:last-child {
                border-bottom: none;
            }
        .output-label {
            font-size: 16px;
            color: var(--neutral-gray);
        }
        .output-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--success-green);
        }
        .output-value.large {
                font-size: 32px;
            }
        .calculator-comparisons {
            margin-top: 48px;
        }
        .comparison-item {
            text-align: center;
            padding: 24px;
            background: var(--light-gray);
            border-radius: 8px;
        }
        .comparison-item h5 {
            font-size: 16px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .comparison-metric {
            font-size: 28px;
            font-weight: 700;
            color: var(--professional-blue);
            margin-bottom: 8px;
        }
        .comparison-label {
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .calculator-actions {
            text-align: center;
            margin-top: 48px;
        }
        /* Case Study Section */
        .case-study-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        .paradigm-shift {
            text-align: center;
            margin-top: 60px;
            padding: 48px;
            background: linear-gradient(135deg, #E3F2FD 0%, #E3F2FD 100%);
            border-radius: 12px;
        }
        .paradigm-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 24px;
        }
        .paradigm-quote {
            font-size: 20px;
            font-style: italic;
            color: var(--neutral-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* Portfolio Section */
        .portfolio-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        .category-card {
            background: var(--pure-white);
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .category-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
        }
        .category-count {
            background: var(--light-blue);
            color: var(--professional-blue);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }
        .team-list {
            list-style: none;
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .team-list li {
                padding: 8px 0;
                border-bottom: 1px solid var(--light-gray);
            }
        .team-list li:last-child {
                    border-bottom: none;
                }
        /* Section Break */
        .section-break {
            height: 80px;
            background: transparent;
        }
        /* Final CTA Section */
        .final-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--deep-black) 0%, #1a1a1a 100%);
            color: var(--pure-white);
            text-align: center;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        .cta-subtitle {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }
        .final-cta .btn-secondary {
            border-color: var(--pure-white);
            color: var(--pure-white);
        }
        .final-cta .btn-secondary:hover {
                background: var(--pure-white);
                color: var(--deep-black);
            }
        /* Contact Form Section */
        .contact-form-section {
            background: linear-gradient(135deg, var(--deep-black) 0%, #1a1a1a 100%);
            padding: 10px 0;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            scroll-margin-top: 80px;
            min-height: auto;
        }
        .contact-form-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .contact-form-header {
            margin-bottom: 8px;
        }
        .contact-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 5px;
        }
        .contact-subtitle {
            font-size: 1.2rem;
            color: var(--pure-white);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .contact-form {
            text-align: left;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-group {
            margin-bottom: 8px;
        }
        .form-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--pure-white);
            margin-bottom: 8px;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background: var(--pure-white);
            color: var(--deep-black);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: var(--pure-white);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #888888;
        }
        .form-textarea {
            resize: vertical;
            min-height: 40px;
            font-family: inherit;
        }
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--pure-white);
            cursor: pointer;
            line-height: 1.5;
        }
        .checkbox-label input[type="checkbox"] {
            appearance: none;
            position: absolute;
            opacity: 0;
            width: 20px;
            height: 20px;
            margin: 0;
            cursor: pointer;
        }
        .checkbox-label input[type="checkbox"]:hover {
            border-color: var(--pure-white);
            background: rgba(255, 255, 255, 0.2);
        }
        .checkbox-label input[type="checkbox"]:checked {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
        }
        .checkbox-label input[type="checkbox"]:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* Checkmark span styling for custom checkbox */
        .checkbox-label .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            flex-shrink: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--pure-white);
            font-size: 14px;
            font-weight: bold;
        }
        
        .checkbox-label:hover .checkmark {
            border-color: var(--pure-white);
            background: rgba(255, 255, 255, 0.2);
        }
        .error-message {
            color: #ff6b6b;
            font-size: 0.85rem;
            margin-top: 8px;
            display: none;
        }
        .error-message.show {
            display: block;
        }
        .form-actions {
            margin-top: 12px;
            text-align: center;
        }
        .contact-submit-btn {
            position: relative;
            min-width: 200px;
        }
        .btn-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .form-success {
            text-align: center;
            padding: 40px 20px;
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            border-radius: 8px;
            margin-top: 24px;
        }
        .success-icon {
            font-size: 3rem;
            color: #4CAF50;
            margin-bottom: 16px;
        }
        .form-success h3 {
            color: var(--pure-white);
            margin-bottom: 8px;
        }
        .form-success p {
            color: var(--soft-white);
            margin: 0;
        }
        .contact-info {
            margin-top: 60px;
        }
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-info-item {
            text-align: center;
        }
        .contact-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .contact-details h4 {
            color: var(--pure-white);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .contact-details p {
            color: var(--soft-white);
            margin: 0;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-form-section {
                padding: 8px 0;
            }
            
            .contact-form-header {
                margin-bottom: 5px;
            }
            
            .contact-title {
                font-size: 1.8rem;
                margin-bottom: 3px;
            }

            .contact-form-wrapper {
                padding: 8px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        /* Citation Styling */
        .citation {
            color: #0078D4;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
        }
        
        .citation:hover {
            text-decoration: underline;
        }
        
        .citation-url {
            color: #666;
            font-size: 11px;
            text-decoration: none;
            word-break: break-all;
        }
        
        .citation-url:hover {
            color: #0078D4;
            text-decoration: underline;
        }
        
        sup {
            font-size: 10px;
            line-height: 1;
            position: relative;
            vertical-align: baseline;
            top: -0.3em;
        }
        
        .comparison-list li {
            line-height: 1.6;
            vertical-align: baseline;
        }
        
        .comparison-list li sup {
            vertical-align: baseline;
            top: -0.1em;
            margin-left: 1px;
        }
        
        .references-list p {
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .references-list p:target {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #0078D4;
            animation: highlight 3s ease;
        }
        
        @keyframes highlight {
            from { background-color: #fff3cd; }
            to { background-color: transparent; }
        }
        
        /* Footer */
        .footer {
            background: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 40px;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
                margin-bottom: 12px;
            }
        .footer-links a {
                color: rgba(255, 255, 255, 0.7);
                text-decoration: none;
                font-size: 14px;
                transition: color 0.2s ease;
            }
        .footer-links a:hover {
                    color: var(--pure-white);
                }
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.7;
        }
        /* Responsive Design */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 48px;
            }

            .problem-solution-section {
                grid-template-columns: 1fr;
            }

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

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

            .process-visualization {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .animated-arrow {
                display: none;
            }

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

            .comparison-table {
                overflow-x: scroll;
            }

            .market-segments {
                grid-template-columns: 1fr;
            }

            .calculator-body {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 640px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .section-title {
                font-size: 36px;
            }

            /* Mobile Navigation Styles */
            .nav-links {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                border-top: 1px solid var(--light-gray);
                z-index: 999;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            
            .nav-links a {
                display: block;
                padding: 10px;
                font-size: 16px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* AI Advisor Definition Section Styles */
        .ai-advisor-definition {
            padding: 20px 0;
            background: #FFFFFF;
        }
        .definition-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-subtitle {
            font-size: 20px;
            color: var(--neutral-gray);
            margin-top: 16px;
        }
        .definition-core {
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
        }
        .lead-definition {
            font-size: 24px;
            line-height: 1.6;
            color: var(--dark-gray);
            font-weight: 400;
        }
        .lead-definition .highlight {
                color: var(--professional-blue);
                font-weight: 600;
            }
        .definition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }
        .definition-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            text-align: center;
        }
        .definition-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            }
        .def-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FAFBFC;
            border-radius: 50%;
        }
        .definition-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .definition-card p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--neutral-gray);
        }
        .simple-explanation {
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 48px;
            background: linear-gradient(135deg, #E3F2FD 0%, #E3F2FD 100%);
            border-radius: 16px;
            position: relative;
        }
        .explanation-icon {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 40px;
            background: white;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .simple-explanation h3 {
            text-align: center;
            font-size: 24px;
            color: var(--deep-black);
            margin-bottom: 20px;
        }
        .simple-explanation p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--dark-gray);
            text-align: center;
        }
        .simple-explanation strong {
            color: var(--professional-blue);
            font-weight: 600;
        }
        .definition-cta {
            text-align: center;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .definition-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .lead-definition {
                font-size: 20px;
            }

            .simple-explanation {
                padding: 32px 24px;
            }

                .simple-explanation p {
                    font-size: 16px;
                }
        }
        .hero-definition {
            font-size: 16px;
            color: var(--neutral-gray);
            margin: 20px auto 30px;
            padding: 16px 24px;
            background: var(--light-gray);
            border-radius: 8px;
            display: inline-block;
            max-width: 600px;
        }
        .hero-definition .def-icon {
                margin-right: 8px;
            }
        .hero-definition strong {
                color: var(--deep-black);
            }
        /* Evidence Section Styling */
        .evidence-section {
            padding: 80px 0;
            background: white;
        }
        .evidence-table-container {
            margin-top: 60px;
            overflow-x: auto;
        }
        .evidence-comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-radius: 12px;
            overflow: hidden;
        }
        .evidence-comparison-table thead {
                background: var(--deep-black);
            }
        .evidence-comparison-table th {
                color: white;
                padding: 20px 16px;
                text-align: left;
                font-weight: 600;
                font-size: 15px;
                white-space: nowrap;
            }
        .evidence-comparison-table td {
                padding: 20px 16px;
                border-bottom: 1px solid #E5E7EB;
                vertical-align: top;
            }
        .evidence-comparison-table tr:last-child td {
                border-bottom: none;
            }
        .evidence-comparison-table tr:hover {
                background: #F9FAFB;
            }
        .problem-name {
            font-weight: 600;
            color: var(--deep-black);
            font-size: 16px;
        }
        .status {
            color: #DC2626;
            font-weight: 500;
        }
        .solution {
            color: #059669;
            font-weight: 600;
        }
        .evidence {
            font-size: 14px;
            color: #4B5563;
            line-height: 1.6;
        }
        .evidence a {
                color: var(--professional-blue);
                text-decoration: none;
                font-weight: 500;
                border-bottom: 1px dotted var(--professional-blue);
            }
        .evidence a:hover {
                    border-bottom-style: solid;
                }
        /* Responsive */
        @media (max-width: 968px) {
            .evidence-comparison-table {
                font-size: 13px;
            }

                .evidence-comparison-table th,
                .evidence-comparison-table td {
                    padding: 12px 8px;
                }
        }
        @media (max-width: 640px) {
            /* Stack table on mobile */
            .evidence-comparison-table thead {
                display: none;
            }

            .evidence-comparison-table tr {
                display: block;
                margin-bottom: 20px;
                border: 1px solid #E5E7EB;
                border-radius: 8px;
                padding: 16px;
                background: white;
            }

            .evidence-comparison-table td {
                display: block;
                text-align: left;
                border: none;
                padding: 8px 0;
            }

                .evidence-comparison-table td:before {
                    content: attr(data-label);
                    font-weight: 600;
                    display: block;
                    margin-bottom: 4px;
                    color: var(--deep-black);
                }
        }
        .value-card strong {
            display: block;
            margin-top: 8px;
            color: var(--neutral-gray);
            font-size: 14px;
        }
        .value-card strong:first-child {
                color: var(--alert-red);
            }
        .value-card strong:last-child {
                color: var(--success-green);
            }
        #capabilities .value-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }
        #capabilities .value-card {
            min-height: 200px;
        }
        /* Capabilities Comparison Table */
        .capabilities-section {
            padding: 80px 0;
            background: #FAFBFC;
        }
        .capabilities-table-container {
            margin-top: 60px;
            overflow-x: auto;
        }
        .capabilities-comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-radius: 12px;
            overflow: hidden;
        }
        .capabilities-comparison-table thead {
                background: var(--deep-black);
            }
        .capabilities-comparison-table th {
                color: white;
                padding: 20px 16px;
                text-align: left;
                font-weight: 600;
                font-size: 16px;
            }
        .capabilities-comparison-table td {
                padding: 20px 16px;
                border-bottom: 1px solid #E5E7EB;
                vertical-align: top;
            }
        .capabilities-comparison-table tr:last-child td {
                border-bottom: none;
            }
        .capabilities-comparison-table tr:hover {
                background: #F9FAFB;
            }
        .cap-number {
            font-weight: 700;
            color: var(--professional-blue);
            font-size: 18px;
            text-align: center;
        }
        .cap-name {
            font-weight: 600;
            color: var(--deep-black);
            font-size: 16px;
        }
        .cap-others {
            color: #6B7280;
            background: #FEF2F2;
            border-left: 3px solid #FCA5A5;
            font-size: 15px;
        }
        .cap-ours {
            color: #059669;
            background: #D1FAE5;
            border-left: 3px solid #34D399;
            font-weight: 500;
            font-size: 15px;
        }
        .capabilities-summary {
            text-align: center;
            margin-top: 40px;
            padding: 24px;
            background: var(--light-blue);
            border-radius: 8px;
        }
        .capabilities-summary p {
                font-size: 18px;
                margin: 0;
            }
        .capabilities-summary strong {
                color: var(--professional-blue);
            }
        /* Responsive */
        @media (max-width: 768px) {
            .capabilities-comparison-table {
                font-size: 14px;
            }

                .capabilities-comparison-table th,
                .capabilities-comparison-table td {
                    padding: 12px 8px;
                }

            .cap-number {
                font-size: 16px;
            }
        }
        /* Integration Section Styles */
        .integration-section {
            padding: 80px 0;
            background: white;
        }
        .fragmentation-visual {
            margin: 60px 0;
            padding: 40px;
            background: #FAFBFC;
            border-radius: 12px;
        }
        .tool-maze {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        .tool-box {
            background: #FEE2E2;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            min-width: 120px;
            border: 2px solid #FCA5A5;
        }
        .tool-box span {
                display: block;
                font-size: 12px;
                color: #6B7280;
                margin-top: 8px;
            }
        .plus, .equals {
            font-size: 24px;
            font-weight: bold;
            color: #6B7280;
        }
        .result-box {
            background: #FEF2F2;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid #DC2626;
        }
        .big-text {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: #DC2626;
            margin-bottom: 10px;
        }
        .small-text {
            display: block;
            font-size: 14px;
            color: #6B7280;
            margin: 4px 0;
        }
        .single-solution {
            margin: 40px 0;
            text-align: center;
        }
        .solution-box {
            background: #D1FAE5;
            padding: 40px;
            border-radius: 8px;
            display: inline-block;
            border: 2px solid #34D399;
        }
        .solution-box .big-text {
                color: #059669;
            }
        .features {
            display: block;
            font-size: 16px;
            color: #059669;
            margin: 8px 0;
            font-weight: 500;
        }
        .integration-summary {
            text-align: center;
            margin-top: 40px;
            padding: 24px;
            background: var(--light-blue);
            border-radius: 8px;
        }
        .integration-summary p {
                font-size: 18px;
                margin: 0;
            }
        .integration-summary strong {
                color: var(--professional-blue);
            }
        /* Integration Benefits */
        .integration-benefits {
            margin: 60px 0;
        }
        .benefit-card {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
            border-radius: 12px;
        }
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .main-text {
            font-size: 24px;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        /* Integration Equation */
        .integration-equation {
            margin: 60px 0;
            padding: 40px;
            background: #F9FAFB;
            border-radius: 12px;
        }
        .equation-visual {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
        }
        .equation-title {
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .equation-content {
            font-size: 16px;
            color: #DC2626;
            margin-bottom: 16px;
        }
        .equation-result {
            font-weight: 600;
            color: #6B7280;
        }
        .right-side .equation-content {
            font-size: 28px;
            color: #059669;
            font-weight: 700;
        }
        .equals-sign {
            font-size: 36px;
            font-weight: 700;
            color: var(--neutral-gray);
        }
        .bottom-line-box {
            margin-top: 60px;
            padding: 40px;
            background: white;
            border: 2px solid var(--light-gray);
            border-radius: 12px;
        }
        .bottom-line-box blockquote {
                font-style: italic;
                color: #6B7280;
                margin: 20px 0;
                padding: 20px;
                background: #F9FAFB;
                border-left: 4px solid var(--professional-blue);
            }
        .our-response {
            font-size: 18px;
            text-align: center;
            margin-top: 24px;
        }
        .our-response strong {
                color: var(--success-green);
            }
        /* Make tables use consistent styling */
        .integration-comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-radius: 12px;
            overflow: hidden;
            margin-top: 40px;
        }
        .integration-comparison-table thead {
                background: var(--deep-black);
            }
        .integration-comparison-table th {
                color: white;
                padding: 20px 16px;
                text-align: left;
                font-weight: 600;
                font-size: 15px;
            }
        .integration-comparison-table td {
                padding: 20px 16px;
                border-bottom: 1px solid #E5E7EB;
                vertical-align: top;
            }
        /* Responsive */
        @media (max-width: 768px) {
            .tool-maze {
                flex-direction: column;
            }

            .equation-visual {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .equals-sign {
                transform: rotate(90deg);
                margin: 20px 0;
            }
        }

        /* ===== RESPONSIVE DESIGN: MOBILE-FIRST APPROACH ===== */
        <!--
        MOBILE RESPONSIVENESS STRATEGY:
        
        BREAKPOINTS:
        - 1024px: Tablet landscape (process flows stack, grids simplify)
        - 768px: Mobile (typography scales, single columns, touch-friendly)
        - 480px: Small mobile (ultra-compact, minimal padding)
        
        KEY RESPONSIVE FEATURES:
        1. Process Visualizations: Horizontal → Vertical stack
        2. Grid Layouts: Multi-column → Single column progression
        3. Typography: Scales down appropriately for readability
        4. Touch Targets: Minimum 44px for mobile usability
        5. Spacing: Reduces padding/margins for small screens
        6. Animations: Disabled arrows and complex animations on mobile
        7. Forms: Single column layout with large input fields
        
        TESTING DEVICES:
        - iPhone SE (375px) - Smallest common mobile
        - iPhone 12/13/14 (390px) - Most common mobile
        - iPad (768px) - Tablet portrait
        - iPad Pro (1024px) - Tablet landscape
        -->
        
        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1024px) {
        /* Process visualization improvements */
        .process-visualization {
            flex-direction: column !important;
            gap: 40px !important;
        }
            
        .process-step {
            flex: none !important;
            max-width: 300px;
            margin: 0 auto;
        }
            
        .animated-arrow {
            display: none !important;
        }
            
        /* Trinity grid improvements */
        .trinity-grid {
            grid-template-columns: 1fr !important;
            gap: 24px;
        }
            
        .trinity-card {
            text-align: center;
            padding: 24px;
        }
            
        /* Advisor contributions */
        .advisor-contributions {
            grid-template-columns: 1fr !important;
            gap: 20px;
        }
            
        /* Performance grid */
        .performance-grid {
            grid-template-columns: 1fr !important;
            gap: 30px;
        }
            
        /* Definition grid */
        .definition-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
            gap: 24px;
        }
            
        /* Comparison grid */
        .comparison-grid {
            grid-template-columns: 1fr !important;
            gap: 40px;
        }
            
        .versus-indicator {
            transform: rotate(90deg);
            margin: 20px 0;
        }
        }

        @media (max-width: 768px) {
            /* Container padding */
            .container {
                padding: 0 20px !important;
            }
            
            /* Typography scaling */
            .section-title {
                font-size: 32px !important;
                line-height: 1.2;
            }
            
            .hero-title {
                font-size: 36px !important;
                line-height: 1.2;
            }
            
            .section-subtitle {
                font-size: 18px !important;
            }
            
            /* Form improvements */
            .contact-form-wrapper {
                padding: 12px !important;
            }
            
            .form-grid {
                grid-template-columns: 1fr !important;
            }
            
            /* Stats grids */
            .hero-stats {
                grid-template-columns: 1fr !important;
                gap: 20px;
            }
            
            .roi-calc-row {
                flex-direction: column !important;
                gap: 16px;
                text-align: center;
            }
            
            /* Formula content */
            .formula-content {
                flex-direction: column !important;
                text-align: center;
                gap: 10px;
            }
            
            .formula-operator {
                transform: rotate(90deg);
                margin: 10px 0;
            }
            
            /* Timeline adjustments */
            .timeline-labels {
                font-size: 12px !important;
            }
            
            /* Step icons */
            .step-icon svg {
                width: 60px !important;
                height: 60px !important;
            }
            
            /* Tesseract visualization */
            .tesseract-visual {
                transform: scale(0.8);
            }
            
            /* Mini expert grid */
            .expert-analysis-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px;
            }
            
            /* Team assembly grid */
            .team-assembly-grid {
                transform: scale(0.9) !important;
            }
            
            /* Boxes with borders */
            .container[style*="border"] {
                padding: 20px !important;
                margin: 10px auto !important;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens */
            .hero-title {
                font-size: 28px !important;
            }
            
            .section-title {
                font-size: 24px !important;
            }
            
            .trinity-card {
                padding: 16px !important;
            }
            
            .advisor-card {
                padding: 16px !important;
            }
            
            .definition-card {
                padding: 20px !important;
            }
            
            .process-step {
                max-width: 250px;
            }
            
            /* Metric rows stack */
            .metric-row {
                flex-direction: column !important;
                text-align: center;
                gap: 8px;
            }
            
            .expert-analysis-grid {
                grid-template-columns: 1fr !important;
            }
            
            /* Small screen padding */
            .container[style*="border"] {
                padding: 16px !important;
                margin: 8px auto !important;
            }
        }
        /* Industry Challenge Tables */
        .industry-challenge {
            background: var(--pure-white);
        }
        .challenge-layer {
            margin-bottom: 60px;
        }
        .comparison-header {
            display: grid;
            background: var(--light-gray);
            padding: 16px 20px;
            font-weight: 600;
            color: var(--deep-black);
            border-radius: 8px 8px 0 0;
        }
        .comparison-row {
            display: grid;
            padding: 20px;
            border-bottom: 1px solid var(--light-gray);
            border-left: 1px solid var(--light-gray);
            border-right: 1px solid var(--light-gray);
        }
        .comparison-row:last-child {
                border-radius: 0 0 8px 8px;
            }
        .capability-name {
            font-weight: 600;
            color: var(--deep-black);
        }
        .highlight-row {
            background: #f9fafb;
        }
        .industry-logos {
            text-align: center;
            margin-top: 40px;
        }
        .logos-label {
            font-size: 16px;
            color: var(--neutral-gray);
            margin-bottom: 20px;
        }
        .logo-grid {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        .logo-grid img {
                height: 40px;
                filter: grayscale(100%);
                opacity: 0.6;
                transition: all 0.3s ease;
            }
        .logo-grid img:hover {
                    filter: grayscale(0%);
                    opacity: 1;
                }
        .conclusion-box {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            margin-top: 60px;
        }
        .conclusion-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        /* AI Comparison Table */
        .comparison-table {
            margin: 40px 0;
            overflow-x: auto;
        }
        .comparison-table table {
                width: 100%;
                border-collapse: collapse;
                background: var(--pure-white);
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }
        .comparison-table th {
                background: var(--light-gray);
                padding: 16px;
                text-align: left;
                font-weight: 600;
                color: var(--deep-black);
                font-size: 14px;
            }
        .comparison-table td {
                padding: 20px 16px;
                border-bottom: 1px solid var(--light-gray);
                font-size: 14px;
            }
        .comparison-table tr:last-child td {
                border-bottom: none;
            }
        .comparison-table .highlight {
                background: var(--light-blue);
                color: var(--professional-blue);
                font-weight: 600;
            }
        /* Case Study Section */
        .case-study-section {
            background: #FAFAFA;
        }
        .case-study-narrative {
            display: grid;
            gap: 48px;
            max-width: 900px;
            margin: 0 auto;
        }
        .the-challenge, .the-solution, .the-results {
            background: var(--pure-white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .advisor-contributions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 24px;
        }
        .advisor-card {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
        }
        .advisor-card h4 {
                color: var(--professional-blue);
                margin-bottom: 8px;
            }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 24px;
        }
        .metric {
            display: block;
            font-size: 32px;
            font-weight: 700;
            color: var(--success-green);
            margin-bottom: 4px;
        }
        .label {
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .key-insight {
            background: var(--light-blue);
            padding: 32px;
            border-radius: 8px;
            text-align: center;
            margin-top: 40px;
        }
        .insight {
            font-size: 18px;
            font-style: italic;
            color: var(--deep-black);
            line-height: 1.6;
        }
        /* Use Case Software */
        .use-case-software {
            padding: 80px 0;
        }
        /* Portfolio Section */
        .portfolio-section {
            background: var(--light-gray);
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .category-card {
            background: var(--pure-white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        /* ROI Calculator */
        .roi-calculator-section {
            background: var(--pure-white);
        }
        .calculator-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light-gray);
            border-radius: 12px;
            padding: 48px;
        }
        .calculator-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .calculator-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
        }
        .calculator-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        .input-group label {
                display: block;
                font-size: 14px;
                font-weight: 600;
                color: var(--deep-black);
                margin-bottom: 8px;
            }
        .input-group input,
            .input-group select {
                width: 100%;
                padding: 12px;
                border: 1px solid var(--medium-gray);
                border-radius: 4px;
                font-size: 16px;
                background: var(--pure-white);
            }
        .calculator-outputs h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 24px;
        }
        .output-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        .output-label {
            font-size: 14px;
            color: var(--neutral-gray);
        }
        .output-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--success-green);
        }
        .output-value.large {
                font-size: 28px;
            }
        <!-- CSS Animations -->
        <style >
        @keyframes pulse {
            0%

        {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }

        }
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
        @keyframes slideRight {
            0%, 100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(5px);
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: inherit;
                transform: scale(1);
            }
        }
        @keyframes progressBar {
            from {
                width: 0%;
            }

            to {
                width: 100%;
            }
        }
        .process-visualization {
            padding: 40px 0;
        }
        .process-step {
            transition: transform 0.3s ease;
        }
        .process-step:hover {
                transform: translateY(-5px);
            }
        /* Professional Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-gray);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav.scrolled {
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 700;
            color: var(--deep-black);
            text-decoration: none;
            letter-spacing: -0.02em;
            font-family: var(--font-display);
        }
        .logo img {
                height: 40px;
                width: auto;
            }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }
        .nav-links a {
                color: var(--neutral-gray);
                text-decoration: none;
                font-weight: 500;
                font-size: 15px;
                transition: color 0.2s ease;
                font-family: var(--font-display);
            }
        .nav-links a:hover {
                    color: var(--deep-black);
                }
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--pure-white);
            border: 1px solid var(--border-gray);
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown-menu a {
            display: block;
            padding: 8px 16px;
            color: var(--neutral-gray);
            transition: all 0.2s ease;
        }
        .nav-dropdown-menu a:hover {
                color: var(--deep-black);
                background: var(--off-white);
            }
        .btn-nav-primary {
            background: var(--professional-blue);
            color: var(--pure-white);
            padding: 10px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s ease;
            font-family: var(--font-display);
        }
        .btn-nav-primary:hover {
                background: var(--dark-blue);
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
            }
        /* Hero Section - ACT I: ACKNOWLEDGE THE SKEPTICISM */
        .hero {
            background: linear-gradient(180deg, var(--off-white) 0%, var(--pure-white) 100%);
            padding: 140px 0 80px;
            position: relative;
        }
        .hero-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--light-green);
            color: var(--success-green);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            font-family: var(--font-display);
        }
        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            color: var(--deep-black);
            font-family: var(--font-display);
        }
        .hero-highlight {
            color: var(--professional-blue);
        }
        .hero-subtitle {
            font-size: 22px;
            font-weight: 400;
            color: var(--neutral-gray);
            margin-bottom: 16px;
            max-width: 800px;
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-proof {
            font-size: 18px;
            color: var(--charcoal);
            font-weight: 500;
            margin-bottom: 48px;
        }
        /* Skepticism Box */
        .skepticism-box {
            background: var(--light-red);
            border: 1px solid #FCA5A5;
            border-radius: 12px;
            padding: 32px;
            max-width: 900px;
            margin: 40px auto;
            text-align: left;
        }
        .skepticism-title {
            color: var(--alert-red);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-display);
        }
        .skepticism-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .skepticism-list li {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                color: var(--charcoal);
                font-size: 16px;
                line-height: 1.5;
            }
        .skepticism-list li::before {
                    content: "✗";
                    color: var(--alert-red);
                    font-weight: 700;
                    flex-shrink: 0;
                }
        /* Evidence Section - ACT II: SHOW THE EVIDENCE */
        .evidence-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
            padding: 0 24px;
        }
        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--deep-black);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            font-family: var(--font-display);
        }
        .section-subtitle {
            font-size: 20px;
            color: var(--neutral-gray);
            line-height: 1.6;
        }
        /* Data Points Grid */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .data-card {
            background: var(--off-white);
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .data-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            }
        .data-metric {
            font-size: 48px;
            font-weight: 800;
            color: var(--professional-blue);
            line-height: 1;
            margin-bottom: 12px;
            font-family: var(--font-display);
        }
        .data-label {
            font-size: 16px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 8px;
        }
        .data-source {
            font-size: 14px;
            color: var(--neutral-gray);
            font-style: italic;
        }
        /* Case Study Preview */
        .case-study-preview {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
            border-radius: 16px;
            padding: 48px;
            max-width: 1100px;
            margin: 64px auto 0;
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
        }
        .case-study-preview::after {
                content: "";
                position: absolute;
                top: -50%;
                right: -10%;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
                border-radius: 50%;
            }
        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }
        .case-study-title {
            font-size: 32px;
            font-weight: 700;
            font-family: var(--font-display);
        }
        .case-study-badge {
            background: var(--success-green);
            color: var(--pure-white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        .case-study-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }
        .case-metric {
            text-align: center;
        }
        .case-metric-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--pure-white);
            margin-bottom: 8px;
            font-family: var(--font-display);
        }
        .case-metric-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        /* How It Works - ACT III: EXPLAIN THE BREAKTHROUGH */
        .how-it-works {
            padding: 60px 0;
            background: #FFFFFF;
        }
        .breakthrough-diagram {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1.5fr 60px 1.5fr;
            gap: 20px;
            align-items: left;
            margin-bottom: 64px;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
        }
        .comparison-card {
            background: var(--pure-white);
            border-radius: 12px;
            padding: 36px;
            height: 100%;
            position: relative;
        }
        .comparison-card.traditional {
            border: 2px solid var(--alert-red);
        }
        .comparison-card.ai-advisor {
            border: 8px solid var(--success-green);
        }
        .comparison-label {
            position: absolute;
            top: -12px;
            left: 24px;
            background: var(--pure-white);
            padding: 0 12px;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .comparison-label.traditional {
            color: var(--alert-red);
        }
        .comparison-label.ai-advisor {
            color: var(--success-green);
        }
        .comparison-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            font-family: var(--font-display);
        }
        .comparison-list {
            list-style: none;
        }
        .comparison-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.5;
            text-align: left;
            flex-direction: column;
        }
        .comparison-list li::before {
            content: none;
        }
        .comparison-list li strong {
            display: block;
            margin-bottom: 8px;
            font-size: 18px;
        }
        .comparison-card.traditional .comparison-list li {
            border-left: 3px solid var(--alert-red);
            padding-left: 16px;
        }
        .comparison-card.ai-advisor .comparison-list li {
            border-left: 3px solid var(--success-green);
            padding-left: 16px;
        }
        .versus-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--neutral-gray);
            font-family: var(--font-display);
        }
        /* Technology Explanation */
        .tech-explanation {
            background: var(--pure-white);
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 48px;
            max-width: 900px;
            margin: 0 auto;
        }
        .tech-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .tech-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 16px;
            font-family: var(--font-display);
        }
        .tech-subtitle {
            font-size: 18px;
            color: var(--neutral-gray);
        }
        .tech-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .tech-feature {
            display: flex;
            gap: 16px;
        }
        .tech-icon {
            width: 48px;
            height: 48px;
            background: var(--light-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
        }
        .tech-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 8px;
            font-family: var(--font-display);
        }
        .tech-content p {
            font-size: 15px;
            color: var(--neutral-gray);
            line-height: 1.6;
        }
        /* Use Cases - ACT IV: PROVE IT WORKS */
        .use-cases-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .use-case-card {
            background: var(--off-white);
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s ease;
        }
        .use-case-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            }
        .use-case-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        .use-case-number {
            width: 48px;
            height: 48px;
            background: var(--professional-blue);
            color: var(--pure-white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            font-family: var(--font-display);
        }
        .use-case-category {
            font-size: 14px;
            color: var(--professional-blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .use-case-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-black);
            margin-bottom: 8px;
            font-family: var(--font-display);
        }
        .use-case-description {
            color: var(--neutral-gray);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .use-case-results {
            display: flex;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-gray);
        }
        .result-item {
            flex: 1;
            text-align: center;
        }
        .result-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--success-green);
            margin-bottom: 4px;
            font-family: var(--font-display);
        }
        .result-label {
            font-size: 14px;
            color: var(--neutral-gray);
        }
        :root {
            /* Professional Enterprise Color Palette */
            --pure-white: #FFFFFF;
            --off-white: #FAFAFA;
            --deep-black: #0A0A0A;
            --charcoal: #1A1A1A;
            --neutral-gray: #6B7280;
            --light-gray: #F3F4F6;
            --border-gray: #E5E7EB;
            --professional-blue: #0066CC;
            --dark-blue: #003D7A;
            --success-green: #059669;
            --light-green: #D1FAE5;
            --alert-red: #DC2626;
            --light-red: #FEE2E2;
            --gold-accent: #F59E0B;
            /* Professional Typography */
            --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            color: var(--charcoal);
            line-height: 1.6;
            background: var(--pure-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        .paradigm-shift {
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%);
            padding: 64px;
            border-radius: 8px;
            text-align: center;
        }
        .paradigm-title {
            font-size: 36px;
            margin-bottom: 24px;
            color: var(--deep-black);
        }
        .paradigm-quote {
            font-size: 24px;
            color: var(--deep-black);
            font-weight: 600;
            margin-bottom: 24px;
        }
        .paradigm-description {
            font-size: 18px;
            color: var(--neutral-gray);
            max-width: 800px;
            margin: 0 auto 40px;
        }
        /* ROI Section */
        .roi-section {
            background: var(--pure-white);
            padding: 120px 0;
            text-align: center;
        }
        .roi-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .roi-headline {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 48px;
            color: var(--deep-black);
            letter-spacing: -0.02em;
        }
        .roi-calculation {
            background: var(--light-gray);
            padding: 64px;
            border-radius: 8px;
            margin-bottom: 64px;
        }
        .roi-calc-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            margin-bottom: 32px;
            font-size: 32px;
            font-weight: 600;
            flex-wrap: wrap;
        }
        .roi-old-price {
            color: var(--medium-gray);
            text-decoration: line-through;
        }
        .roi-arrow {
            color: var(--professional-blue);
            font-size: 40px;
        }
        .roi-new-price {
            color: var(--success-green);
            font-weight: 700;
        }
        .roi-savings {
            font-size: 56px;
            font-weight: 700;
            color: var(--success-green);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        .roi-paradigm shift-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            margin-top: 64px;
        }
        .roi-stat {
            text-align: center;
        }
        .roi-stat-number {
            font-size: 48px;
            font-weight: 700;
            color: white !important;
            display: block;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .roi-stat-label {
            font-size: 16px;
            color: white !important;
        }
        /* Case Study Section */
        .case-study-section {
            background: var(--pure-white);
            padding: 120px 0;
        }
        .case-study-challenge h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--deep-black);
        }
        .challenge-box {
            background: var(--light-gray);
            padding: 32px;
            border-radius: 8px;
            margin-bottom: 48px;
        }
        .challenge-list {
            list-style: none;
            margin-top: 24px;
        }
        .challenge-list li {
                padding: 12px 0;
                font-size: 20px;
                color: var(--deep-black);
            }
        .trinity-model {
            margin-bottom: 64px;
        }
        .trinity-model h3 {
                font-size: 32px;
                margin-bottom: 24px;
                color: var(--deep-black);
            }
        .trinity-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        .trinity-card {
            text-align: center;
            padding: 32px;
            background: white;
            border-radius: 8px;
            border: 2px solid var(--professional-blue);
        }
        .trinity-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .trinity-title {
            font-size: 16px;
            color: var(--professional-blue);
            margin-bottom: 8px;
            font-weight: 600;
        }
        .trinity-subtitle {
            color: var(--neutral-gray);
        }
        .trinity-detail {
            font-size: 14px;
            margin-top: 8px;
            color: var(--neutral-gray);
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 64px;
        }
        .result-card {
            background: white;
            padding: 32px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .result-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--success-green);
            margin-bottom: 8px;
        }
        .result-comparison {
            font-size: 12px;
            color: var(--medium-gray);
            margin-top: 8px;
        }
        .performance-box {
            background: var(--light-gray);
            padding: 48px;
            border-radius: 8px;
            margin-bottom: 64px;
        }
        .performance-title {
            font-size: 28px;
            margin-bottom: 32px;
            text-align: center;
            color: var(--deep-black);
        }
        .performance-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        .metric-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .metric-label {
            color: var(--neutral-gray);
        }
        .metric-value {
            color: var(--deep-black);
            font-weight: 600;
        }
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 64px;
        }
        .achievement-card {
            background: white;
            padding: 24px;
            border-radius: 8px;
            border-left: 4px solid var(--professional-blue);
        }
        .achievement-card.green {
                border-left-color: var(--success-green);
            }
        .achievement-title {
            color: var(--deep-black);
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 18px;
        }
        .achievement-list {
            list-style: none;
            color: var(--neutral-gray);
        }
        .achievement-list li {
                padding: 8px 0;
            }
        /* Amplification Section */
        .amplification-section {
            background: var(--light-gray);
            padding: 120px 0;
        }
        .formula-box {
            background: white;
            padding: 48px;
            border-radius: 8px;
            margin-bottom: 64px;
            text-align: center;
        }
        .formula-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--deep-black);
            margin-bottom: 24px;
        }
        .formula-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 20px;
        }
        .formula-part {
            color: var(--deep-black);
            font-weight: 600;
        }
        .formula-operator {
            color: var(--professional-blue);
            font-size: 28px;
            font-weight: 700;
        }
        .formula-result {
            color: var(--success-green);
            font-size: 28px;
            font-weight: 700;
        }
        /* Categories Section */
        .categories-section {
            background: var(--light-gray);
            padding: 120px 0;
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 64px;
        }
        .category-card {
            background: var(--pure-white);
            padding: 32px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .category-card:hover {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }
        .category-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--deep-black);
            line-height: 1.3;
        }
        .team-list {
            list-style: none;
        }
        .team-list.expanded {
                display: block;
            }
        .team-list li {
                padding: 8px 0;
                color: var(--neutral-gray);
                font-size: 14px;
                border-bottom: 1px solid var(--light-gray);
            }
        .expand-btn {
            background: none;
            border: none;
            color: var(--professional-blue);
            cursor: pointer;
            font-size: 14px;
            margin-top: 12px;
            font-weight: 500;
        }
        .expand-btn:hover {
                text-decoration: underline;
            }
        .tech-content p {
            font-size: 15px;
            color: var(--neutral-gray);
            line-height: 1.6;
         
        }
        /* Ensure trinity grid uses flexbox and doesn't wrap */
        .trinity-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            width: 100%;
            gap: 1rem; /* Adjust spacing as needed */
        }

        /* Ensure all items stay in line */
        .trinity-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Ensure cards don't shrink below minimum width */
        .trinity-card {
            min-width: 200px; /* Adjust as needed */
            white-space: nowrap; /* Prevents text wrapping in titles */
        }

        /* Optional: For better responsive behavior */
        @media (max-width: 1200px) {
        .trinity-card {
            min-width: 150px;
        }

        .trinity-title {
            font-size: 0.9em; /* Slightly smaller on smaller screens */
        }
        }
        .trinity-model {
            overflow-x: auto;
        }
        
        /* ===== GDPR COMPLIANCE & ACCESSIBILITY ===== */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            color: white;
            padding: 20px;
            z-index: 10000;
            border-top: 3px solid var(--primary-blue);
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-text h3 {
            margin: 0 0 8px 0;
            font-size: 18px;
            color: white;
        }
        
        .cookie-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .cookie-link {
            color: var(--primary-blue);
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .cookie-btn.accept {
            background: var(--primary-blue);
            color: white;
        }
        
        .cookie-btn.accept:hover {
            background: var(--primary-blue-dark);
        }
        
        .cookie-btn.decline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-btn.decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Skip Navigation for Accessibility */
        .skip-nav {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 0 0 6px 6px;
            font-weight: 600;
            z-index: 10000;
            transition: top 0.3s ease;
        }
        
        .skip-nav:focus {
            top: 0;
        }
        
        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .cookie-consent-banner {
                background: black;
                border-top: 5px solid white;
            }
        }
        
        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .cookie-btn, .skip-nav {
                transition: none;
            }
        }

        /* ===== SAMSUNG GALAXY ULTRA 24 & HIGH-RESOLUTION MOBILE FIXES ===== */
        /* Optimized for Samsung Galaxy Ultra 24 (1440x3088, 500+ PPI) and similar high-res devices */
        
        @media (max-width: 480px) {
            /* Samsung Galaxy Ultra 24 specific optimizations */
            
            /* Fix viewport and zoom issues on high-DPI displays */
            body {
                -webkit-text-size-adjust: 100%;
                -ms-text-size-adjust: 100%;
                text-size-adjust: 100%;
                min-width: 320px;
                overflow-x: hidden;
            }
            
            /* Navigation fixes for narrow screens */
            .nav-container {
                padding: 0 16px;
                height: 60px; /* Reduced height for mobile */
            }
            
            .logo {
                font-size: 16px;
                gap: 8px;
            }
            
            .logo img {
                height: 32px; /* Smaller logo for mobile */
            }
            
            .nav-links {
                display: none; /* Hide desktop navigation */
            }
            
            /* Hero section mobile optimization */
            .hero {
                padding: 80px 0 40px; /* Account for fixed nav */
                text-align: center;
            }
            
            .hero h1, .hero-title {
                font-size: 24px !important;
                line-height: 1.2;
                margin-bottom: 16px;
            }
            
            .hero-subtitle {
                font-size: 16px !important;
                line-height: 1.4;
                margin-bottom: 24px;
            }
            
            /* Container improvements */
            .container {
                padding: 0 16px !important;
                margin: 0 auto;
            }
            
            /* Section spacing optimization */
            section {
                padding: 40px 0 !important;
            }
            
            .section-title {
                font-size: 20px !important;
                line-height: 1.3;
                margin-bottom: 16px;
                text-align: center;
            }
            
            .section-description {
                font-size: 14px !important;
                line-height: 1.5;
                text-align: center;
                margin-bottom: 24px;
            }
            
            /* Grid improvements for mobile */
            .comparison-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            
            .trinity-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
                text-align: center;
            }
            
            .trinity-card {
                min-width: unset !important;
                padding: 16px !important;
                margin: 0 auto;
            }
            
            .trinity-title {
                font-size: 14px !important;
            }
            
            .trinity-subtitle {
                font-size: 12px !important;
            }
            
            /* Performance metrics mobile layout */
            .performance-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            
            .metric-row {
                flex-direction: column !important;
                text-align: center !important;
                gap: 8px !important;
            }
            
            .metric-value {
                font-size: 20px !important;
            }
            
            .metric-label {
                font-size: 12px !important;
            }
            
            /* Comparison cards mobile optimization */
            .comparison-card {
                margin-bottom: 20px !important;
                padding: 20px 16px !important;
            }
            
            .comparison-title {
                font-size: 18px !important;
                margin-bottom: 12px !important;
            }
            
            .comparison-list {
                font-size: 14px !important;
                line-height: 1.4 !important;
            }
            
            .comparison-list li {
                margin-bottom: 8px !important;
            }
            
            .versus-indicator {
                font-size: 20px !important;
                margin: 16px 0 !important;
            }
        }
        
        @media (max-width: 390px) {
            /* Extra narrow screens (iPhone 14 Pro, small Androids) */
            
            .container {
                padding: 0 12px !important;
            }
            
            .hero h1, .hero-title {
                font-size: 22px !important;
            }
            
            .section-title {
                font-size: 18px !important;
            }
            
            .btn-primary, .contact-submit-btn {
                width: 100% !important;
                padding: 14px 16px !important;
                font-size: 16px !important;
            }
        }
        
        /* ===== CONTACT FORM MOBILE OPTIMIZATION ===== */
        @media (max-width: 480px) {
            .contact-form-section {
                padding: 32px 0 !important;
            }
            
            .contact-form-wrapper {
                margin-top: 24px !important;
            }
            
            .contact-form {
                padding: 24px 16px !important;
            }
            
            .form-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            
            .form-group {
                margin-bottom: 20px !important;
            }
            
            .form-label {
                font-size: 14px !important;
                margin-bottom: 6px !important;
            }
            
            .form-input, .form-textarea {
                padding: 12px !important;
                font-size: 16px !important; /* Prevents zoom on iOS */
                border-radius: 6px !important;
            }
            
            .form-textarea {
                min-height: 100px !important;
            }
            
            .error-message {
                font-size: 12px !important;
                margin-top: 4px !important;
            }
            
            .consent-group {
                flex-direction: row !important;
                align-items: flex-start !important;
                gap: 8px !important;
            }
            
            .consent-checkbox {
                margin-top: 2px !important;
                flex-shrink: 0 !important;
            }
            
            .consent-label {
                font-size: 13px !important;
                line-height: 1.4 !important;
            }
            
            /* Progressive Enhancement Fallback Mobile */
            .fallback-form-wrapper {
                margin-top: 24px !important;
                padding: 20px 16px !important;
            }
            
            .fallback-form-wrapper h3 {
                font-size: 18px !important;
                margin-bottom: 16px !important;
            }
            
            .fallback-form-wrapper form {
                padding: 16px !important;
            }
            
            .fallback-form-wrapper input,
            .fallback-form-wrapper textarea {
                font-size: 16px !important; /* Prevents zoom on iOS */
            }
        }
        
        /* ===== HIGH-DPI DISPLAY OPTIMIZATION ===== */
        @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 300dpi) {
            /* Samsung Galaxy Ultra 24 and similar high-DPI devices */
            
            body {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                text-rendering: optimizeLegibility;
            }
            
            .logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
            
            /* Ensure crisp borders and shadows */
            .contact-form, .comparison-card, .trinity-card {
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }
        }
        
        /* ===== SAMSUNG BROWSER SPECIFIC FIXES ===== */
        @supports (-webkit-appearance: none) {
            /* Samsung Internet Browser optimizations */
            
            .form-input, .form-textarea {
                -webkit-appearance: none;
                appearance: none;
            }
            
            .form-input:focus, .form-textarea:focus {
                outline: 2px solid var(--professional-blue);
                outline-offset: 2px;
            }
        }
        
        /* ===== LANDSCAPE ORIENTATION FIXES ===== */
        @media (max-height: 500px) and (orientation: landscape) {
            /* Samsung Galaxy Ultra 24 in landscape mode */
            
            .hero {
                padding: 60px 0 30px !important;
            }
            
            .nav-container {
                height: 50px !important;
            }
            
            .hero h1, .hero-title {
                font-size: 20px !important;
            }
            
            .section-title {
                font-size: 18px !important;
            }
            
            section {
                padding: 30px 0 !important;
            }
        }
        
        /* ===== ACCESSIBILITY IMPROVEMENTS FOR MOBILE ===== */
        @media (max-width: 480px) {
            /* Larger touch targets */
            .btn-primary, .contact-submit-btn, .cookie-btn {
                min-height: 44px !important;
                min-width: 44px !important;
                padding: 12px 16px !important;
            }
            
            /* Better spacing for readability */
            p {
                line-height: 1.6 !important;
                margin-bottom: 16px !important;
            }
            
            /* Improved link spacing */
            a {
                display: inline-block !important;
                padding: 4px !important;
                margin: -4px !important;
            }
        }
        
        /* ===== GDPR COOKIE BANNER ANIMATIONS ===== */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            color: white;
            padding: 20px;
            z-index: 10000;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-text h3 {
            margin: 0 0 8px 0;
            font-size: 18px;
            color: white;
        }
        
        .cookie-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
        }
        
        .cookie-link {
            color: #4fc3f7;
            text-decoration: underline;
        }
        
        .cookie-link:hover {
            color: #29b6f6;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            min-width: 140px;
        }
        
        .cookie-btn.accept {
            background: #4caf50;
            color: white;
        }
        
        .cookie-btn.accept:hover {
            background: #45a049;
            transform: translateY(-1px);
        }
        
        .cookie-btn.decline {
            background: #424242;
            color: white;
            border: 1px solid #666;
        }
        
        .cookie-btn.decline:hover {
            background: #616161;
            transform: translateY(-1px);
        }
        
        /* Cookie banner animations */
        @keyframes slideInFromBottom {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOutToBottom {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(100%);
                opacity: 0;
            }
        }
        
        /* Mobile cookie banner optimization */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            
            .cookie-text {
                min-width: auto;
            }
            
            .cookie-text h3 {
                font-size: 16px;
            }
            
            .cookie-text p {
                font-size: 13px;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .cookie-btn {
                min-width: 120px;
            }
        }

        /* ROI Display Styles */
        .roi-display {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid #10B981;
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            animation: fadeInUp 0.5s ease-out;
        }

        .roi-header h3 {
            color: var(--deep-black);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .roi-subtitle {
            color: var(--neutral-gray);
            font-size: 16px;
            margin-bottom: 20px;
        }

        .roi-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .roi-metric {
            background: var(--pure-white);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .roi-metric.highlight {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border-color: #10B981;
            font-weight: 600;
        }

        .metric-label {
            color: var(--neutral-gray);
            font-size: 14px;
            font-weight: 500;
        }

        .metric-value {
            color: var(--deep-black);
            font-size: 18px;
            font-weight: 700;
        }

        .metric-value.savings {
            color: #10B981;
            font-size: 20px;
        }

        .metric-value.percentage {
            color: #10B981;
            font-size: 20px;
        }

        .roi-benefits {
            background: var(--pure-white);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .roi-benefits h4 {
            color: var(--deep-black);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .roi-benefits ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .roi-benefits li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: var(--neutral-gray);
            font-size: 14px;
            line-height: 1.5;
        }

        .roi-benefits li::before {
            content: "•";
            color: #10B981;
            font-size: 16px;
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* CTA Buttons Styles */
        .cta-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
        }

        .btn-secondary {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
            color: var(--pure-white);
            border: 2px solid #6c757d;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #5a6268 0%, #494f54 100%);
            border-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        .cta-help-text {
            color: var(--neutral-gray);
            font-size: 14px;
            text-align: center;
            margin: 0;
            font-style: italic;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness for ROI Display */
        @media (max-width: 768px) {
            .roi-metrics {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-secondary {
                min-width: auto;
                width: 100%;
            }

            .roi-display {
                padding: 16px;
            }

            .roi-metric {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .metric-label {
                font-size: 12px;
            }

            .metric-value {
                font-size: 16px;
            }

            .metric-value.savings,
            .metric-value.percentage {
                font-size: 18px;
            }
        }

        /* Enhanced Legal Disclaimers Styling */
        .legal-disclaimers {
            line-height: 1.4 !important;
        }

        .legal-disclaimers p {
            margin-bottom: 16px !important;
            padding: 12px;
            background: rgba(248, 249, 250, 0.8);
            border-radius: 6px;
            border-left: 3px solid #0078D4;
        }

        .legal-disclaimers p:last-child {
            margin-bottom: 0 !important;
        }

        .legal-disclaimers strong {
            color: var(--deep-black) !important;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        /* Improved bullet point styling in disclaimers */
        .legal-disclaimers p {
            white-space: pre-line;
        }

        @media (max-width: 768px) {
            .legal-disclaimers {
                font-size: 10px !important;
                margin-top: 16px !important;
            }
            
            .legal-disclaimers p {
                padding: 8px;
                margin-bottom: 12px !important;
            }
            
            .legal-disclaimers strong {
                margin-bottom: 6px;
            }
        }

/* ===== FAQ SECTION STYLES ===== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--professional-blue) 50%, transparent 100%);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-header .section-title {
    color: var(--deep-black);
    margin-bottom: 16px;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-header .section-subtitle {
    color: var(--neutral-gray);
    font-size: 20px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.faq-wrapper {
    margin-bottom: 48px;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--professional-blue);
    box-shadow: 0 8px 25px rgba(0, 120, 212, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-black);
    line-height: 1.4;
    transition: all 0.3s ease;
    outline: none;
}

.faq-question:hover {
    background: rgba(0, 120, 212, 0.02);
}

.faq-question:focus {
    background: rgba(0, 120, 212, 0.05);
    outline: 2px solid var(--professional-blue);
    outline-offset: -2px;
}

.faq-question-text {
    flex: 1;
    margin-right: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--professional-blue);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 120, 212, 0.1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--professional-blue);
    color: var(--pure-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 32px 32px 32px;
    border-top: 1px solid #e5e7eb;
    margin-top: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.faq-answer-content p {
    color: var(--neutral-gray);
    font-size: 16px;
    line-height: 1.6;
    margin: 24px 0 0 0;
}

.faq-cta {
    text-align: center;
    padding: 48px 32px;
    background: var(--pure-white);
    border-radius: 16px;
    border: 2px solid var(--professional-blue);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 120, 212, 0.05) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

.faq-cta-text {
    color: var(--neutral-gray);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.faq-cta .btn-primary {
    position: relative;
    z-index: 2;
}

/* FAQ Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header .section-title {
        font-size: 36px;
    }
    
    .faq-header .section-subtitle {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-question-text {
        margin-right: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .faq-answer-content {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer-content p {
        font-size: 15px;
        margin: 16px 0 0 0;
    }
    
    .faq-cta {
        padding: 32px 24px;
    }
    
    .faq-cta-text {
        font-size: 16px;
    }
}

/* ===== DISCLAIMER MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    max-height: 80vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--primary-blue);
}

.modal-body {
    padding: 0 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-section h4 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    border-left: 3px solid var(--success-green);
    padding-left: 12px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

.modal-footer {
    padding: 20px 24px 24px 24px;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.modal-footer .btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-footer .btn-primary:hover {
    background: var(--secondary-blue);
}

/* Modal responsive styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Who We Serve Section Styles */
.who-we-serve-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin: 60px 0;
}

.client-segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.client-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--professional-blue);
}

.client-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.client-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.client-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.who-we-serve-cta {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    border: none !important;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Who We Serve Responsive Styles */
@media (max-width: 768px) {
    .who-we-serve-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .client-segments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .client-card {
        padding: 32px 24px;
    }
    
    .client-title {
        font-size: 20px;
    }
    
    .client-description {
        font-size: 15px;
    }
    
    .who-we-serve-cta {
        margin-top: 40px;
        padding: 32px 24px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}
