/* SpektrumLabs Modern CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    /* SpektrumLabs Colors */
    --primary-gradient: linear-gradient(to right, rgb(216, 50, 68) 0%, rgb(154, 50, 216) 50%, rgb(50, 116, 216) 100%);
    --gradient-red: rgb(216, 50, 68);
    --gradient-purple: rgb(154, 50, 216);
    --gradient-blue: rgb(50, 116, 216);
    
    /* Stakeholder Brand Colors */
    --color-insurers: #8252DE;          /* Dark Purple - rgb(130, 82, 222) */
    --color-brokers: #311F3D;           /* Light Purple - rgb(49, 31, 61) */
    --color-breach: #BE4A86;            /* Pink - rgb(190, 74, 134) */
    --color-vendors: #75E5EA;           /* Turquoise - rgb(117, 229, 234) */
    --color-enterprises: #4471CD;       /* Blue - rgb(68, 113, 205) */
    
    /* Stakeholder Gradients */
    --gradient-insurers: linear-gradient(135deg, #8252DE, #311F3D);    /* Dark Purple to Light Purple */
    --gradient-brokers: linear-gradient(135deg, #311F3D, #BE4A86);     /* Light Purple to Pink */
    --gradient-breach: linear-gradient(135deg, #BE4A86, #75E5EA);      /* Pink to Turquoise */
    --gradient-vendors: linear-gradient(135deg, #75E5EA, #4471CD);     /* Turquoise to Blue */
    --gradient-enterprises: linear-gradient(135deg, #4471CD, #8252DE); /* Blue to Dark Purple */
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #6b7280;
    
    /* Background Colors */
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(136, 76, 229, 0.3);
    
    /* Border Colors */
    --border-color: rgba(55, 65, 81, 0.3);

    /* Requirements Section */
    --white: #ffffff;
    --green: #75E5EA;
    --blue: #00a2c9;
    --pink: #fe2389;
    --size: 340px;
}

/* Animations */
@keyframes bgslide {
    0% { background-position: 0 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

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

@keyframes highlightText1 {
    0% { /* 0s */
        text-decoration: none;
        color: inherit;
    }
    5% { /* 0.6s */
        text-decoration: underline;
        color: inherit;
    }
    25% { /* 3s - when first red dot appears */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    58.33% { /* 7s - just before green */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    59.16% { /* 7.1s - turn green */
        text-decoration: underline;
        color: rgba(0, 255, 0, 0.75);
    }
    75% { /* 9s - return to normal */
        text-decoration: none;
        color: inherit;
    }
    100% { /* 12s - end */
        text-decoration: none;
        color: inherit;
    }
}

@keyframes highlightText2 {
    0% { /* 0s */
        text-decoration: none;
        color: inherit;
    }
    5% { /* 0.6s */
        text-decoration: underline;
        color: inherit;
    }
    25% { /* 3s - when first red dot appears */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    58.33% { /* 7s - just before green */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    59.16% { /* 7.1s - turn green */
        text-decoration: underline;
        color: rgba(0, 255, 0, 0.75);
    }
    75% { /* 9s - return to normal */
        text-decoration: none;
        color: inherit;
    }
    100% { /* 12s - end */
        text-decoration: none;
        color: inherit;
    }
}

@keyframes highlightText3 {
    0% { /* 0s */
        text-decoration: none;
        color: inherit;
    }
    5% { /* 0.6s */
        text-decoration: underline;
        color: inherit;
    }
    25% { /* 3s - when first red dot appears */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    58.33% { /* 7s - just before green */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    59.16% { /* 7.1s - turn green */
        text-decoration: underline;
        color: rgba(0, 255, 0, 0.75);
    }
    75% { /* 9s - return to normal */
        text-decoration: none;
        color: inherit;
    }
    100% { /* 12s - end */
        text-decoration: none;
        color: inherit;
    }
}

@keyframes highlightText {
    0% {
        background-position: 0 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: inherit;
    }
    10% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: #000000;
    }
    20% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    91.66% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    91.67%, 100% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(0, 255, 0, 0.75) 50%);
        color: inherit;
    }
}

@keyframes highlightText {
    0% {
        background-position: 0 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: inherit;
    }
    10% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: #000000;
    }
    20% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    75% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    75.1%, 100% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(0, 255, 0, 0.75) 50%);
        color: inherit;
    }
}

@keyframes highlightText3 {
    0% { /* 0s */
        text-decoration: none;
        color: inherit;
    }
    5% { /* 0.6s */
        text-decoration: underline;
        color: inherit;
    }
    25% { /* 3s - when first red dot appears */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    58.33% { /* 7s - just before green */
        text-decoration: underline;
        color: rgba(255, 0, 0, 0.75);
    }
    59.16% { /* 7.1s - turn green */
        text-decoration: underline;
        color: rgba(0, 255, 0, 0.75);
    }
    75% { /* 9s - return to normal */
        text-decoration: none;
        color: inherit;
    }
    100% { /* 12s - end */
        text-decoration: none;
        color: inherit;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
    font-weight: 400;
}

/* Ensure all text elements have proper color */
p, span, div, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

/* Ensure proper text rendering */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Top Bar */
.spektrum-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1000;
}

.topbar-gradient {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    background-size: 200% auto;
    animation: bgslide 5s infinite linear;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    padding: var(--spacing-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gradient-purple);
}


/* Mega Menu */
.nav-item-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 20, 32, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(136, 76, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
    width: 600px;
    max-width: calc(100vw - 40px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.mega-menu-section h3 {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-menu-item:hover {
    background: rgba(136, 76, 229, 0.1);
    transform: translateX(6px);
}

.mega-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gradient-purple);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mega-content h4 {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.mega-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    margin: 0;
    line-height: 1.4;
}

.mega-menu-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(136, 76, 229, 0.05);
    border: 1px solid rgba(136, 76, 229, 0.15);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-menu-feature:hover {
    background: rgba(136, 76, 229, 0.1);
    border-color: rgba(136, 76, 229, 0.3);
    transform: translateY(-2px);
}

.icon-bg {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Auth Buttons */
.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-login:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* Login Dropdown Styles */
.login-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: inherit;
    margin: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.dropdown-toggle:hover {
    opacity: 1;
    color: var(--text-primary);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.login-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.login-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.login-dropdown.active .login-dropdown-menu,
.login-dropdown:hover .login-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item span {
    flex: 1;
}

.external-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.dropdown-item:hover .external-icon {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.blue {
    background: #4471CD;
}

.status-dot.purple {
    background: #884CE5;
}

.status-dot.pink {
    background: #E54C88;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

.dropdown-header-text {
    padding: 12px 16px 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 4px;
    display: block;
}

.nav-signup {
    background: transparent;
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.4s ease;
    border: 2px solid rgba(68, 113, 205, 0.4);
}

.nav-signup:hover {
    border-color: var(--color-enterprises);
    background: rgba(68, 113, 205, 0.1);
    transform: translateY(-2px);
}

/* Subpage Hero Styles */
.subpage-hero {
    background: var(--bg-primary);
    padding: 120px 0 80px;
    margin-top: 74px;
    text-align: center;
}

.subpage-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.subpage-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Patents Page Styles */
.patents-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 0 80px;
    margin-top: 74px;
    position: relative;
    overflow: hidden;
}

.patents-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(68, 113, 205, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(136, 76, 229, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.patents-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4471CD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(68, 113, 205, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4471CD;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.patent-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
}

.patent-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.patent-card:hover {
    background: none;
    border: none;
    transform: none;
}

.patent-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #4471CD;
}

.patent-card .card-icon img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(199deg) brightness(118%) contrast(119%);
}

.patent-card .card-title {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Executive Summary Section */
.patents-summary-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(68, 113, 205, 0.3);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-header .card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #4471CD;
}

.card-header .card-icon img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(199deg) brightness(118%) contrast(119%);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.summary-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Patents Table Section */
.patents-table-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.patents-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.patents-table th {
    background: rgba(68, 113, 205, 0.1);
    color: var(--text-primary);
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.patents-table td {
    padding: 20px 24px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    vertical-align: top;
}

.patents-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.patents-table a {
    color: #4471CD;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.patents-table a:hover {
    color: #5a8ae8;
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.granted {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.allowed {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Patent Cards Section */
.patent-cards-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* Patent Portfolio Cards - Restore styling for portfolio section */
.patent-cards-section .patent-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.patent-cards-section .patent-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(68, 113, 205, 0.3);
    transform: translateY(-4px);
}

.patent-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.patent-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 30px;
    transition: all 0.3s ease;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.patent-card:hover {
    background: none;
    border: none;
    transform: none;
}

.patent-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}

.patent-chip-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(68, 113, 205, 0.1);
    color: #4471CD;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(68, 113, 205, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 8px;
}

.patent-status {
    margin-bottom: 8px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.granted {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.allowed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.patent-dates {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    text-align: left;
}

.date-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: left;
}

.patent-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.patent-number {
    font-size: 0.85rem;
    color: #4471CD;
    font-weight: 600;
    background: rgba(68, 113, 205, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(68, 113, 205, 0.2);
}

.patent-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.patent-description {
    flex-grow: 1;
}

.patent-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: left;
}

.expandable-section {
    margin-top: 16px;
}

.expand-btn {
    background: none;
    border: none;
    color: #4471CD;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.expand-btn:hover {
    color: #5a8cff;
}

.expand-btn::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.expand-btn.expanded::after {
    transform: rotate(90deg);
}

.expandable-content {
    display: none;
    margin-top: 16px;
}

.expandable-content.active {
    display: block;
}

.expandable-content h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: left;
}

.expandable-content ol,
.expandable-content ul {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.expandable-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.patent-footer {
    margin-top: auto;
}

.patent-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(68, 113, 205, 0.1);
    color: #4471CD;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(68, 113, 205, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
}

.patent-link {
    color: #4471CD;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.patent-link:hover {
    color: #5a8cff;
    transform: scale(1.1);
}



/* Licensing Section */
.licensing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.licensing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.licensing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(68, 113, 205, 0.3);
    transform: translateY(-4px);
}

.licensing-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4471CD;
}

.licensing-card .card-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(199deg) brightness(118%) contrast(119%);
}

.licensing-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.licensing-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.licensing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.licensing-card li {
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.licensing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.contact-info {
    text-align: left;
    margin-top: 20px;
}

.contact-info p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .patents-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .patent-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .summary-grid,
    .patent-showcase,
    .licensing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .patents-table th,
    .patents-table td {
        padding: 16px 20px;
        font-size: 0.85rem;
    }
    
    .patent-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .patent-card {
        height: auto;
        min-height: 280px;
    }
    
    .patent-card-title {
        font-size: 1.1rem;
    }
    
    .patent-dates {
        gap: 3px;
    }
    
    .date-text {
        font-size: 0.8rem;
    }
    
    .expand-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .patent-chip {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .patents-hero {
        padding: 100px 0 60px;
    }
    
    .patents-summary-section,
    .patents-table-section,
    .featured-patents-section,
    .licensing-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .summary-card,
    .patent-item,
    .licensing-card {
        padding: 20px;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Hero Section */
.herobanner {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    background: var(--bg-primary);
    position: relative;
    margin-top: 120px; /* Account for fixed navbar */
}

.about-spektrum {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 100px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-chip {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.hero-chip a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(68, 113, 205, 0.1);
    border: 1px solid rgba(68, 113, 205, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-chip a:hover {
    background: rgba(68, 113, 205, 0.2);
    border-color: rgba(68, 113, 205, 0.5);
    transform: translateY(-2px);
}

.about-spektrum h1 {
    font-size: clamp(1.4rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    letter-spacing: -0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.about-spektrum h1 span {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-spektrum h1 span.underlined {
    position: relative;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
}

.about-spektrum h1 span.underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 2px;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue)) 1;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.5;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-wrap: break-word;
    white-space: normal;
}

.hero-subtitle span {
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.typed-text-container {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.typed-text {
    font-weight: 500;
    background: linear-gradient(135deg, rgba(136, 76, 229, 1), rgba(116, 96, 239, 1), rgba(96, 116, 249, 1), rgba(76, 136, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Hide only the cursor */
.typing-cursor {
    display: none !important;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
    flex-wrap: wrap;
}

.sparkle-button {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sparkle-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(136, 76, 229, 0.4);
}

.sparkle-button .text {
    position: relative;
    z-index: 2;
}

.sparkle-button .sparkle {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(68, 113, 205, 0.4);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-secondary:hover {
    border-color: var(--color-enterprises);
    background: rgba(68, 113, 205, 0.1);
    transform: translateY(-2px);
}

/* Logo Scroller - Improved System */
.logo-scroller {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-lg);
}

.logo-scroller::before,
.logo-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-scroller::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.logo-scroller::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.logo-track {
    display: flex;
    animation: logoScroll 30s linear infinite;
    gap: var(--logo-spacing, var(--spacing-4xl));
    width: fit-content;
    will-change: transform;
}

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

.scroll-logo {
    flex-shrink: 0;
    height: var(--logo-height, 40px);
    width: var(--logo-width, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-logo:hover {
    opacity: 1;
}

.scroll-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Logo Size Utility Classes */
.scroll-logo.size-xs {
    --logo-height: 30px;
    --logo-width: 135px;
}

.scroll-logo.size-sm {
    --logo-height: 35px;
    --logo-width: 157px;
}

.scroll-logo.size-md {
    --logo-height: 40px;
    --logo-width: 180px;
}

.scroll-logo.size-lg {
    --logo-height: 45px;
    --logo-width: 202px;
}

.scroll-logo.size-xl {
    --logo-height: 50px;
    --logo-width: 225px;
}

.scroll-logo.size-2xl {
    --logo-height: 55px;
    --logo-width: 247px;
}

/* Logo Scale Utility Classes */
.scroll-logo.scale-75 {
    transform: scale(0.75);
}

.scroll-logo.scale-90 {
    transform: scale(0.9);
}

.scroll-logo.scale-100 {
    transform: scale(1);
}

.scroll-logo.scale-110 {
    transform: scale(1.1);
}

.scroll-logo.scale-120 {
    transform: scale(1.2);
}

.scroll-logo.scale-130 {
    transform: scale(1.3);
}

.scroll-logo.scale-140 {
    transform: scale(1.4);
}

.scroll-logo.scale-150 {
    transform: scale(1.5);
}

/* Specific Logo Adjustments - Using New System */
.scroll-logo img[alt="CrowdStrike"] {
    max-height: 140%;
    transform: scale(1.4);
}

.scroll-logo img[alt="Old Republic Insurance"] {
    max-height: 120%;
    transform: scale(1.2);
}

/* Spacing Utility Classes */
.logo-scroller.spacing-tight {
    --logo-spacing: var(--spacing-lg);
}

.logo-scroller.spacing-normal {
    --logo-spacing: var(--spacing-4xl);
}

.logo-scroller.spacing-wide {
    --logo-spacing: var(--spacing-5xl);
}

.logo-scroller.spacing-extra-wide {
    --logo-spacing: var(--spacing-6xl);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .logo-scroller {
        margin-top: 24px;
        padding: 24px 0;
        --logo-spacing: var(--spacing-lg);
    }
    
    .scroll-logo {
        --logo-height: 32px;
        --logo-width: 144px;
    }
    
    .scroll-logo.size-xs {
        --logo-height: 24px;
        --logo-width: 108px;
    }
    
    .scroll-logo.size-sm {
        --logo-height: 28px;
        --logo-width: 126px;
    }
    
    .scroll-logo.size-md {
        --logo-height: 32px;
        --logo-width: 144px;
    }
    
    .scroll-logo.size-lg {
        --logo-height: 36px;
        --logo-width: 162px;
    }
    
    .scroll-logo.size-xl {
        --logo-height: 40px;
        --logo-width: 180px;
    }
    
    .scroll-logo.size-2xl {
        --logo-height: 44px;
        --logo-width: 198px;
    }
}

@media (max-width: 480px) {
    .logo-scroller {
        --logo-spacing: var(--spacing-md);
    }
    
    .scroll-logo {
        --logo-height: 28px;
        --logo-width: 126px;
    }
    
    .scroll-logo.size-xs {
        --logo-height: 20px;
        --logo-width: 90px;
    }
    
    .scroll-logo.size-sm {
        --logo-height: 24px;
        --logo-width: 108px;
    }
    
    .scroll-logo.size-md {
        --logo-height: 28px;
        --logo-width: 126px;
    }
    
    .scroll-logo.size-lg {
        --logo-height: 32px;
        --logo-width: 144px;
    }
    
    .scroll-logo.size-xl {
        --logo-height: 36px;
        --logo-width: 162px;
    }
    
    .scroll-logo.size-2xl {
        --logo-height: 40px;
        --logo-width: 180px;
    }
}

/* Section Titles */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

.section-title span {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Get to Green Section - Modern Accordion */
.get-to-green-section {
    padding: 100px 0 80px;
    background: var(--bg-primary);
    position: relative;
}

.get-to-green-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}





/* Progress Flow */
.progress-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.progress-step {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-step:not(:last-child) .progress-line {
    position: absolute;
    top: 50%;
    left: 54px;
    width: 52px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.progress-step.active:not(:last-child) .progress-line {
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-blue));
}

.progress-number {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(25, 23, 37, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.progress-step.active .progress-number {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    border-color: transparent;
    color: white;
}

.progress-step:hover .progress-number {
    border-color: rgba(136, 76, 229, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

/* Resilience Stages */
.resilience-stages {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stage-card {
    background: rgba(25, 23, 37, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-2xl);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stage-card:hover {
    border-color: rgba(136, 76, 229, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stage-card.active {
    border-color: rgba(136, 76, 229, 0.4);
    background: rgba(25, 23, 37, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stage-header {
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(25, 23, 37, 0.9), rgba(15, 20, 32, 0.8));
}

.stage-header:hover {
    background: linear-gradient(135deg, rgba(136, 76, 229, 0.08), rgba(50, 116, 216, 0.05));
}

.stage-card.active .stage-header {
    background: linear-gradient(135deg, rgba(136, 76, 229, 0.12), rgba(50, 116, 216, 0.08));
}

.stage-info {
    flex: 1;
    min-width: 0;
}

.stage-info h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.stage-tagline {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.stage-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background: rgba(136, 76, 229, 0.1);
    border: 1px solid rgba(136, 76, 229, 0.2);
}

.stage-header:hover .stage-toggle {
    background: rgba(136, 76, 229, 0.15);
    border-color: rgba(136, 76, 229, 0.3);
    transform: scale(1.05);
}

.toggle-line {
    position: absolute;
    width: 14px;
    height: 2px;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-line:first-child {
    transform: rotate(0deg);
}

.toggle-line:last-child {
    transform: rotate(90deg);
}

.stage-card.active .toggle-line:first-child {
    transform: rotate(45deg);
}

.stage-card.active .toggle-line:last-child {
    transform: rotate(-45deg);
}

.stage-card.active .stage-toggle {
    background: rgba(136, 76, 229, 0.2);
    border-color: rgba(136, 76, 229, 0.4);
}

.stage-content {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(136, 76, 229, 0.03);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-card.active .stage-content {
    max-height: 800px;
    padding: var(--spacing-xl);
    opacity: 1;
}

.stage-description {
    margin-bottom: var(--spacing-xl);
}

.stage-description p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.capability-item {
    background: rgba(25, 23, 37, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-color: rgba(136, 76, 229, 0.4);
    transform: translateY(-2px);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.capability-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    flex-shrink: 0;
}

.capability-header h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.capability-item p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Core Challenges Section */
.core-challenges-section {
    padding: 100px 0 80px;
    background: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: 80px;
}

.challenge-card {
    background: rgba(25, 23, 37, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(136, 76, 229, 0.4);
    box-shadow: var(--shadow-xl);
}

.challenge-content h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.challenge-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-section .section-title {
    margin-bottom: var(--spacing-md);
}

.pricing-section > .container > p {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(25, 23, 37, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Individual hover outline effects for each card */
.pricing-card:nth-child(1):hover {
    border-color: #ff6b35;
}

.pricing-card:nth-child(2):hover {
    border-color: #ff6b9d;
}

.pricing-card:nth-child(3):hover {
    border-color: var(--gradient-purple);
}

.pricing-card:nth-child(4):hover {
    border-color: var(--gradient-blue);
}

.pricing-header {
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.pricing-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-align: left;
    background: linear-gradient(135deg, var(--gradient-red), var(--gradient-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Individual gradient colors for each plan */
.pricing-card:nth-child(1) .pricing-header h3 {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(2) .pricing-header h3 {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(3) .pricing-header h3 {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(4) .pricing-header h3 {
    background: linear-gradient(135deg, var(--gradient-blue), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    text-align: left;
    height: 60px;
    overflow: hidden;
}

.pricing-price {
    margin-bottom: var(--spacing-xl);
    text-align: left;
    line-height: 1;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    vertical-align: baseline;
}

.price-period {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    vertical-align: baseline;
}

.pricing-features {
    margin-bottom: var(--spacing-xl);
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.feature-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6B7280;
    margin-right: var(--spacing-sm);
    position: relative;
    flex-shrink: 0;
}

.feature-check::after {
    content: '✓';
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-name {
    color: var(--text-secondary);
}

.pricing-cta {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 76, 229, 0.3);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: var(--font-size-sm);
    margin-top: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-cta:hover {
    /* No transform on hover */
}

.pricing-notes {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.pricing-notes p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

/* Individual button hover gradients for each card */
.pricing-card:nth-child(1) .pricing-cta:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-color: transparent;
    color: white;
}

.pricing-card:nth-child(2) .pricing-cta:hover {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-color: transparent;
    color: white;
}

.pricing-card:nth-child(3) .pricing-cta:hover {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    border-color: transparent;
    color: white;
}

.pricing-card:nth-child(4) .pricing-cta:hover {
    background: linear-gradient(135deg, var(--gradient-blue), #00d4ff);
    border-color: transparent;
    color: white;
}

/* Blog Cards Section */
.blog-cards-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.blog-cards-section .section-title {
    margin-bottom: var(--spacing-md);
}

.blog-cards-section > .container > p {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(25, 23, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 200px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Visual Section - Takes up 40% of card height to match Torq.io */
.blog-card-visual {
    height: 40%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.visual-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.visual-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Manifesto Card Visual */
.manifesto-card .blog-card-visual {
    background: linear-gradient(135deg, #1a0a2e, #16213e, #0f3460);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 150, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%);
}

/* Revolution Card Visual */
.revolution-card .blog-card-visual {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
}

/* Study Card Visual */
.study-card .blog-card-visual {
    background: linear-gradient(135deg, #2d1b69, #11998e, #38ef7d);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(154, 50, 216, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(56, 239, 125, 0.3) 0%, transparent 50%);
}

/* Content Section - Takes up 100% of card height */
.blog-card-content {
    height: 100%;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    width: fit-content;
}

.manifesto-tag {
    background: white;
    color: black;
    border: none;
}

.blog-tag.blog-tag {
    background: white;
    color: black;
    border: none;
}

.whitepaper-tag {
    background: white;
    color: black;
    border: none;
}

.blog-card-title {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    flex-grow: 1;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    width: fit-content;
}

.blog-cta-btn:hover {
    border: none;
    background: transparent;
    transform: translateY(-1px);
}

.blog-cta-btn .arrow {
    font-size: var(--font-size-base);
    transition: transform 0.3s ease;
}

.blog-cta-btn:hover .arrow {
    transform: translateX(4px);
}

/* Individual card hover effects */
.manifesto-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.revolution-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.study-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonials-section .section-title {
    margin-bottom: var(--spacing-md);
}

.testimonials-section > .container > p {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(25, 23, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-content {
    height: 100%;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-background {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.audience-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    width: fit-content;
    z-index: 2;
    position: relative;
    background: transparent;
    border: 1px solid;
}

.broker-tag {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.insurer-tag {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.enterprise-tag {
    border-color: #3b82f6;
    color: #3b82f6;
}

.vendor-tag {
    border-color: #14b8a6;
    color: #14b8a6;
}

.breach-tag {
    border-color: #ec4899;
    color: #ec4899;
}

.testimonial-text {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: white;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.author-title {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.view-testimonial-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    width: fit-content;
}

.view-testimonial-btn:hover {
    border: none;
    background: transparent;
    transform: translateY(-1px);
}

.view-testimonial-btn .arrow {
    font-size: var(--font-size-base);
    transition: transform 0.3s ease;
}

.view-testimonial-btn:hover .arrow {
    transform: translateX(4px);
}

/* Individual testimonial card hover effects */
.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .testimonial-card {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .testimonial-card {
        height: 280px;
    }
}

/* FAQ Section */
.faq {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-primary);
}

.faq .container > p {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(25, 23, 37, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(68, 113, 205, 0.4);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background: rgba(25, 23, 37, 0.8);
}

.faq-question:hover {
    background: rgba(68, 113, 205, 0.05);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    background: rgba(15, 13, 25, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
}

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

.faq-answer-content {
    padding: var(--spacing-lg);
    transform: translateY(-20px);
    transition: transform 0.4s ease 0.1s;
}

.faq-item.active .faq-answer-content {
    transform: translateY(0);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}


/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand .logo img {
    height: 32px;
    margin-bottom: var(--spacing-lg);
}

.about-policy p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    line-height: 2;
    transition: color 0.3s ease;
    display: block;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-primary);
}

/* Mobile-First Responsive Design - Completely Rewritten */

/* Mobile Base Styles */
@media (max-width: 768px) {
    /* Reset everything to force proper mobile layout */
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Override any fixed widths from desktop CSS */
    .about-spektrum .text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .herobanner {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0;
        margin-top: 120px;
    }
    
    .about-spektrum {
        width: 100%;
        max-width: 100%;
        padding: 40px 0 80px;
        margin: 0;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin: 0 auto;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Typography - Simple and Direct */
    .about-spektrum .text h1,
    .about-spektrum h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin: 0 0 20px 0;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 0 0 30px 0;
        padding: 0;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        text-align: center;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        padding: 8px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 48px;
    }

    .sparkle-button,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
        text-align: center;
    }

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

    .core-challenges-section,
    .pricing-section,
    .faq {
        padding: 64px 0;
    }

    .challenge-card,
    .pricing-card {
        padding: 24px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .logo-scroller {
        margin-top: 24px;
        padding: 24px 0;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-menu {
        width: 100%;
        right: 0;
        left: 0;
    }
    
    /* Blog Cards Mobile Responsiveness */
    .blog-cards-section {
        padding: 64px 0;
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        max-width: 100%;
    }
    
    .blog-card {
        height: auto !important;
        min-height: 200px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .blog-card-content {
        padding: 20px !important;
    }
    
    .blog-card-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .blog-tag {
        font-size: 10px !important;
        padding: 4px 8px;
        margin-bottom: 12px;
    }
    
    .blog-cta-btn {
        font-size: 14px !important;
        margin-top: auto;
    }

    /* Accordion Mobile Styles */
    .get-to-green-section {
        padding: 60px 0 40px;
    }

    .progress-flow {
        gap: 30px;
        margin-bottom: 40px;
    }

    .progress-step:not(:last-child) .progress-line {
        width: 24px;
        left: 44px;
    }

    .progress-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
    }

    .stage-header {
        padding: var(--spacing-lg);
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .stage-info {
        flex: 1;
        width: 100%;
    }

    .stage-info h3 {
        font-size: var(--font-size-xl);
    }

    .stage-tagline {
        font-size: var(--font-size-sm);
    }

    .stage-toggle {
        position: absolute;
        top: var(--spacing-lg);
        right: var(--spacing-lg);
    }

    .stage-content {
        padding: 0;
    }

    .stage-card.active .stage-content {
        padding: var(--spacing-lg);
    }

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

    .capability-item {
        padding: var(--spacing-md);
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 12px;
    }

    .about-spektrum .text h1,
    .about-spektrum h1 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        margin-bottom: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 12px;
    }

    .cta-buttons {
        max-width: 300px;
        gap: 12px;
    }

    .sparkle-button,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 12px;
        min-height: 48px;
    }

    .section-title {
        font-size: 20px;
        padding: 0 12px;
    }

    .hero-chip a {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Blog Cards for smaller screens */
    .blog-card {
        min-height: 180px;
    }
    
    .blog-card-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px;
    }
    
    .blog-tag {
        font-size: 9px !important;
        padding: 3px 6px;
        margin-bottom: 10px;
    }
    
    .blog-cta-btn {
        font-size: 12px !important;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-content {
        padding: 0 8px;
    }
    
    .about-spektrum .text h1,
    .about-spektrum h1 {
        font-size: 20px !important;
        line-height: 1.1 !important;
        margin-bottom: 12px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px;
    }

    .container {
        padding: 0 8px;
    }
    
    /* Blog Cards for very small screens */
    .blog-card {
        min-height: 160px;
    }
    
    .blog-card-content {
        padding: 16px !important;
    }
    
    .blog-card-title {
        font-size: 13px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px;
    }
    
    .blog-tag {
        font-size: 8px !important;
        padding: 2px 5px;
        margin-bottom: 8px;
    }
    
    .blog-cta-btn {
        font-size: 11px !important;
    }
}

/* Tablet and larger */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .challenges-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .hero-subtitle {
        max-width: 100%;
        font-size: var(--font-size-lg);
    }
    
    /* Blog Cards for tablet */
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-card {
        height: auto;
        min-height: 220px;
    }
    
    .blog-card-title {
        font-size: 15px;
        line-height: 1.3;
    }
}

/* Journey Cards Styling - Based on Blog Cards */
.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.journey-card {
    background: rgba(25, 23, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 200px;
    cursor: pointer;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.journey-card-content {
    height: 100%;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.journey-sponsor-tag {
    display: inline-block;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    width: fit-content;
    background: white;
    color: black;
    border: none;
}

.journey-card-title {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    flex-grow: 1;
}

.journey-card-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.journey-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    width: fit-content;
}

.journey-cta-btn:hover {
    border: none;
    background: transparent;
    transform: translateY(-1px);
}

.journey-cta-btn .arrow {
    font-size: var(--font-size-base);
    transition: transform 0.3s ease;
}

.journey-cta-btn:hover .arrow {
    transform: translateX(4px);
}

/* Individual journey card gradient effects */
.journey-card[data-journey="claims-defense"]:hover {
    border-color: rgba(239, 68, 68, 0.6);
}

.journey-card[data-journey="core-foundations"]:hover {
    border-color: rgba(136, 76, 229, 0.6);
}

.journey-card[data-journey="benchmarking"]:hover {
    border-color: rgba(245, 158, 11, 0.6);
}

.journey-card[data-journey="insurability"]:hover {
    border-color: rgba(16, 185, 129, 0.6);
}

.journey-card[data-journey="mdr-renewal"]:hover {
    border-color: rgba(147, 51, 234, 0.6);
}

.journey-card[data-journey="cyber-insurability"]:hover {
    border-color: rgba(59, 130, 246, 0.6);
}

/* Journey Modal Styling */
.journey-modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(136, 76, 229, 0.3);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    max-width: 4800px !important;
    width: 95vw !important;
    max-height: 50vh;
    overflow-y: auto;
    position: relative;
}

/* Override the parent modal-content constraint */
.modal .journey-modal-content {
    max-width: 4800px !important;
    width: 95vw !important;
}

.journey-modal-content h2 {
    color: var(--text-primary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-modal-content > p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* Responsive for Journey Cards and Modal */
@media (max-width: 768px) {
    .journey-modal-content {
        padding: var(--spacing-lg);
        width: 98%;
    }
    
    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .journey-card {
        height: 200px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .journey-card-content {
        padding: var(--spacing-md);
    }
    
    .journey-card-title {
        font-size: var(--font-size-base);
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
    }
    
    .journey-card-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .journey-sponsor-tag {
        font-size: 9px;
        padding: 3px 6px;
        margin-bottom: var(--spacing-md);
    }
    
    .journey-cta-btn {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .journey-modal-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .journey-modal-content > p {
        font-size: var(--font-size-base);
    }
    
    .journey-card {
        height: 180px;
    }
    
    .journey-card-content {
        padding: var(--spacing-sm);
    }
    
    .journey-card-title {
        font-size: var(--font-size-sm);
        line-height: 1.3;
        margin-bottom: var(--spacing-xs);
    }
    
    .journey-card-description {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .journey-sponsor-tag {
        font-size: 7px;
        padding: 2px 4px;
        margin-bottom: var(--spacing-sm);
    }
    
    .journey-cta-btn {
        font-size: var(--font-size-xs);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Final CTA Section */
.final-cta {
    background: var(--bg-primary);
    padding: var(--spacing-4xl) 0;
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
}

.final-cta .action-btn {
    display: flex;
    align-items: center;
}

.final-cta .sparkle-button,
.final-cta .btn-secondary {
    height: 60px;
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-top: 0 !important;
}

/* Responsive for Final CTA */
@media (max-width: 768px) {
    .final-cta .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .final-cta .sparkle-button,
    .final-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* How We Deliver Value Section */
.value-delivery-section {
    background: var(--bg-primary);
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.value-delivery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.value-delivery-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.value-delivery-section .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-propositions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.value-prop {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 var(--spacing-lg) 0;
    transition: border-color 0.2s ease;
    position: relative;
}

.value-prop:hover {
    border-bottom-color: rgba(136, 76, 229, 0.4);
}

.value-prop.featured {
    border-bottom-color: rgba(136, 76, 229, 0.3);
}

.value-prop-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.value-prop-benefit {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Value Delivery Section */
@media (max-width: 1200px) {
    .value-propositions {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .value-delivery-section .container {
        padding: 0 var(--spacing-md);
    }
    
    .value-propositions {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .value-prop {
        padding-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .value-delivery-section .container {
        padding: 0 var(--spacing-sm);
    }
    
    .value-propositions {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .value-prop-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .value-prop-benefit {
        font-size: var(--font-size-xs);
    }
}

/* Spektrum Resilience Suite Section */
.resilience-suite-section {
    background: var(--bg-primary);
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.resilience-suite-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.suite-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: center;
}

.suite-content {
    width: 100%;
    max-width: 1200px;
}

.suite-carousel {
    width: 100%;
    max-width: 1000px;
}



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

.suite-content .section-title {
    text-align: center;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.suite-content .section-subtitle {
    line-height: 1.6;
    font-size: var(--font-size-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Styling */
.suite-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.suite-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 24px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

/* CodePen Card CSS Variables */
.resilience-suite-section {
    --card-background-color: rgba(255, 255, 255, .015);
    --card-border-color: rgba(255, 255, 255, 0.1);
    --card-box-shadow-1: rgba(0, 0, 0, 0.05);
    --card-box-shadow-1-y: 3px;
    --card-box-shadow-1-blur: 6px;
    --card-box-shadow-2: rgba(0, 0, 0, 0.1);
    --card-box-shadow-2-y: 8px;
    --card-box-shadow-2-blur: 15px;
    --card-label-color: #FFFFFF;
    --card-icon-color: #D4D4D8;
    --card-icon-background-color: rgba(255, 255, 255, 0.08);
    --card-icon-border-color: rgba(255, 255, 255, 0.12);
    --card-shine-opacity: .1;
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
    --card-line-color: #2A2B2C;
    --card-tile-color: rgba(16, 185, 129, 0.05);
    --card-hover-border-color: rgba(255, 255, 255, 0.2);
    --card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
    --card-hover-box-shadow-1-y: 5px;
    --card-hover-box-shadow-1-blur: 10px;
    --card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
    --card-hover-box-shadow-2-y: 15px;
    --card-hover-box-shadow-2-blur: 25px;
    --card-hover-icon-color: #34D399;
    --card-hover-icon-background-color: rgba(52, 211, 153, 0.1);
    --card-hover-icon-border-color: rgba(52, 211, 153, 0.2);
    --text-color: #A1A1AA;
}

/* CodePen Card Styling */
.suite-cards-grid .card {
    background-color: var(--bg-primary);
    box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1), 0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2), 0 0 0 1px var(--card-border-color);
    padding: 40px 16px 16px 16px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: box-shadow .25s;
}

.suite-cards-grid .card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background-color: var(--card-background-color);
}

.suite-cards-grid .card .icon {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    transition: transform 0.25s ease;
}



.suite-cards-grid .card .icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    transform: translateZ(0);
    transition: filter .25s;
    filter: brightness(0) invert(1);
}

.suite-cards-grid .card h4 {
    z-index: 2;
    position: relative;
    margin: 8px 0 4px 0;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--card-label-color);
}

.suite-cards-grid .card p {
    z-index: 2;
    position: relative;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
}

.suite-cards-grid .card .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s;
}

.suite-cards-grid .card .shine:before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: var(--card-shine-opacity);
    transform: translateX(-50%);
    background-image: var(--card-shine-gradient);
}

.suite-cards-grid .card .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.suite-cards-grid .card .background .tiles {
    opacity: 0;
    transition: opacity .25s;
}

.suite-cards-grid .card .background .tiles .tile {
    position: absolute;
    background-color: var(--card-tile-color);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.suite-cards-grid .card .background .tiles .tile.tile-4,
.suite-cards-grid .card .background .tiles .tile.tile-6,
.suite-cards-grid .card .background .tiles .tile.tile-10 {
    animation-delay: -2s;
}

.suite-cards-grid .card .background .tiles .tile.tile-3,
.suite-cards-grid .card .background .tiles .tile.tile-5,
.suite-cards-grid .card .background .tiles .tile.tile-8 {
    animation-delay: -4s;
}

.suite-cards-grid .card .background .tiles .tile.tile-2,
.suite-cards-grid .card .background .tiles .tile.tile-9 {
    animation-delay: -6s;
}

.suite-cards-grid .card .background .tiles .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.suite-cards-grid .card .background .tiles .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

@keyframes tile {
    0%, 12.5%, 100% {
        opacity: 1;
    }
    25%, 82.5% {
        opacity: 0;
    }
}

.suite-cards-grid .card .background .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s;
}

.suite-cards-grid .card .background .line:before,
.suite-cards-grid .card .background .line:after {
    content: '';
    position: absolute;
    background-color: var(--card-line-color);
    transition: transform .35s;
}

.suite-cards-grid .card .background .line:before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.suite-cards-grid .card .background .line:after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.suite-cards-grid .card .background .line.line-1:before {
    top: 10%;
}

.suite-cards-grid .card .background .line.line-1:after {
    left: 22.5%;
}

.suite-cards-grid .card .background .line.line-1:before,
.suite-cards-grid .card .background .line.line-1:after {
    transition-delay: .3s;
}

.suite-cards-grid .card .background .line.line-2:before {
    top: 32.5%;
}

.suite-cards-grid .card .background .line.line-2:after {
    left: 50%;
}

.suite-cards-grid .card .background .line.line-2:before,
.suite-cards-grid .card .background .line.line-2:after {
    transition-delay: .15s;
}

.suite-cards-grid .card .background .line.line-3:before {
    top: 55%;
}

.suite-cards-grid .card .background .line.line-3:after {
    right: 22.5%;
}

/* Hover Effects */
.suite-cards-grid .card:hover {
    box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);
}



.suite-cards-grid .card:hover .icon {
    transform: scale(1.05);
}

.suite-cards-grid .card:hover .icon img {
    filter: brightness(1.1);
}

.suite-cards-grid .card:hover .shine {
    opacity: 1;
    transition-duration: .5s;
    transition-delay: 0s;
}

.suite-cards-grid .card:hover .background .tiles {
    opacity: 1;
    transition-delay: .25s;
}

.suite-cards-grid .card:hover .background .tiles .tile {
    animation-name: tile;
}

.suite-cards-grid .card:hover .background .line {
    opacity: 1;
    transition-duration: .15s;
}

.suite-cards-grid .card:hover .background .line:before {
    transform: scaleX(1);
}

.suite-cards-grid .card:hover .background .line:after {
    transform: scaleY(1);
}

.suite-cards-grid .card:hover .background .line.line-1:before,
.suite-cards-grid .card:hover .background .line.line-1:after {
    transition-delay: .0s;
}

.suite-cards-grid .card:hover .background .line.line-2:before,
.suite-cards-grid .card:hover .background .line.line-2:after {
    transition-delay: .15s;
}

.suite-cards-grid .card:hover .background .line.line-3:before,
.suite-cards-grid .card:hover .background .line.line-3:after {
    transition-delay: .3s;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.carousel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Resilience Suite */
@media (max-width: 1024px) {
    .suite-layout {
        gap: var(--spacing-xl);
    }
    
    .suite-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .suite-content .section-header {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .suite-content .section-title {
        text-align: center;
    }
    
    .suite-cards-grid {
        grid-template-columns: repeat(2, 180px);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .resilience-suite-section .container {
        padding: 0 var(--spacing-md);
    }
    
    .suite-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .suite-cards-grid .card {
        width: 100%;
        max-width: 240px;
    }
    
    .suite-cards-grid .card h4 {
        font-size: 13px !important;
    }
    
    .suite-cards-grid .card p {
        font-size: 13px;
    }
    
    .carousel-navigation {
        margin-top: var(--spacing-lg);
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .resilience-suite-section .container {
        padding: 0 var(--spacing-sm);
    }
    
    .suite-cards-grid .card {
        padding: 36px 14px 14px 14px;
    }
    
    .suite-cards-grid .card h4 {
        font-size: 12px !important;
    }
    
    .suite-cards-grid .card p {
        font-size: 12px;
    }
}

/* Venn Diagram Section */
.venn-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.venn-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-4xl);
}

.venn-diagram {
    flex: 1;
    max-width: 600px;
}

.venn-content {
    flex: 1;
    max-width: 600px;
}

.venn-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.venn-content .section-subtitle {
    text-align: left;
    margin-bottom: var(--spacing-2xl);
}

/* Venn Diagram Styles */
.circle-group {
    position: relative;
    margin: 0 auto;
    height: var(--size);
    width: var(--size);
}

.circle-group .logo {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: 80%;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.circle {
    border-radius: 100%;
    color: var(--white);
    display: inline-block;
    overflow: hidden;
    padding: 50px;
    position: absolute;
    height: var(--size);
    text-align: center;
    width: var(--size);
}

.circle-group .blue {
    composes: circle;
    background: var(--blue);
    mix-blend-mode: multiply;
    top: 0;
    text-align: center;
}

.circle-group .green {
    composes: circle;
    background: var(--green);
    mix-blend-mode: multiply;
    right: 30%;
    top: 45%;
}

.circle-group .green span {
    position: absolute;
    bottom: 25%;
    left: 20%;
}

.circle-group .pink {
    composes: circle;
    background: var(--pink);
    mix-blend-mode: multiply;
    top: 45%;
    left: 30%;
}

.circle-group .pink span {
    position: absolute;
    bottom: 25%;
    right: 20%;
}

@media (max-width: 1024px) {
    .venn-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .venn-content .section-title,
    .venn-content .section-subtitle {
        text-align: center;
    }

    .venn-diagram {
        margin-bottom: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    .circle-group {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .circle-group {
        transform: scale(0.6);
    }
}

/* Requirements Cards Section */
.requirements-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.requirement-card {
    background: rgba(25, 23, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
}

.requirement-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.requirement-number {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.requirement-title {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
}

.key-requirements {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.key-requirement {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.kr-tag {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 4px 8px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.kr-tag.active {
    background: rgba(216, 50, 68, 0.2);
    color: rgb(216, 50, 68);
}

.kr-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

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

/* Highlight text animations */
@keyframes highlightText {
    0% {
        background-position: 0 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: inherit;
    }
    10% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
        color: #000000;
    }
    20% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    91.66% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(255, 0, 0, 0.75) 50%);
        color: inherit;
    }
    91.67%, 100% {
        background-position: -100% 0;
        background-image: linear-gradient(to right, transparent 50%, rgba(0, 255, 0, 0.75) 50%);
        color: inherit;
    }
}

/* Base styles for all highlight text */
.highlight-text,
.highlight-text-2,
.highlight-text-3 {
    position: relative;
    display: inline;
    font-weight: 400 !important;
    color: inherit;
    font-size: inherit !important;
    line-height: inherit;
    font-family: inherit;
    background: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.75) 50%);
    background-size: 200% 100%;
    background-position: 0 0;
}

/* Animation timing only */
.highlight-text {
    animation: highlightText1 6s forwards;
    animation-delay: 2s;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.highlight-text-2 {
    animation: highlightText2 6s forwards;
    animation-delay: 7s;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.highlight-text-3 {
    animation: highlightText3 6s forwards;
    animation-delay: 12s;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Remove any other highlight-text styles */
.platform-footer .highlight-text {
    /* Keep only specific overrides needed for footer */
    color: inherit;
}

/* Dot animations */
@keyframes dotAppearRed {
    0% {
        opacity: 0;
        background: transparent;
    }
    100% {
        opacity: 1;
        background: rgba(255, 0, 0, 0.75);
    }
}

@keyframes dotAppearGreen {
    0% {
        opacity: 0;
        background: transparent;
    }
    100% {
        opacity: 1;
        background: rgba(0, 255, 0, 0.75);
    }
}

/* Status dots container */
.status-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px auto;
}

/* Base dot styles */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: transparent;
    opacity: 0;
    animation: dotAppearRed 0.5s forwards;
}

/* First sequence dots */
.dot:nth-child(1) { animation-delay: 3.5s; }
.dot:nth-child(2) { animation-delay: 4.5s; }
.dot:nth-child(3) { 
    animation: dotAppearGreen 0.5s forwards;
    animation-delay: 5.5s; 
}

/* Second sequence dots */
.dot.second-sequence:nth-child(4) {
    animation: dotAppearRed 0.5s forwards;
    animation-delay: 8.5s;
}

.dot.second-sequence:nth-child(5) {
    animation: dotAppearRed 0.5s forwards;
    animation-delay: 9.5s;
}

.dot.second-sequence:nth-child(6) {
    animation: dotAppearGreen 0.5s forwards;
    animation-delay: 10.5s;
}

/* Third sequence dots */
.dot.third-sequence:nth-child(7) {
    animation: dotAppearRed 0.5s forwards;
    animation-delay: 13.5s;
}

.dot.third-sequence:nth-child(8) {
    animation: dotAppearRed 0.5s forwards;
    animation-delay: 14.5s;
}

.dot.third-sequence:nth-child(9) {
    animation: dotAppearGreen 0.5s forwards;
    animation-delay: 15.5s;
}

/* Checkmark animation */


/* Cursor test area */
.cursor-test-area {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    overflow: visible;
    vertical-align: middle;
}

.cfo-cursor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: absolute;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    animation: moveCursor 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    animation-delay: 0.5s;
    left: 120px;
    top: 15px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.cfo-cursor::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-45deg);
    z-index: -1;
}

@keyframes moveCursor {
    0% {
        opacity: 0;
        transform: translate(-200px, 0);
    }
    20% {
        opacity: 1;
        transform: translate(-100px, 0);
    }
    40%, 90% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
    max-width: 1200px;
    margin: 0 auto var(--spacing-4xl);
}

.feature-card {
    background: rgba(25, 23, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg);
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-content h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: white;
    margin: 0;
}

.feature-tags {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    color: black;
    border: none;
    width: fit-content;
}

.feature-tag.outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-content p {
    font-size: var(--font-size-base);
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    width: fit-content;
    margin-top: auto;
}

.feature-cta:hover {
    border: none;
    background: transparent;
    transform: translateY(-1px);
}

.feature-cta .arrow {
    font-size: var(--font-size-base);
    transition: transform 0.3s ease;
}

.feature-cta:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: var(--spacing-xl);
    }
    
    .feature-content h3 {
        font-size: var(--font-size-xl);
    }
    
    .feature-content p {
        font-size: var(--font-size-base);
    }
}

.unified-platform-section {
    text-align: center;
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

/* AI Onboarding Experience Styles */
.ai-onboarding-experience {
    max-width: 800px;
    margin: 48px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Icon Sequence */
.icon-sequence {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.icon-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icon-item .flow-icon {
    width: 48px;
    height: 48px;
    opacity: 0.3;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.icon-item.active .flow-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(638%) hue-rotate(130deg) brightness(101%) contrast(101%);
}

.icon-item.error .flow-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(0deg) brightness(104%) contrast(97%);
}

.icon-item.success .flow-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(638%) hue-rotate(130deg) brightness(101%) contrast(101%);
}

.icon-item.blue .flow-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(30%) sepia(60%) saturate(3000%) hue-rotate(245deg) brightness(120%) contrast(110%);
}

.icon-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.icon-item.active .icon-status {
    background: #00FF00;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.6);
    animation: pulse 2s infinite;
}

.icon-item.error .icon-status {
    background: #FF0000;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    animation: pulse 2s infinite;
}

.icon-item.success .icon-status {
    background: #00FF00;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.6);
}

.icon-item.blue .icon-status {
    background: #0066CC;
    box-shadow: 0 0 12px rgba(0, 102, 204, 0.6);
}



@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* AI Chat Container */
.ai-chat-container {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Simple Message Display */
.message-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px;
    top: -40px;
    margin-bottom: -40px;
}

.current-message {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    max-width: 80%;
    word-wrap: break-word;
}

/* Show all rows by default, let JavaScript handle visibility */
.chat-row {
    display: flex;
}

.chat-row {
    min-height: 20px;
    display: flex;
    align-items: flex-start;
    padding: 4px 0;
}

.chat-row.empty {
    opacity: 0.3;
}

.chat-row.user-row {
    justify-content: flex-end;
}

/* Ensure chatbot text is left-aligned */
.chat-row:not(.user-row) {
    justify-content: flex-start;
}

/* Message Types */
.chatbot-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    background: rgba(76, 29, 149, 0.3);
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(76, 29, 149, 0.5);
    max-width: 80%;
    word-wrap: break-word;
    text-align: left;
}

.chatbot-text.typing::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #00FF00;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    animation: blink 1s infinite;
}

.user-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    background: rgba(0, 255, 0, 0.2);
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.4);
    max-width: 80%;
    word-wrap: break-word;
    margin-left: auto;
    align-self: flex-end;
}

.tool-text {
    color: #E0E0E0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    background: rgba(128, 128, 128, 0.2);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.4);
}

.tool-text::before {
    content: '⚡ ';
    margin-right: 4px;
}

/* Input Area */
.input-area {
    margin-top: auto;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(30, 31, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    min-height: 48px;
}

.input-field {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    min-height: 24px;
    max-height: 100px;
    overflow-y: auto;
    resize: none;
    margin-left: 8px;
    text-align: left;
}

/* Remove placeholder text */
.input-field:empty::before {
    content: '';
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.typing-cursor {
    width: 2px;
    height: 16px;
    background: #00FF00;
    animation: blink 1s infinite;
    position: absolute;
    left: 16px;
    transition: left 0.1s ease;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Performance Tracking Dots */
.performance-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.perf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.perf-dot.active {
    background: #FF0000;
    animation: pulse 2s infinite;
}

.perf-dot.completed {
    background: #00FF00;
}

/* Generating Animation */
.generating {
    display: inline-block;
    position: relative;
}

.generating::after {
    content: 'Generating...';
    color: #00FF00;
    animation: generatingDots 2s infinite;
}

@keyframes generatingDots {
    0% { content: 'Generating.'; }
    33% { content: 'Generating..'; }
    66% { content: 'Generating...'; }
    100% { content: 'Generating.'; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-onboarding-experience {
        margin: 32px auto;
        gap: 24px;
    }
    
    .icon-sequence {
        gap: 20px;
    }
    
    .icon-item .flow-icon {
        width: 36px;
        height: 36px;
    }
    
    .ai-chat-container {
        padding: 16px;
        min-height: 40px;
    }
    
    .posturestream-section {
        margin-top: 20px;
    }
    
    .message-content {
        font-size: 13px;
        padding: 10px 12px;
    }
}



.journey-guide {
    position: relative;
    height: 120px;
    margin-top: -60px;
}

.guide-line {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.line-segment {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    position: relative;
}

.line-segment.with-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.guide-chip {
    margin: 10px 0;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    white-space: nowrap;
}

/* Adjust logo scroller margin */
.logo-scroller {
    margin-top: 40px;
}

.unified-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 48px 0;
}

.source-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.flow-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Turquoise for security and backup icons */
.flow-icon[alt="Security"],
.flow-icon[alt="Backup"] {
    filter: brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(638%) hue-rotate(130deg) brightness(101%) contrast(101%);
}

/* Purple for insurance icon */
.flow-icon[alt="Insurance"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(246deg) brightness(104%) contrast(97%);
}

.plus-sign {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
}

.flow-arrow {
    width: 2px;
    height: 48px;
    background: #fff;
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.token-icon {
    margin-bottom: 32px;
}

.token-icon .flow-icon {
    width: 48px;
    height: 48px;
}

/* Apply Spektrum gradient to token icon using CSS filters */
.token-icon-img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(60%) saturate(3000%) hue-rotate(245deg) brightness(120%) contrast(110%);
}

.journey-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 48px;
    flex-wrap: wrap;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 300px;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input input {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 100%;
    outline: none;
}

.search-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.category-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
}

.category-dropdown:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.category-dropdown span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.chevron-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.category-dropdown.active .chevron-icon {
    transform: rotate(180deg);
}

.category-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 21, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-top: 4px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.category-dropdown.active .category-options {
    display: block;
}

.category-option {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.category-option:first-child {
    border-radius: 8px 8px 0 0;
}

.category-option:last-child {
    border-radius: 0 0 8px 8px;
}

.category-tag {
    display: none !important;
}

.feature-card.hidden {
    display: none;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch input[type="checkbox"] {
    appearance: none;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked {
    background: rgba(255, 255, 255, 0.2);
}

.toggle-switch input[type="checkbox"]:checked::before {
    transform: translateX(20px);
    background: rgba(255, 255, 255, 0.8);
}

.toggle-switch label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

/* Status Ribbon */
.status-ribbon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    padding: 0 20px;
}

.status-box {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    flex-shrink: 0;
}

.status-box.red {
    background: #ff6b35;
}

.status-box.green {
    background: #00d4aa;
}

@media (max-width: 768px) {
    .status-ribbon {
        gap: 6px;
        margin: 30px 0;
    }
    
    .status-box {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .status-ribbon {
        gap: 4px;
        margin: 25px 0;
    }
    
    .status-box {
        width: 9px;
        height: 9px;
        border-radius: 4.5px;
    }
}

/* Three Cards Row */
.three-cards-row {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.three-cards-row .feature-card {
    min-width: 0;
}

@media (max-width: 1024px) {
    .three-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .three-cards-row {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 20px;
    }
}

/* Patent Categories Section */
.patent-categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.category-cards-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.patent-category-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(68, 113, 205, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.patent-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 113, 205, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 46, 0.9);
}



.category-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.category-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.category-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.category-info h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.patent-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    max-width: calc(100% - 88px);
    margin-left: 88px; /* Align with text content (64px icon + 24px gap) */
}

.patent-chip {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.patent-chip:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.3) 0%, rgba(0, 123, 255, 0.2) 100%);
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}

/* Category card patent chips - matching patent card styling */
.category-card .patent-chip {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.category-card .patent-chip:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.3) 0%, rgba(0, 123, 255, 0.2) 100%);
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Category Cards */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
    }
    
    .category-icon img {
        width: 24px;
        height: 24px;
    }
    
    .category-info h3 {
        font-size: 20px;
    }
    
    .category-info p {
        font-size: 14px;
    }
    
    .patent-chips {
        gap: 8px;
        margin-left: 0; /* Reset margin on mobile */
        max-width: 100%;
    }
    
    .patent-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Pulsing dot for PostureStream monitoring */
.pulsing-dot {
    display: inline-block;
    margin-left: 8px;
    width: 8px;
    height: 8px;
    position: relative;
}

.dot-inner {
    width: 100%;
    height: 100%;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* PostureStream Section */
.posturestream-section {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Safeguards Stream Styles */
.safeguards-collapsed {
    background: #0f1117;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.safeguards-collapsed:hover {
    background: rgba(40, 44, 52, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.safeguards-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.safeguards-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-chevron {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.dropdown-chevron.expanded {
    transform: rotate(180deg);
}

.safeguards-indicators {
    display: flex;
    gap: 3px;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.indicator.green {
    background: #4CAF50;
}

.indicator.red {
    background: #F44336;
}



.safeguards-expanded {
    background: #0f1117;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 16px;
}

.safeguards-categories {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-row {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.category-row::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.category-name {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    min-width: 140px;
    margin-left: 12px;
    text-align: left;
}

.category-indicators {
    display: flex;
    gap: 3px;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

/* Responsive adjustments for safeguards */
@media (max-width: 768px) {
    .safeguards-collapsed {
        padding: 12px 16px;
    }
    
    .safeguards-label {
        font-size: 14px;
    }
    
    .safeguards-indicators {
        gap: 2px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .safeguards-expanded {
        padding: 16px;
    }
    
    .category-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .category-name {
        min-width: auto;
        margin-left: 0;
    }
    
    .category-indicators {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Dot Hover Styles */
.mfa-dot,
.mdr-dot {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.mfa-dot:hover,
.mdr-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

/* MFA Tooltip Styles */
.mfa-tooltip {
    position: fixed;
    background: #0f1117;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1002;
    pointer-events: none;
}

.mfa-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #0f1117;
}

.mfa-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.tooltip-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tooltip-status.fail {
    color: #f44336;
}

.tooltip-status.pass {
    color: #4caf50;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.fail {
    background: #f44336;
}

.status-dot.pass {
    background: #4caf50;
}

.tooltip-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.tooltip-content {
    margin-top: 8px;
}

.requirement-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 2px 0;
}

.summary-item.pass {
    color: #4caf50;
}

.summary-item.fail {
    color: #f44336;
}

.check-icon {
    font-size: 10px;
    font-weight: bold;
}

.journey-cta-btn.coming-soon {
    background: transparent;
    color: white !important;
    cursor: not-allowed;
    opacity: 0.7;
    border: none;
    box-shadow: none;
    padding: 0;
    text-decoration: none;
}

.journey-cta-btn.coming-soon:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    border: none;
    color: white !important;
}

/* Disable hover effects for journey cards with coming soon buttons */
.journey-card[data-journey="benchmarking"]:hover,
.journey-card[data-journey="mdr-renewal"]:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card.hidden {
    display: none;
}

/* Hero Variant Styles */
.hero-variant {
    transition: opacity 0.3s ease;
}

.hero-variant[style*="display: none"] {
    opacity: 0;
}

.hero-variant[style*="display: block"] {
    opacity: 1;
}

/* =========================================== */
/* CONSOLIDATED INLINE STYLES FROM INDEX.HTML */
/* =========================================== */

/* Custom styles for problem cards */
.problems-grid .blog-card {
    border: 1px solid rgba(255, 59, 48, 0.2) !important;
    min-height: auto !important;
    height: auto !important;
    background: rgba(25, 23, 37, 0.9) !important;
}

.problems-grid .blog-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.problems-grid .blog-tag {
    background-color: rgba(255, 59, 48, 0.1) !important;
    color: rgb(255, 59, 48) !important;
    margin: 0;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.problems-grid .blog-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #fff !important;
}

/* Platform Section Styles */
.platform-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Use Cases Section Styles */
.use-cases-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.timeline-container {
    margin-top: -48px;
}

.timeline-phases {
    display: block;
}

/* New Accordion Styles - REMOVED TO AVOID CONFLICTS */

.phase-item {
    position: relative;
    margin-bottom: 24px;
}

.phase-header {
    width: 100%;
    position: relative;
    cursor: pointer;
    background: rgba(20, 21, 26, 0.7);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.phase-header:hover {
    background: rgba(30, 31, 36, 0.9);
}

.phase-number {
    background: #2A2B2F;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.phase-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.phase-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(30, 31, 36, 0.9);
    border-radius: 0 0 12px 12px;
    margin-top: -12px;
    padding: 0 24px;
}

.phase-item.active .phase-content {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    padding: 24px;
}

.phase-item.active .phase-header {
    background: rgba(30, 31, 36, 0.9);
    border-radius: 12px 12px 0 0;
}

.phase-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

.phase-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.phase-capabilities {
    margin-top: 24px;
}

.capability {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.capability:last-child {
    margin-bottom: 0;
}

.capability-indicator {
    width: 6px;
    height: 6px;
    background: #4C1D95;
    border-radius: 50%;
    flex-shrink: 0;
}

.capability p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.timeline-phases {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.phase-item {
    background: rgba(20, 21, 26, 0.7);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 200px;  /* Set minimum height */
    position: relative;  /* For absolute positioning of timer bar */
    display: flex;
    flex-direction: column;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.phase-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phase-item.active {
    background: rgba(30, 31, 36, 0.9);
    min-height: 320px;  /* Fixed expanded height */
}

.phase-item.active .phase-content {
    opacity: 1;
    max-height: 500px;  /* Large enough to fit content */
}

.phase-number {
    background: #2A2B2F;  /* Grey background */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.phase-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.phase-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.phase-capabilities {
    margin-top: 16px;
}

.capability {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.capability:last-child {
    margin-bottom: 0;
}

.capability-indicator {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    border-radius: 50%;
}

.capability p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.timer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2A2B2F;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.timer-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4C1D95, #7E22CE);
    transition: width 5s linear;
}

.timer-progress.completed {
    width: 100%;
    background: #2A2B2F;
    transition: background-color 0.3s ease;
}

.phase-item.active .timer-progress {
    background: linear-gradient(90deg, #4C1D95, #7E22CE);
}

/* Remove the automatic width setting for active items */
.phase-item.active .timer-progress {
    width: 0%;
}

.phase-content-container {
    padding: 24px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.use-case-card {
    background: rgba(14, 15, 19, 0.95);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    color: #8B5CF6;
    margin-bottom: 24px;
}

.use-case-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.use-case-content > p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    min-height: 80px;
}

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

.core-objectives-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.objectives-content {
    margin-top: 48px;
    text-align: center;
}

.objectives-intro {
    margin-bottom: 48px;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

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

.objective-card {
    background: rgba(30, 31, 36, 0.9);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-4px);
    background: rgba(35, 36, 41, 0.9);
}

.objective-icon {
    width: 64px;
    height: 64px;
    background: rgba(76, 29, 149, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #7E22CE;
}

.objective-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.objective-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.objectives-footer {
    margin-top: 48px;
}

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

.platform-components {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.component-card {
    background: rgba(30, 31, 36, 0.9);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateX(8px);
    background: rgba(35, 36, 41, 0.9);
}

.component-icon {
    width: 48px;
    height: 48px;
    background: rgba(76, 29, 149, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7E22CE;
    flex-shrink: 0;
}

.component-content {
    flex-grow: 1;
}

.component-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.component-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.platform-footer {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(76, 29, 149, 0.1);
    border-radius: 12px;
}

.platform-footer .highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .component-card {
        flex-direction: column;
    }

    .component-icon {
        margin-bottom: 16px;
    }
}

.value-delivery-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.value-propositions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-prop {
    background: rgba(14, 15, 19, 0.95);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-4px);
    background: rgba(20, 21, 26, 0.95);
}

.value-prop.featured {
    grid-column: 1 / -1;
    background: rgba(76, 29, 149, 0.1);
}

.value-prop h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.value-prop p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.value-delivery-section .section-title {
    font-size: 64px;
    color: #8B5CF6;
    margin-bottom: 24px;
    text-align: center;
}

.value-delivery-section p {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 48px;
    color: #E5E7EB;
}

.hide-section {
    display: none !important;
}

.nav-linkedin {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-linkedin:hover {
    background: rgba(255, 255, 255, 0.1);
}

.external-link {
    font-size: 14px;
    line-height: 1;
}

.nav-text {
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    -webkit-tap-highlight-color: transparent !important;
    user-select: none;
    -webkit-user-select: none;
}

.btn-secondary:focus {
    outline: none !important;
}

.btn-secondary:active {
    background: var(--button-bg) !important;
}

/* Override any existing ripple effects */
.btn-secondary::after,
.btn-secondary::before {
    display: none !important;
}

/* Remove any existing animations */
.btn-secondary {
    animation: none !important;
}

.meeting-container {
    display: inline-block;
    position: relative;
}

.meeting-buttons {
    display: none;
    gap: 10px;
}

.meeting-buttons.show {
    display: flex;
}

.meeting-buttons .btn-secondary {
    margin: 0;
    white-space: nowrap;
}

.initial-button {
    display: inline-block;
}

.initial-button.hide {
    display: none;
}

/* ====================================================== */
/* ADDITIONAL COMPONENT AND FEATURE CARD STYLES        */
/* ====================================================== */

/* Feature cards grid layout */
.component-card .feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.component-card .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.component-card .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(136, 76, 229, 0.3);
    transform: translateY(-2px);
}

.component-card .feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.component-card .feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* 3-column vertical layout for platform components */
.platform-components {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

.component-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    min-height: 0;
}

.component-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.component-header .component-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.component-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.feature-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-cards-vertical .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.feature-cards-vertical .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(136, 76, 229, 0.3);
    transform: translateY(-2px);
}

.feature-cards-vertical .feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-cards-vertical .feature-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Blog cards section styles */
.blog-cards-section .value-propositions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.blog-cards-section .value-prop {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-cards-section .value-prop:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(136, 76, 229, 0.3);
    transform: translateY(-4px);
}

.blog-cards-section .value-prop-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .platform-components {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .blog-cards-section .value-propositions {
        grid-template-columns: 1fr;
    }
    
    .component-card .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* New Accordion Styles - REMOVED TO AVOID CONFLICTS */

/* Use Cases Accordion Styles (for index.html) */
.use-case-card .accordion {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-card .accordion button {
    width: 100%;
    border: none;
    background: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.use-case-card .accordion button:hover {
    color: #8B5CF6;
}

.use-case-card .accordion button::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.use-case-card .accordion button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.use-case-card .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-card .accordion-content p {
    padding: 0 0 16px 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.use-case-card .accordion button[aria-expanded="true"] + .accordion-content {
    max-height: 200px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.hide-section {
    display: none !important;
}

/* Ensure hide-section overrides any section-specific display rules */
section.hide-section,
.hide-section.use-cases-section,
.hide-section.value-delivery-section,
.hide-section.problem-framing-section,
.hide-section.pricing-section,
.hide-section.testimonials-section {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden !important;
}

/* General Accordion Styles (for JavaScript compatibility) */
.accordion {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion button {
    width: 100%;
    border: none;
    background: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion button:hover {
    color: #8B5CF6;
}

.accordion button::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.accordion button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-content p {
    padding: 0 0 16px 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.accordion button[aria-expanded="true"] + .accordion-content {
    max-height: 200px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* HubSpot Modal Styles - Matches website design system */
.hubspot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--spacing-lg);
}

.hubspot-modal.active {
    display: flex;
    opacity: 1;
}

.hubspot-content {
    background: rgba(25, 23, 37, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 76, 229, 0.3);
    border-radius: var(--border-radius-xl);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Add padding to create dark frame around white scheduler */
    padding: var(--spacing-md);
}

.hubspot-modal.active .hubspot-content {
    transform: scale(1);
}

.hubspot-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.hubspot-close:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: scale(1.05);
}

.hubspot-scheduler-container {
    background: #ffffff;
    min-height: 650px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* Subtle border to define the white content area */
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Slight shadow to lift the white content */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hubspot-scheduler-container iframe {
    width: 100% !important;
    height: 650px !important;
    border: none;
    display: block;
    border-radius: var(--border-radius-lg);
    background: #ffffff !important;
}

/* Loading state for white scheduler background */
.hubspot-scheduler-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(136, 76, 229, 0.15);
    border-top: 3px solid #884CE5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.hubspot-scheduler-container:has(iframe)::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hubspot-content {
        max-width: 95vw;
        margin: 0;
    }
    
    .hubspot-scheduler-container iframe {
        height: 600px !important;
    }
}

@media (max-width: 768px) {
    .hubspot-modal {
        padding: var(--spacing-sm);
    }
    
    .hubspot-content {
        max-width: 100%;
        max-height: 95vh;
        padding: var(--spacing-sm);
    }

    .hubspot-close {
        top: 4px;
        right: 4px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .hubspot-scheduler-container {
        min-height: 550px;
    }

    .hubspot-scheduler-container iframe {
        height: 550px !important;
    }
}

@media (max-width: 480px) {
    .hubspot-content {
        padding: 8px;
    }

    .hubspot-close {
        top: 4px;
        right: 4px;
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .hubspot-scheduler-container {
        min-height: 500px;
    }
    
    .hubspot-scheduler-container iframe {
        height: 500px !important;
    }
}