   /* CSS Variables - Design System */
        :root {
            /* Spacing System (8px base unit) */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;

            /* Colors */
            --color-text-primary: #1a1a1a;
            --color-text-secondary: #475569;
            --color-text-tertiary: #64748b;
            --color-brand-primary: #8b5cf6;
            --color-brand-dark: #7c3aed;
            --color-bg-primary: #ffffff;
            --color-bg-secondary: #f8fafc;
            --color-border: #e2e8f0;

            /* Typography */
            --font-size-xs: 12px;
            --font-size-sm: 14px;
            --font-size-base: 16px;
            --font-size-lg: 18px;
            --font-size-xl: 20px;
            --font-size-2xl: 24px;
            --font-size-3xl: 32px;
            --font-size-4xl: 48px;
            --font-size-5xl: 56px;

            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--color-bg-primary);
            line-height: 1.6;
            color: var(--color-text-primary);
        }

        /* Focus styles for keyboard navigation - Accessibility */
        *:focus {
            outline: 3px solid #8b5cf6;
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        *:focus-visible {
            outline: 3px solid #8b5cf6;
            outline-offset: 2px;
        }

        /* Enhanced focus for interactive elements */
        a:focus-visible,
        button:focus-visible,
        [role="button"]:focus-visible {
            outline: 3px solid #8b5cf6;
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(51, 48, 80, 0.2);
        }

        /* FRANSiS™ Global Header Styles */
        .fransis-header {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .fransis-header-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .fransis-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .fransis-logo:hover {
            opacity: 0.8;
        }

        .fransis-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

        .fransis-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .fransis-nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }

        .fransis-nav-item {
            position: relative;
        }

        .fransis-nav-link {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .fransis-nav-link:hover {
            color: #8b5cf6;
        }

        .fransis-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #8b5cf6;
            transition: width 0.3s ease;
        }

        .fransis-nav-link:hover::after {
            width: 100%;
        }

        .fransis-dropdown {
            position: relative;
        }

        .fransis-dropdown-toggle::after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 6px;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #64748b;
            transition: all 0.3s ease;
        }

        .fransis-dropdown:hover .fransis-dropdown-toggle::after {
            transform: rotate(180deg);
            border-top-color: #8b5cf6;
        }

        .fransis-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s ease;
            transition-delay: 0s;
            z-index: 1001;
            margin-top: 8px;
        }

        .fransis-dropdown:hover .fransis-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition-delay: 150ms;
        }

        .fransis-dropdown-item {
            display: block;
            padding: 14px 20px;
            color: #1f2937;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .fransis-dropdown-item:hover {
            background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
            color: #8b5cf6;
            transform: translateX(4px);
        }

        .fransis-dropdown-item:first-child {
            border-radius: 12px 12px 0 0;
        }

        .fransis-dropdown-item:last-child {
            border-radius: 0 0 12px 12px;
        }

        .fransis-dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #8b5cf6;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .fransis-dropdown-item:hover::before {
            transform: scaleY(1);
        }

        .fransis-cta-button {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
        }

        .fransis-cta-button:hover {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
        }

        .fransis-cta-button:active {
            transform: translateY(0);
        }

        .fransis-mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            transition: all 0.3s ease;
        }

        .fransis-hamburger-line {
            width: 20px;
            height: 2px;
            background: #1a1a1a;
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .fransis-mobile-menu-toggle.active .fransis-hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .fransis-mobile-menu-toggle.active .fransis-hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .fransis-mobile-menu-toggle.active .fransis-hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .fransis-mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .fransis-mobile-menu.active {
            display: block;
        }

        .fransis-mobile-nav-links {
            list-style: none;
            padding: 16px 0;
        }

        .fransis-mobile-nav-item {
            margin: 0;
        }

        .fransis-mobile-nav-link {
            display: block;
            padding: 16px 24px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .fransis-mobile-nav-link:hover {
            background: #f8fafc;
            border-left-color: #8b5cf6;
            color: #8b5cf6;
        }

        .fransis-mobile-dropdown-items {
            background: #f8fafc;
            padding: 8px 0;
        }

        .fransis-mobile-dropdown-item {
            display: block;
            padding: 12px 48px;
            color: #64748b;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .fransis-mobile-dropdown-item:hover {
            color: #8b5cf6;
            background: white;
        }

        .fransis-mobile-cta {
            margin: 16px 24px;
            text-align: center;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, rgba(139, 92, 246, 0.01) 0%, rgba(139, 92, 246, 0.03) 100%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #8b5cf6;
            border-radius: 50%;
            display: inline-block;
        }

        .hero-headline {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.3;
            color: #1a1a1a;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-headline .highlight {
            background: linear-gradient(135deg, #8b5cf6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subheadline {
            font-size: 20px;
            line-height: 1.6;
            color: #64748b;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #8b5cf6;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 14px;
            color: #475569;
            font-weight: 500;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero-cta-primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 22px;
            padding: 24px 48px;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-direction: column;
            text-align: center;
            min-width: 320px;
        }

        .hero-cta-primary:hover {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
        }

        .hero-cta-secondary {
            background: transparent;
            color: #475569;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 14px 24px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-cta-secondary:hover {
            border-color: #8b5cf6;
            color: #8b5cf6;
            background: rgba(139, 92, 246, 0.05);
            transform: translateY(-1px);
        }

        .cta-subtext {
            display: block;
            font-size: 16px;
            font-weight: 400;
            opacity: 0.9;
            margin-top: 6px;
        }

        .urgency-banner {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            text-align: center;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            margin-bottom: 24px;
        }

        .hero-testimonial {
            margin-bottom: 24px;
            padding-left: 16px;
            border-left: 3px solid #8b5cf6;
        }

        .hero-testimonial-quote {
            font-size: 15px;
            font-style: italic;
            color: #475569;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .hero-testimonial-author {
            font-size: 13px;
            font-weight: 600;
            color: #1e293b;
            display: inline;
        }

        .hero-testimonial-role {
            font-size: 13px;
            color: #64748b;
            display: inline;
        }

        .hero-testimonial-role::before {
            content: ", ";
        }

        .hero-trust-indicators {
            display: flex;
            align-items: center;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid #e2e8f0;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #1e293b;
            font-weight: 600;
        }

        .trust-badge::before {
            content: '✅';
            color: #8b5cf6;
            font-size: 14px;
        }

        .hero-media {
            position: relative;
            animation: fadeInRight 1s ease-out 0.3s both;
            margin-top: var(--space-lg);
        }

        .hero-video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            min-height: 400px;
        }

        .hero-video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            min-height: 400px;
            object-fit: cover;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .hero-video-container:hover .hero-video-overlay {
            opacity: 1;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #8b5cf6;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .hero-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            right: 10%;
            animation-delay: -2s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 5%;
            animation-delay: -4s;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            right: 20%;
            animation-delay: -1s;
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(2deg);
            }
            50% {
                transform: translateY(-20px) rotate(0deg);
            }
            75% {
                transform: translateY(-10px) rotate(-2deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .fransis-nav-links,
            .fransis-cta-button {
                display: none;
            }

            .fransis-mobile-menu-toggle {
                display: flex;
            }

            .fransis-header-container {
                padding: 0 16px;
                height: 64px;
            }

            .fransis-logo img {
                height: 28px;
            }

            .hero {
                min-height: 100vh;
                padding: 40px 0;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 0 16px;
            }

            .hero-headline {
                font-size: 40px;
            }

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

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

            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-trust-indicators {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .fransis-header-container {
                padding: 0 12px;
            }

            .hero-container {
                padding: 0 12px;
            }

            .hero-headline {
                font-size: 32px;
            }

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

        /* By the Numbers Section */
        .by-the-numbers {
            padding: var(--space-3xl) 0;
            background: white;
        }

        .by-the-numbers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .by-the-numbers-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .by-the-numbers-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
            padding: var(--space-xs) 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-md);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .by-the-numbers-title {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: var(--space-sm);
            letter-spacing: -0.01em;
        }

        .by-the-numbers-subtitle {
            font-size: 20px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .metrics-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

        .metrics-visual {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
        }

        .metrics-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .metrics-overlay {
            position: absolute;
            bottom: var(--space-lg);
            left: var(--space-lg);
            right: var(--space-lg);
            display: flex;
            gap: var(--space-md);
        }

        .overlay-metric {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: var(--space-md);
            border-radius: var(--radius-md);
            flex: 1;
        }

        .overlay-value {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 4px;
        }

        .overlay-label {
            font-size: 12px;
            color: #475569;
            font-weight: 600;
        }

        .metrics-content-text {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .metrics-content-headline {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-md);
            line-height: 1.3;
        }

        .metrics-content-description {
            font-size: 16px;
            line-height: 1.7;
            color: #475569;
            margin-bottom: var(--space-xl);
        }

        .metrics-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-md);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #8b5cf6;
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: #64748b;
            font-weight: 500;
        }

        .metrics-cta {
            margin-top: var(--space-xl);
            padding-bottom: var(--space-lg);
        }

        .metrics-cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

        .metrics-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        .metrics-cta-button svg {
            transition: transform 0.3s ease;
        }

        .metrics-cta-button:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .metrics-content {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

            .metrics-image {
                height: 400px;
            }

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

        @media (max-width: 640px) {
            .by-the-numbers-title {
                font-size: 36px;
            }

            .metrics-image {
                height: 300px;
            }

            .metrics-overlay {
                flex-direction: column;
                gap: var(--space-sm);
            }

            .metrics-content-headline {
                font-size: 24px;
            }

            .metrics-stats-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }
        }

        /* What Makes FRANSiS Different Section */
        .what-makes-different {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        /* Comparison Features Grid */
        .comparison-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .comparison-feature-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            border: 1px solid #e2e8f0;
        }

        .feature-comparison-header h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-md);
        }

        .comparison-items {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .comparison-item {
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
        }

        .fransis-advantage {
            background: #f0fdf4;
            border-left: 3px solid #10b981;
        }

        .competitor-lacking {
            background: #fef2f2;
            border-left: 3px solid #ef4444;
        }

        .comparison-label {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 4px;
        }

        .comparison-value {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Positioning Statements */
        .positioning-statements {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .positioning-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
        }

        .vs-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: var(--space-sm);
        }

        .positioning-text {
            font-size: 15px;
            line-height: 1.6;
            color: #475569;
        }

        /* Solutions Overview */
        .solutions-overview {
            margin-top: var(--space-3xl);
            padding: var(--space-2xl);
            background: white;
            border-radius: var(--radius-lg);
        }

        .solutions-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: var(--space-xs);
        }

        .solutions-subtitle {
            font-size: 16px;
            color: #64748b;
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-lg);
        }

        .solution-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            text-decoration: none;
            color: inherit;
        }

        .solution-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
            border-color: #8b5cf6;
        }

        .solution-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: var(--radius-md);
            color: white;
        }

        .solution-name {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
        }

        .solution-description {
            font-size: 15px;
            line-height: 1.6;
            color: #64748b;
            margin: 0;
        }

        .solution-link {
            color: #7c3aed;
            font-weight: 600;
            display: inline-block;
            margin-top: var(--space-xs);
        }

        .solution-features {
            list-style: none;
            padding: 0;
            margin: var(--space-sm) 0 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        .solution-features li {
            font-size: 14px;
            color: #475569;
            padding-left: var(--space-md);
            position: relative;
        }

        .solution-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #7c3aed;
            font-weight: 600;
        }

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

            .positioning-statements {
                grid-template-columns: 1fr;
            }

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

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

        /* Pricing Tiers Section */
        .pricing-tiers {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .tier-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .tier-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .tier-card.popular {
            border-color: #8b5cf6;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
            transform: scale(1.05);
        }

        .tier-card.popular:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .tier-card.enterprise {
            border-color: #7c3aed;
        }

        .tier-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: var(--space-sm);
            width: fit-content;
        }

        .tier-badge.minimal {
            background: #dbeafe;
            color: #1e40af;
        }

        .tier-badge.essential {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
        }

        .tier-badge.premium {
            background: #fed7aa;
            color: #9a3412;
        }

        .tier-badge.enterprise-badge {
            background: #c7d2fe;
            color: #4338ca;
        }

        .tier-name {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-xs);
        }

        .tier-tagline {
            font-size: 14px;
            color: #64748b;
            margin-bottom: var(--space-lg);
        }

        .tier-pricing {
            padding: var(--space-lg) 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: var(--space-lg);
        }

        .price-amount {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .price-period {
            font-size: 14px;
            color: #64748b;
            margin-top: 4px;
        }

        .price-note {
            font-size: 13px;
            color: #94a3b8;
            margin-top: 8px;
        }

        .tier-features {
            list-style: none;
            padding: 0;
            margin: 0 0 var(--space-lg) 0;
            flex-grow: 1;
        }

        .tier-features li {
            font-size: 14px;
            color: #475569;
            margin-bottom: var(--space-sm);
            line-height: 1.5;
        }

        .tier-target {
            font-size: 13px;
            color: #64748b;
            padding: var(--space-sm);
            background: #f8fafc;
            border-radius: var(--radius-sm);
            margin-bottom: var(--space-lg);
        }

        .tier-target strong {
            color: #1a1a1a;
        }

        .tier-cta {
            display: block;
            text-align: center;
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .minimal-cta {
            background: #dbeafe;
            color: #1e40af;
        }

        .minimal-cta:hover {
            background: #bfdbfe;
        }

        .essential-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
        }

        .essential-cta:hover {
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .premium-cta {
            background: #fed7aa;
            color: #9a3412;
        }

        .premium-cta:hover {
            background: #fdba74;
        }

        .enterprise-cta {
            background: #1a1a1a;
            color: white;
        }

        .enterprise-cta:hover {
            background: #374151;
        }

        .pricing-note {
            text-align: center;
            margin-top: var(--space-2xl);
            padding: var(--space-lg);
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid #e2e8f0;
        }

        .pricing-note p {
            font-size: 14px;
            color: #64748b;
            margin: 0;
        }

        @media (max-width: 1200px) {
            .tiers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tier-card.popular {
                transform: scale(1);
            }

            .tier-card.popular:hover {
                transform: translateY(-4px);
            }
        }

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

        /* Hidden Crisis Section */
        .hidden-crisis {
            padding: var(--space-3xl) 0;
            background: white;
        }

        .crisis-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .crisis-problems {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .crisis-problem {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .crisis-problem:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .problem-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: var(--radius-md);
            color: white;
            margin-bottom: var(--space-md);
        }

        .crisis-problem h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-sm);
        }

        .problem-stat {
            font-size: 13px;
            color: #8b5cf6;
            font-weight: 600;
            margin-bottom: var(--space-md);
        }

        .problem-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: var(--space-sm);
        }

        .problem-result {
            font-size: 14px;
            color: #10b981;
            font-weight: 600;
        }

        .crisis-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            padding-bottom: var(--space-xl);
        }

        .crisis-cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .crisis-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        /* Customer Testimonials Section */
        .customer-testimonials {
            padding: var(--space-3xl) 0;
            background: white;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .testimonial-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(139, 92, 246, 0.1);
        }

        .testimonial-quote {
            font-size: 15px;
            line-height: 1.6;
            color: #1e293b;
            flex-grow: 1;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding-top: var(--space-md);
            border-top: 1px solid #e2e8f0;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .testimonial-author strong {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
        }

        .testimonial-author span {
            font-size: 13px;
            color: #64748b;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            padding-bottom: var(--space-xl);
        }

        .testimonials-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .testimonials-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

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

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

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

        /* Trust Bar Section */
        /* Trust Section */
        .trust-section {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            text-align: center;
        }

        .trust-section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .trust-section-headline {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: var(--space-2xl);
            letter-spacing: -0.01em;
        }

        .trust-logos-wrapper {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: var(--space-xl);
            align-items: center;
            margin-bottom: var(--space-2xl);
            padding: var(--space-xl) 0;
        }

        .trust-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .trust-logo-item:hover {
            transform: scale(1.05);
        }

        .trust-logo-item img {
            max-width: 100%;
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .trust-certifications-clean {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-xl);
            flex-wrap: wrap;
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cert-badge-clean {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .cert-badge-clean svg {
            color: white;
            opacity: 0.9;
        }

        @media (max-width: 1024px) {
            .trust-logos-wrapper {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-lg);
            }
        }

        @media (max-width: 768px) {
            .trust-section-headline {
                font-size: 24px;
            }

            .trust-logos-wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-md);
            }

            .trust-logo-item img {
                height: 40px;
            }

            .trust-certifications-clean {
                gap: var(--space-md);
            }

            .cert-badge-clean {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .trust-logos {
                gap: 16px;
            }

            .trust-certifications {
                gap: 12px;
            }

            .certification-badge {
                flex: 1 1 calc(50% - 6px);
                justify-content: center;
                min-width: 140px;
            }
        }

        /* Customer Success Stories Section */
        .customer-success {
            padding: 96px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .customer-success-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .success-stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
            align-items: stretch;
        }

        .success-story {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 32px;
            min-height: 450px;
        }

        .success-story:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .story-header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .story-logo {
            flex-shrink: 0;
        }

        .story-logo img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
        }

        .organization-name {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.3;
        }

        .story-metric-hero {
            text-align: center;
            padding: 32px 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 12px;
            border: 2px solid #8b5cf6;
        }

        .story-metric-hero .metric-value {
            font-size: 56px;
            font-weight: 900;
            color: #8b5cf6;
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .story-metric-hero .metric-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .story-quote-short {
            font-size: 16px;
            font-style: italic;
            color: #374151;
            line-height: 1.6;
            padding-left: 20px;
            border-left: 3px solid #8b5cf6;
            background: none;
            margin: 0;
        }

        .story-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s ease;
            margin-top: auto;
        }

        .story-cta:hover {
            color: #7c3aed;
            gap: 12px;
        }

        .success-cta {
            text-align: center;
            padding: 48px 32px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }

        .success-cta-headline {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
        }

        .success-cta-description {
            font-size: 16px;
            color: #64748b;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .success-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #8b5cf6;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 8px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
        }

        .success-cta-button:hover {
            background: #7c3aed;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
        }

        @media (max-width: 1200px) {
            .success-stories-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .customer-success {
                padding: 64px 0;
            }

            .success-stories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 48px;
            }

            .success-story {
                padding: 24px;
            }

            .story-metric-hero .metric-value {
                font-size: 48px;
            }

            .success-cta {
                padding: 32px 24px;
            }

            .success-cta-headline {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .success-story {
                padding: 20px;
            }

            .organization-name {
                font-size: 18px;
            }

            .story-metric-hero .metric-value {
                font-size: 40px;
            }

            .success-cta-button {
                padding: 14px 24px;
                font-size: 15px;
            }
        }

        /* Security & Compliance Section */
        .security-compliance {
            padding: 96px 0;
            background: #ffffff;
            position: relative;
        }

        .security-compliance-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 64px;
            align-items: stretch;
        }

        .compliance-block {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px 32px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .compliance-block:hover {
            border-color: #8b5cf6;
        }

        .compliance-badge {
            position: absolute;
            top: -1px;
            right: -1px;
            background: #8b5cf6;
            color: #ffffff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 0 8px 0 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .compliance-icon {
            width: 40px;
            height: 40px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #64748b;
            flex-shrink: 0;
        }

        .compliance-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .compliance-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .compliance-metric {
            color: #8b5cf6;
            font-size: 13px;
            font-weight: 600;
        }

        .security-architecture {
            margin-bottom: 64px;
        }

        .architecture-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .architecture-headline {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .architecture-description {
            font-size: 16px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .architecture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            align-items: stretch;
        }

        .architecture-layer {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 32px 28px;
            position: relative;
            transition: all 0.3s ease;
            min-height: 220px;
            display: flex;
            flex-direction: column;
        }

        .architecture-layer:hover {
            border-color: #cbd5e1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .layer-number {
            position: absolute;
            top: -12px;
            left: 24px;
            background: #1e293b;
            color: #ffffff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        .layer-title {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
            margin-top: 8px;
        }

        .layer-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .layer-features li {
            font-size: 14px;
            color: #475569;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            line-height: 1.7;
        }

        .layer-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 4px;
            height: 4px;
            background: #64748b;
            border-radius: 50%;
        }

        .layer-features li:last-child {
            margin-bottom: 0;
        }

        .security-cta {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 40px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .cta-content {
            flex: 1;
        }

        .cta-headline {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .cta-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 6px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .cta-button.primary {
            background: #1e293b;
            color: #ffffff;
            border: 1px solid #1e293b;
        }

        .cta-button.primary:hover {
            background: #0f172a;
            border-color: #0f172a;
        }

        .cta-button.secondary {
            background: transparent;
            color: #475569;
            border: 1px solid #cbd5e1;
        }

        .cta-button.secondary:hover {
            border-color: #1e293b;
            color: #1e293b;
        }

        @media (max-width: 1200px) {
            .compliance-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }

            .architecture-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .security-compliance {
                padding: 64px 0;
            }

            .compliance-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 64px;
            }

            .compliance-block {
                padding: 24px 20px;
            }

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

            .architecture-layer {
                padding: 24px 20px;
            }

            .security-cta {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 24px;
                padding: 32px 24px;
            }

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

            .architecture-headline {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .compliance-block {
                padding: 20px 16px;
            }

            .architecture-layer {
                padding: 20px 16px;
            }

            .security-cta {
                padding: 24px 16px;
            }

            .cta-button {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        /* What is FRANSiS Section */
        .what-is-fransis {
            padding: var(--space-3xl) 0;
            background: #ffffff;
            position: relative;
        }

        .what-is-fransis-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
            padding: var(--space-xs) 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-md);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .section-headline {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.3;
            color: #1a1a1a;
            margin-bottom: var(--space-sm);
            letter-spacing: -0.01em;
        }

        .section-subheadline {
            font-size: 20px;
            line-height: 1.6;
            color: #64748b;
            font-weight: 400;
        }

        .what-is-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 64px;
        }

        .what-is-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: stretch;
        }

        .content-block {
            padding: 28px 24px;
            background: #ffffff;
            border-radius: 8px;
            border: 1px solid #e8eef7;
            transition: border-color 0.3s ease;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .content-block:hover {
            border-color: #8b5cf6;
        }

        .content-icon {
            width: 40px;
            height: 40px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #64748b;
            flex-shrink: 0;
        }

        .compliance-badge {
            position: absolute;
            top: -1px;
            right: -1px;
            background: #8b5cf6;
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 0 8px 0 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .enterprise-metric {
            display: inline-block;
            background: #f3f0ff;
            color: #8b5cf6;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            margin-top: 12px;
        }

        .content-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .content-description {
            font-size: 16px;
            line-height: 1.6;
            color: #64748b;
            font-weight: 400;
            flex-grow: 1;
        }

        .what-is-media {
            position: relative;
        }

        .enterprise-overview {
            background: #ffffff;
            border: 1px solid #e8eef7;
            border-radius: 8px;
            padding: 32px 28px;
        }

        .overview-header {
            margin-bottom: 24px;
        }

        .overview-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .overview-subtitle {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 20px;
        }

        .integration-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 24px;
        }

        .integration-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: #f8fafc;
            border-radius: 6px;
            font-size: 13px;
            color: #475569;
            font-weight: 500;
        }

        .integration-icon {
            width: 20px;
            height: 20px;
            background: #8b5cf6;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .competitive-comparison {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 48px;
            margin: 40px 0;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 48px;
            border-bottom: 2px solid #f3f4f6;
            padding-bottom: 24px;
        }

        .comparison-header h3 {
            font-size: 28px;
            font-weight: 600;
            color: #1b365d;
            margin-bottom: 8px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .comparison-header p {
            font-size: 16px;
            color: #6b7280;
            font-weight: 400;
        }

        .comparison-grid {
            display: grid;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 300px 1fr 1fr;
            gap: 32px;
            align-items: start;
            padding: 32px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
        }

        .comparison-feature {
            font-weight: 700;
            color: #1a1a1a;
            font-size: 16px;
            line-height: 1.3;
        }

        .comparison-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .comparison-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .generic-label {
            color: #6b7280;
        }

        .fransis-label {
            color: #8b5cf6;
        }

        .comparison-content {
            font-size: 15px;
            line-height: 1.7;
        }

        .generic-content {
            color: #6b7280;
            font-weight: 400;
        }

        .fransis-content {
            color: #1a1a1a;
            font-weight: 500;
        }

        .compliance-badge {
            display: inline-block;
            background: #e0f2fe;
            color: #8b5cf6;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            margin-top: 8px;
        }

        /* Simple Card Grid for What is FRANSiS */
        .what-is-simple-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        .what-is-card {
            padding: var(--space-xl);
            background: #f8fafc;
            border-radius: var(--radius-lg);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .what-is-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
            border-color: #8b5cf6;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: var(--space-md);
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-sm);
        }

        .card-description {
            font-size: 16px;
            line-height: 1.6;
            color: #475569;
        }

        /* About Section Specific Styles */
        .about-story {
            max-width: 900px;
            margin: 0 auto var(--space-xl);
            text-align: center;
        }

        .story-text {
            font-size: 18px;
            line-height: 1.8;
            color: #475569;
            font-weight: 400;
        }

        .about-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            padding-bottom: var(--space-xl);
        }

        .about-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

        .about-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        /* Platform CTA */
        .platform-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            padding-bottom: var(--space-xl);
        }

        .platform-cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

        .platform-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        /* Differentiation CTA */
        .differentiation-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            padding-bottom: var(--space-xl);
        }

        .differentiation-cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

        .differentiation-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        /* Platform Features Section */
        .platform-features {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
        }

        .platform-features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        .feature-card {
            padding: var(--space-lg);
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
            border-color: #8b5cf6;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: var(--space-sm);
        }

        .feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: var(--space-xs);
            line-height: 1.3;
        }

        .feature-description {
            font-size: 14px;
            line-height: 1.5;
            color: #475569;
            margin-bottom: var(--space-sm);
        }

        .feature-metric {
            display: inline-block;
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .platform-highlights {
            margin-top: var(--space-2xl);
            padding: var(--space-xl);
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid #e2e8f0;
        }

        .highlight-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .highlight-header-text {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
        }

        .trust-logos-wrapper {
            margin-bottom: var(--space-lg);
            padding: var(--space-xl);
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
        }

        .trust-logos-wrapper::before,
        .trust-logos-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .trust-logos-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #8b5cf6, transparent);
        }

        .trust-logos-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #7c3aed, transparent);
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .trust-logos-grid {
            display: flex;
            align-items: center;
            gap: var(--space-2xl);
            animation: scroll-logos 20s linear infinite;
        }

        .trust-logos-wrapper:hover .trust-logos-grid {
            animation-play-state: paused;
        }

        .trust-logo-item-inline {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: opacity 0.3s ease;
        }

        .trust-logo-item-inline:hover {
            opacity: 0.8;
        }

        .trust-logo-item-inline img {
            max-width: 160px;
            height: auto;
            max-height: 52px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .platform-certs {
            display: flex;
            justify-content: center;
            gap: var(--space-lg);
            padding-top: var(--space-md);
            border-top: 1px solid #e2e8f0;
        }

        .cert-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
        }

        .cert-item svg {
            width: 16px;
            height: 16px;
            color: #8b5cf6;
        }

        /* Responsive Design for What is FRANSiS */
        @media (max-width: 1024px) {
            .what-is-simple-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-md);
            }

            .trust-logos-grid {
                gap: var(--space-lg);
            }

            .platform-certs {
                flex-wrap: wrap;
                gap: var(--space-sm);
            }

            .what-is-content-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .what-is-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .integration-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .enterprise-overview {
                padding: 24px 20px;
            }

            .competitive-comparison {
                padding: 32px 20px;
            }

            .comparison-header h3 {
                font-size: 24px;
            }

            .comparison-table {
                font-size: 14px;
            }

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

            .comparison-feature {
                font-size: 15px;
            }

            .comparison-generic,
            .comparison-fransis {
                font-size: 14px;
            }

            .comparison-row {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 24px 20px;
            }

            .comparison-feature {
                font-size: 16px;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 20px;
                text-align: center;
            }

            .compliance-badge {
                font-size: 11px;
                padding: 3px 6px;
            }

            .comparison-item {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .what-is-fransis {
                padding: var(--space-xl) 0;
            }

            .what-is-fransis-container {
                padding: 0 var(--space-sm);
            }

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

            .section-subheadline {
                font-size: 18px;
            }

            .story-text {
                font-size: 16px;
            }

            .what-is-simple-grid {
                gap: var(--space-sm);
            }

            .what-is-card {
                padding: var(--space-lg);
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: var(--space-sm);
            }

            .feature-card {
                padding: var(--space-md);
            }

            .trust-logos-grid {
                gap: var(--space-md);
            }

            .trust-logo-item-inline img {
                max-width: 120px;
                max-height: 40px;
            }

            .competitive-comparison {
                padding: 32px 24px;
            }

            .comparison-header h3 {
                font-size: 24px;
            }
        }

        /* Product Tiers Section */
        .product-tiers {
            padding: 96px 0;
            background: #ffffff;
            position: relative;
        }

        .product-tiers-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 64px;
            align-items: stretch;
        }

        .tier-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 32px 28px;
            position: relative;
            border: 1px solid #e8eef7;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
            display: flex;
            flex-direction: column;
            min-height: 650px;
        }

        .tier-card:hover {
            border-color: #8b5cf6;
            box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
        }

        .tier-card.premium-tier {
            border-color: #8b5cf6;
            border-width: 2px;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
            position: relative;
        }

        .tier-card.premium-tier:hover {
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
        }

        .featured-badge {
            position: absolute;
            top: -1px;
            right: -1px;
            background: #8b5cf6;
            color: white;
            padding: 6px 12px;
            border-radius: 0 8px 0 8px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tier-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .tier-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .foundation-tier .tier-badge {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .premium-tier .tier-badge {
            background: rgba(139, 92, 246, 0.2);
            color: #7c3aed;
        }

        .enterprise-tier .tier-badge {
            background: rgba(139, 92, 246, 0.15);
            color: #6d28d9;
        }

        .tier-name {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .tier-description {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .tier-features {
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .feature-category {
            margin-bottom: 32px;
        }

        .feature-category:last-child {
            margin-bottom: 0;
        }

        .category-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: #64748b;
            line-height: 1.7;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-item::before {
            content: '✓';
            color: #8b5cf6;
            font-weight: 700;
            font-size: 14px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .tier-specifications {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e8eef7;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
        }

        .spec-label {
            font-weight: 500;
            color: #64748b;
        }

        .spec-value {
            font-weight: 600;
            color: #1a1a1a;
            text-align: right;
        }

        .tier-cta {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #e8eef7;
            margin-top: 24px;
        }

        .tier-cta-button {
            display: inline-block;
            width: 100%;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-bottom: 12px;
            text-align: center;
        }

        .foundation-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .foundation-cta:hover {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            transform: translateY(-1px);
        }

        .premium-cta {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: white;
            box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
        }

        .premium-cta:hover {
            background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
            transform: translateY(-1px);
        }

        .enterprise-cta {
            background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .enterprise-cta:hover {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            transform: translateY(-1px);
        }

        .tier-cta-note {
            font-size: 12px;
            color: #64748b;
            margin: 0;
            font-style: italic;
        }

        .tiers-comparison {
            background: #ffffff;
            border-radius: 8px;
            padding: 48px;
            box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
            border: 1px solid #e8eef7;
            text-align: center;
            position: relative;
        }

        .business-case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 32px 0;
        }

        .roi-metric {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 24px 20px;
            text-align: center;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .roi-value {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1;
            margin-bottom: 8px;
        }

        .roi-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .roi-context {
            font-size: 12px;
            color: #8b5cf6;
            margin-top: 4px;
            font-weight: 600;
        }

        .comparison-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #8b5cf6;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-top: 24px;
        }

        .comparison-cta-button:hover {
            background: #7c3aed;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .comparison-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .comparison-header p {
            font-size: 18px;
            color: #64748b;
            margin: 0;
            font-weight: 500;
        }

        .comparison-table-wrapper {
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
        }

        .comparison-table th {
            padding: 20px 16px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        }

        .feature-column {
            text-align: left !important;
            background: #f8fafc;
            color: #1a1a1a;
        }

        .tier-column.foundation {
            background: rgba(139, 92, 246, 0.05);
            color: #8b5cf6;
        }

        .tier-column.premium {
            background: rgba(139, 92, 246, 0.1);
            color: #7c3aed;
        }

        .tier-column.enterprise {
            background: rgba(139, 92, 246, 0.08);
            color: #6d28d9;
        }

        .comparison-table td {
            padding: 16px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-name {
            text-align: left !important;
            font-weight: 600;
            color: #1a1a1a;
            background: #f8fafc;
        }

        .tier-feature.included {
            color: #8b5cf6;
            font-weight: 700;
            font-size: 16px;
        }

        .tier-feature.not-included {
            color: #64748b;
            font-size: 16px;
        }

        /* Responsive Design for Product Tiers */
        @media (max-width: 1200px) {
            .comparison-row {
                grid-template-columns: 200px 1fr 1fr;
                gap: 24px;
                padding: 28px 24px;
            }

            .comparison-feature {
                font-size: 15px;
            }
        }

        @media (max-width: 960px) {
            .comparison-row {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 24px;
            }

            .comparison-feature {
                font-size: 16px;
                text-align: center;
                margin-bottom: 16px;
                border-bottom: 2px solid #8b5cf6;
                padding-bottom: 8px;
            }

            .comparison-column {
                text-align: center;
                gap: 6px;
            }
        }

        @media (max-width: 1024px) {
            .tiers-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
            }

            .business-case-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .roi-metric {
                padding: 20px 16px;
            }
        }

            .tier-card.premium-tier {
                transform: none;
            }

            .tier-card.premium-tier:hover {
                transform: translateY(-8px);
            }

            .comparison-item {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }


        @media (max-width: 768px) {
            .product-tiers {
                padding: 48px 0;
            }

            .product-tiers-container {
                padding: 0 16px;
            }

            .tier-card {
                padding: 24px 20px;
            }

            .tier-specifications {
                margin-top: 24px;
                padding-top: 20px;
            }

            .spec-item {
                padding: 6px 0;
                font-size: 13px;
            }

            .spec-label, .spec-value {
                font-size: 13px;
            }

            .tiers-comparison {
                padding: 32px 24px;
            }

            .business-case-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .roi-metric {
                padding: 20px 16px;
            }

            .comparison-header h3 {
                font-size: 24px;
            }

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

            .comparison-row {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 20px 16px;
            }

            .comparison-feature {
                font-size: 15px;
                margin-bottom: 16px;
                text-align: center;
                border-bottom: 2px solid #8b5cf6;
                padding-bottom: 8px;
            }

            .comparison-column {
                gap: 6px;
            }

            .comparison-label {
                font-size: 11px;
            }

            .comparison-content {
                font-size: 14px;
                line-height: 1.6;
            }

            .content-block {
                padding: 20px 16px;
            }

            .content-title {
                font-size: 18px;
            }

            .content-description {
                font-size: 15px;
            }

            .compliance-badge {
                font-size: 9px;
                padding: 3px 6px;
            }

            .enterprise-metric {
                font-size: 10px;
                padding: 3px 6px;
            }

            .enterprise-overview {
                padding: 20px 16px;
            }

            .overview-title {
                font-size: 16px;
            }

            .overview-subtitle {
                font-size: 13px;
            }

            .integration-item {
                font-size: 12px;
                padding: 10px;
            }
        }

        @media (max-width: 640px) {
            .product-tiers {
                padding: 40px 0;
            }

            .tier-card {
                padding: 20px 16px;
            }

            .tier-name {
                font-size: 20px;
            }

            .tier-description {
                font-size: 14px;
            }

            .feature-category {
                margin-bottom: 20px;
            }

            .category-title {
                font-size: 14px;
            }

            .feature-item {
                font-size: 13px;
                line-height: 1.6;
            }

            .tier-specifications {
                margin-top: 20px;
                padding-top: 16px;
            }

            .spec-item {
                padding: 5px 0;
                font-size: 12px;
            }

            .tier-cta-button {
                padding: 12px 20px;
                font-size: 14px;
            }

            .tier-cta-note {
                font-size: 12px;
            }

            .tiers-comparison {
                padding: 24px 16px;
            }

            .roi-metric {
                padding: 16px 12px;
            }

            .roi-value {
                font-size: 24px;
            }

            .roi-label {
                font-size: 13px;
            }

            .roi-context {
                font-size: 11px;
            }

            .comparison-cta-button {
                padding: 14px 24px;
                font-size: 15px;
            }
        }

        /* Accessibility */
        .fransis-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .fransis-nav-link:focus,
        .fransis-dropdown-item:focus,
        .fransis-cta-button:focus,
        .fransis-mobile-menu-toggle:focus,
        .hero-cta-primary:focus,
        .hero-cta-secondary:focus {
            outline: 2px solid #8b5cf6;
            outline-offset: 2px;
        }
        
        /* Footer Styles */
        .fransis-footer {
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            padding: var(--space-3xl) 0 var(--space-xl);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: var(--space-3xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid #e2e8f0;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .footer-logo {
            width: 140px;
            height: auto;
        }

        .footer-tagline {
            font-size: var(--text-sm);
            line-height: 1.6;
            color: #64748b;
            max-width: 280px;
        }

        .footer-badges {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: var(--text-xs);
            font-weight: 500;
            color: #7c3aed;
            width: fit-content;
        }

        .footer-badge svg {
            color: #7c3aed;
            flex-shrink: 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-2xl);
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .footer-heading {
            font-size: var(--text-sm);
            font-weight: 600;
            color: #1e293b;
            margin: 0;
        }

        .footer-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-link {
            color: #64748b;
            text-decoration: none;
            font-size: var(--text-sm);
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #7c3aed;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }

        .footer-legal p {
            margin: 0;
            font-size: var(--text-sm);
            color: #64748b;
        }

        .legal-links {
            display: flex;
            gap: var(--space-lg);
        }

        .legal-link {
            font-size: var(--text-sm);
            color: #64748b;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .legal-link:hover {
            color: #7c3aed;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

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

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                align-items: flex-start;
            }

            .footer-legal {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-md);
            }
        }

        /* Reduced Motion Support - Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Skip Navigation Link - Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #8b5cf6;
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Tile Link Styles */
        .tile-link {
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
        }

        .tile-link:hover {
            gap: 8px;
            color: #7c3aed;
        }

        /* Adjust compliance blocks for minimal design */
        .compliance-block {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-height: 320px;
        }

        .architecture-layer {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .layer-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }