
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            line-height: 1.6;
            color: var(--neutral-800);
            background-color: var(--white);
            /*
             * Ensures content is not hidden by the fixed navbar.
             * The value is set in variables.css and should match the navbar's height.
             */
            padding-top: var(--navbar-height);
        }
        
        /* Typography - Professional Spacing */
        h1 { 
            font-size: var(--font-size-5xl); 
            font-weight: 700; 
            line-height: 1.1; 
            color: var(--neutral-900);
            letter-spacing: -0.03em;
            margin-bottom: var(--space-6);
        }
        h2 { 
            font-size: var(--font-size-4xl); 
            font-weight: 600; 
            line-height: 1.2; 
            color: var(--neutral-900);
            letter-spacing: -0.025em;
            margin-bottom: var(--space-4);
        }
        h3 { 
            font-size: var(--font-size-3xl); 
            font-weight: 600; 
            line-height: 1.25; 
            color: var(--neutral-800);
            letter-spacing: -0.02em;
            margin-bottom: var(--space-4);
        }
        h4 { 
            font-size: var(--font-size-2xl); 
            font-weight: 600; 
            line-height: 1.3; 
            color: var(--neutral-800);
            margin-bottom: var(--space-3);
        }
        h5 { 
            font-size: var(--font-size-xl); 
            font-weight: 600; 
            line-height: 1.4; 
            color: var(--neutral-700);
            margin-bottom: var(--space-2);
        }
        h6 { 
            font-size: var(--font-size-lg); 
            font-weight: 600; 
            line-height: 1.4; 
            color: var(--neutral-700);
            margin-bottom: var(--space-2);
        }
        
        p { 
            margin-bottom: var(--space-4); 
            color: var(--neutral-700);
        }
        
        /* Layout Components */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-4);
        }
        
        @media (min-width: 640px) {
            .container { padding: 0 var(--space-6); }
        }
        
        @media (min-width: 1024px) {
            .container { padding: 0 var(--space-8); }
        }
        
        .section {
            padding: var(--space-20) 0;
        }
        
        .section-sm {
            padding: var(--space-16) 0;
        }
        
        /* Professional Section Headers */
        .section-header {
            margin-bottom: var(--space-16);
            position: relative;
        }
        
        .section-header::after {
            content: '';
            position: absolute;
            bottom: -var(--space-4);
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
        }
        
        .section-header.text-left::after {
            left: 0;
            transform: none;
        }
        
        /* Professional 12-Column Grid Framework */
        .grid {
            display: grid;
        }
        
        .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
        .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        
        /* Professional Content Grid System */
        .content-grid {
            display: grid;
            gap: var(--space-8);
            align-items: start;
        }
        
        .content-grid-3 {
            grid-template-columns: repeat(3, 1fr);
            align-items: stretch;
        }
        
        .content-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        /* Professional Responsive Grid Breakpoints */
        @media (max-width: 1200px) {
            .content-grid-4 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1024px) {
            .content-grid-3,
            .content-grid-4 {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-6);
            }
        }
        
        @media (max-width: 768px) {
            .content-grid {
                gap: var(--space-6);
            }
        }
        
        @media (max-width: 640px) {
            .content-grid-3,
            .content-grid-4 {
                grid-template-columns: 1fr;
                gap: var(--space-6);
            }
        }
        
        @media (max-width: 480px) {
            .content-grid {
                gap: var(--space-4);
            }
        }
        
        /* Section Consistency */
        .section {
            padding: var(--space-20) 0;
        }
        
        .section-header {
            margin-bottom: var(--space-16);
            text-align: center;
        }
        
        @media (max-width: 1023px) {
            .lg\:grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
            .lg\:grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        
        @media (min-width: 1024px) {
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        
        /* Flexbox Utilities */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .gap-4 { gap: var(--space-4); }
        .gap-6 { gap: var(--space-6); }
        
        /* Text Utilities */
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-white { color: var(--white); }
        .text-primary { color: var(--primary-blue); }
        .text-neutral-600 { color: var(--neutral-700); }
        .text-lg { font-size: var(--font-size-lg); }
        .text-xl { font-size: var(--font-size-xl); }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        
        /* Spacing Utilities */
        .mb-2 { margin-bottom: var(--space-2); }
        .mb-4 { margin-bottom: var(--space-4); }
        .mb-6 { margin-bottom: var(--space-6); }
        .mb-8 { margin-bottom: var(--space-8); }
        .mb-12 { margin-bottom: var(--space-12); }
        .mt-8 { margin-top: var(--space-8); }
        .mt-12 { margin-top: var(--space-12); }
        
        /* Background Utilities */
        .bg-primary { background-color: var(--primary-blue); }
        .bg-neutral-50 { background-color: var(--neutral-50); }
        .bg-white { background-color: var(--white); }
        
        /* Button Components - Sharp Professional Design */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-2);
            padding: var(--space-4) var(--space-8);
            font-weight: 600;
            font-size: var(--font-size-base);
            line-height: 1;
            border-radius: 0;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 0;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-orange);
            border-color: var(--accent-orange);
            transform: translateX(2px);
            box-shadow: 4px 4px 0 var(--neutral-800);
        }
        
        .btn-orange {
            background: linear-gradient(45deg, var(--accent-orange), var(--accent-orange-dark)); /* Reverted to orange gradient */
            color: var(--white);
            border: 2px solid var(--accent-orange); /* Reverted border to accent orange */
        }
        
        .btn-orange:hover {
            background-color: var(--accent-orange-dark);
            border-color: var(--accent-orange-dark);
            transform: translateX(2px);
            box-shadow: 4px 4px 0 var(--neutral-800);
        }
        
        /* Scroll-triggered CTA Animation */
        .cta-btn {
            transition: all 0.3s ease;
        }
        
        .cta-btn.scroll-active {
            background-color: var(--accent-orange) !important;
            border-color: var(--accent-orange) !important;
            animation: ctaPulse 2s infinite;
        }
        
        @keyframes ctaPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .btn-secondary {
            background: linear-gradient(45deg, rgba(var(--primary-blue-rgb), 0.05), transparent); /* Subtle background gradient */
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-secondary:hover {
            background-color: var(--accent-orange);
            border-color: var(--accent-orange);
            color: var(--white);
            transform: translateX(2px);
            box-shadow: 4px 4px 0 var(--neutral-800);
        }
        
        .btn-white {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-white:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            transform: translateX(2px);
            box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
        }
        
        .btn-lg {
            padding: var(--space-6) var(--space-12);
            font-size: var(--font-size-lg);
            font-weight: 700;
        }
        
        /* Card Components - Sharp Professional Design */
        .card {
            background-color: var(--white);
            border-radius: 0;
            border: 1px solid var(--neutral-200);
            border-left: 4px solid var(--primary-blue);
            box-shadow: none;
            padding: var(--space-8);
            transition: all var(--transition-fast);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .card:hover {
            border-left-color: var(--accent-orange);
            transform: translateX(4px);
            box-shadow: 8px 8px 0 rgba(0,0,0,0.15);
        }
        
        .card-icon {
            font-size: var(--font-size-4xl);
            color: var(--primary-blue);
            margin-bottom: var(--space-6);
            text-align: center;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neutral-200);
            z-index: 1000;
            transition: all var(--transition-base);
        }
        
        .navbar-content {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            padding: var(--space-4) 0;
            gap: var(--space-6);
        }
        
        /* Left Section - Unified Logo + Brand */
        .nav-left {
            justify-self: start;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 8px; /* Professional 8px spacing heuristic */
            text-decoration: none;
            color: var(--neutral-900);
        }
        
        .logo img {
            width: 40px;
            height: 40px;
        }
        
        .logo-text {
            font-size: var(--font-size-2xl);
            font-weight: 700;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: -0.025em;
        }
        
        /* Right Section - Navigation Links */
        .nav-right {
            justify-self: end;
        }
        
        .nav-links {
            display: none;
            gap: var(--space-6);
            align-items: center;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--neutral-700);
            font-weight: 500;
            font-size: var(--font-size-base);
            transition: color var(--transition-fast);
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
        }
        
        /* Mobile Booking Icon */
        .nav-mobile {
            display: block;
        }
        
        .mobile-booking-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: none;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            font-size: var(--font-size-lg);
            cursor: pointer;
            border-radius: 0;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        
        .mobile-booking-btn:hover {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Desktop Layout */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .nav-mobile {
                display: none;
            }
            
            .logo-text {
                font-size: var(--font-size-3xl);
            }
        }
        
        /* Mobile Layout */
        @media (max-width: 767px) {
            .logo-text {
                font-size: var(--font-size-xl);
            }
        }
        
        .nav-link {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            /*
             * Top padding provides spacing below the navbar, as navbar clearance
             * is now handled by the body's padding-top.
             */
            padding: var(--space-16) 0 var(--space-20) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            /*
             * margin-top is set to 0 here because the body's padding-top
             * handles the clearance for the fixed navbar.
             * This ensures the hero content starts directly after the body's padding.
             */
            margin-top: 0;
        }
        
        /* Automation Flow Animation */
        
        
        
        
        /* Flow lines between cells */
        
        
        /* Triangular background overlay */
        
        
        .hero h1 {
            color: var(--white);
            margin-bottom: var(--space-6);
        }
        
        .hero-subtitle {
            font-size: var(--font-size-xl);
            margin-bottom: var(--space-8);
            opacity: 0.9;
        }
        
        .hero-stats {
            display: flex;
            /* Removed flex-wrap: wrap to force horizontal alignment on all screens */
            justify-content: center;
            gap: var(--space-8);
            margin-top: var(--space-12);
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: var(--font-size-3xl);
            font-weight: 700;
            color: var(--white);
            display: block;
        }
        
        .hero-stat-label {
            font-size: var(--font-size-sm);
            opacity: 0.8;
        }
        
        /* AI Assistant Cards - Sharp Design with Professional Alignment */
        .ai-assistant-card {
            background: var(--white);
            border-radius: 0;
            border: 2px solid var(--neutral-200);
            padding: var(--space-8);
            text-align: center;
            box-shadow: none;
            transition: all var(--transition-fast);
            height: 100%;
            min-height: 280px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .ai-assistant-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); /* Changed to blue gradient */
            transition: background var(--transition-fast);
        }
        
        .ai-assistant-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-4px);
            box-shadow: 0 8px 0 var(--primary-blue);
        }
        
        .ai-assistant-card:hover::before {
            background: var(--primary-blue);
        }
        
        .ai-checkmark {
            width: 4rem;
            height: 4rem;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-6);
            font-size: var(--font-size-2xl);
            border: 2px solid currentColor;
        }
        
        .ai-checkmark.prompt-design { background-color: rgba(0, 128, 128, 0.1); color: #008080; } /* Teal */
        .ai-checkmark.agents-mcp { background-color: rgba(128, 0, 128, 0.1); color: #800080; } /* Purple */
        
        /* Industry Cards - Sharp Professional Design */
        .industry-card {
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 0;
            border: none;
            border-top: 4px solid var(--accent-orange);
            padding: var(--space-12);
            text-align: left;
            text-decoration: none;
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            min-height: 200px;
        }
        
        .industry-card:hover {
            background: var(--accent-orange);
            transform: translateX(8px);
            box-shadow: 12px 12px 0 rgba(0,0,0,0.25);
            color: var(--white);
            text-decoration: none;
            border-top-color: var(--accent-orange-dark);
        }
        
        .industry-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-orange);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform var(--transition-base);
        }
        
        .industry-card:hover::after {
            transform: scaleY(1);
        }
        
        .industry-icon {
            font-size: var(--font-size-4xl);
            margin-bottom: var(--space-8);
            position: relative;
            z-index: 1;
            align-self: flex-start;
        }
        
        .industry-title {
            font-size: var(--font-size-2xl);
            font-weight: 700;
            margin-bottom: var(--space-4);
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        
        .industry-description {
            font-size: var(--font-size-base);
            opacity: 0.95;
            position: relative;
            z-index: 1;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Testimonial Cards - Sharp Design with Professional Alignment */
        .testimonial-card {
            background: var(--white);
            border-radius: 0;
            border: 1px solid var(--neutral-200);
            border-left: 6px solid var(--primary-blue);
            padding: var(--space-10);
            box-shadow: none;
            height: 100%;
            position: relative;
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: var(--space-4);
            left: var(--space-4);
            font-size: 4rem;
            color: var(--primary-blue);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            border-left-color: var(--accent-orange);
            transform: translateX(4px);
            box-shadow: 8px 0 0 rgba(0,0,0,0.15);
        }
        
        .testimonial-quote {
            font-size: var(--font-size-lg);
            font-style: italic;
            margin-bottom: var(--space-6);
            color: var(--neutral-700);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-4);
        }
        
        .testimonial-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 0;
            background: var(--primary-blue);
            border: 3px solid var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: var(--font-size-xl);
        }
        
        .testimonial-info h5 {
            margin-bottom: var(--space-1);
        }
        
        .testimonial-company {
            color: var(--neutral-600);
            font-size: var(--font-size-sm);
        }
        
        /* Pricing Cards - Sharp Design with Professional Alignment */
        .pricing-card {
            background: var(--white);
            border-radius: 0;
            border: 2px solid var(--neutral-200);
            padding: var(--space-10);
            box-shadow: none;
            text-align: center;
            position: relative;
            height: 100%;
            padding-top: var(--space-10);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .pricing-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); /* Changed to blue gradient */
            transition: background var(--transition-fast);
        }
        
        .pricing-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-8px);
            box-shadow: 0 16px 0 var(--accent-orange);
        }
        
        .pricing-card:hover::after {
            background: var(--accent-orange);
        }
        
        .pricing-card.featured {
            border-color: var(--primary-blue);
            background: var(--neutral-50);
        }
        
        .pricing-card.featured::after {
            background: var(--primary-blue);
        }
        
        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 0;
            left: -2px;
            right: -2px;
            background: var(--primary-blue);
            color: var(--white);
            padding: var(--space-2);
            font-size: var(--font-size-sm);
            font-weight: 700;
            letter-spacing: -0.025em;
            z-index: 1;
        }
        
        .pricing-title {
            margin-bottom: var(--space-4);
        }
        
        .pricing-price {
            font-size: var(--font-size-4xl);
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: var(--space-2);
        }
        
        .pricing-period {
            color: var(--neutral-600);
            margin-bottom: var(--space-6);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: var(--space-8);
        }
        
        .pricing-feature {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-3);
            color: var(--neutral-700);
        }
        
        .pricing-feature i {
            color: var(--success-green);
            font-size: var(--font-size-sm);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            color: var(--white);
            margin-bottom: var(--space-4);
        }
        
        .cta-subtitle {
            font-size: var(--font-size-xl);
            margin-bottom: var(--space-8);
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background-color: var(--neutral-900);
            color: var(--neutral-300);
            padding: var(--space-16) 0 var(--space-8) 0;
        }
        
        .footer-content {
            display: grid;
            gap: var(--space-8);
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            margin-bottom: var(--space-8);
        }
        
        .footer-section h6 {
            color: var(--white);
            margin-bottom: var(--space-4);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            display: block;
            color: var(--neutral-300);
            text-decoration: none;
            margin-bottom: var(--space-2);
            transition: color var(--transition-fast);
        }
        
        .footer-link:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: var(--space-8);
            border-top: 1px solid var(--neutral-700);
            color: var(--neutral-400);
        }
        
        /* Professional Responsive Design Framework */
        
        /* Tablet Landscape */
        @media (max-width: 1024px) {
            .container {
                padding: 0 var(--space-4);
            }
            
            .hero h1 {
                font-size: var(--font-size-5xl);
            }
            
            .section {
                padding: var(--space-16) 0;
            }
        }
        
        /* Tablet Portrait */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: var(--font-size-4xl);
                line-height: 1.1;
            }
            
            .hero-subtitle {
                font-size: var(--font-size-xl);
            }
            
            .hero-stats {
                /* Removed flex-direction: column to keep horizontal alignment */
                gap: var(--space-6);
            }
            
            .hero-stat {
                text-align: center;
            }
            
            .section {
                padding: var(--space-12) 0;
            }
            
            .section-header h2 {
                font-size: var(--font-size-3xl);
            }
            
            .btn-lg {
                padding: var(--space-4) var(--space-8);
                font-size: var(--font-size-lg);
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* Mobile Landscape */
        @media (max-width: 640px) {
            .container {
                padding: 0 var(--space-3);
            }
            
            .hero {
                /*
                 * Top padding provides spacing below the navbar, as navbar clearance
                 * is now handled by the body's padding-top.
                 */
                padding: var(--space-16) 0 var(--space-16);
                text-align: center;
            }
            
            .hero h1 {
                font-size: var(--font-size-3xl);
            }
            
            .hero-subtitle {
                font-size: var(--font-size-lg);
            }
            
            .hero-stats {
                gap: var(--space-4);
            }
            
            .section {
                padding: var(--space-10) 0;
            }
            
            .section-header h2 {
                font-size: var(--font-size-2xl);
            }
            
            .section-header p {
                font-size: var(--font-size-base);
            }
        }
        
        /* Mobile Portrait */
        @media (max-width: 480px) {
            .container {
                padding: 0 var(--space-3);
            }
            
            .hero h1 {
                font-size: var(--font-size-2xl);
                line-height: 1.2;
                min-height: 80px; /* Ensure consistent height for dynamic text */
                display: flex; /* Use flexbox to center content vertically */
                align-items: center; /* Center content vertically */
                justify-content: center; /* Center content horizontally */
            }
            
            .hero-subtitle {
                font-size: var(--font-size-base);
            }
            
            .hero-stat-number {
                font-size: var(--font-size-2xl);
            }
            
            .hero-stat-label {
                font-size: var(--font-size-sm);
            }
            
            .section {
                padding: var(--space-8) 0;
            }
            
            .section-header {
                margin-bottom: var(--space-8);
            }
            
            .section-header h2 {
                font-size: var(--font-size-xl);
            }
            
            .btn {
                padding: var(--space-3) var(--space-6);
                font-size: var(--font-size-sm);
            }
            
            .btn-lg {
                padding: var(--space-3) var(--space-6);
                font-size: var(--font-size-base);
            }
            
            /* Card adjustments for mobile */
            .pricing-card {
                min-height: auto;
                padding: var(--space-6);
            }
            
            .testimonial-card {
                min-height: auto;
                padding: var(--space-6);
            }
            
            .industry-card {
                min-height: auto;
                padding: var(--space-6);
            }
            
            .ai-assistant-card {
                min-height: auto;
                padding: var(--space-6);
            }
        }
        
        /* Carousel Fade Transitions */
        #carousel-content-wrapper {
            /* opacity: 0; Removed to ensure initial content is visible */
            transition: opacity 0.5s ease-in-out; /* Smooth transition */
        }

        .fade-out {
            opacity: 0;
        }

        .fade-in {
            opacity: 1;
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Focus Styles */
        *:focus {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }
        
        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-blue);
            color: var(--white);
            padding: 8px;
            border-radius: var(--radius-md);
            text-decoration: none;
            z-index: 9999;
        }
        
        .skip-link:focus {
            top: 6px;
        }
    