/* ========================================
   PAGE-SPECIFIC STYLES
   Zenith Network Website
   ======================================== */

/* Site-wide decorative background - Large canvas approach */
.site-background-decoration {
    position: fixed;
    top: -100vh;
    left: -100vw;
    width: 300vw;
    height: 300vh;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}

.bg-decoration-img {
    position: absolute;
    width: 200vw;
    height: 200vh;
    object-fit: contain;
    object-position: center;
    opacity: 0.6;
    max-width: none;
}

.bg-decoration-img:nth-child(2) {
    top: 200vh;
    left: 150vw;
}

/* Home page specific positioning - start after hero section */
.home-page .site-background-decoration {
    top: 0;
}

.home-page .bg-decoration-img:first-child {
    top: -20vh;
    left: -20vw;
    width: 240vw;
    height: 240vh;
}

.home-page .bg-decoration-img:nth-child(2) {
    top: 350vh;
    left: 200vw;
}

/* Other pages - Star backgrounds positioned from start */

/* Typewriter Animation for Developer Page Card Content */
.typewriter-list li {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.typewriter-list li.typewriter-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.typewriter-list li .typewriter-text {
    display: inline;
    overflow: hidden;
}

.typewriter-char {
    opacity: 0;
    animation: fadeInChar 0.02s forwards;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.typewriter-char.bold-char {
    color: #242FBA;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(85, 106, 255, 0.3);
    animation: fadeInBold 0.05s forwards;
}

@keyframes fadeInChar {
    to { 
        opacity: 1;
    }
}

@keyframes fadeInBold {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: linear-gradient(180deg, #556AFF, #242FBA);
    animation: blink 0.7s infinite;
    vertical-align: middle;
    margin-left: 2px;
    box-shadow: 0 0 5px rgba(85, 106, 255, 0.5);
}

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

/* Add subtle code-like styling to animated list items */
.typewriter-list li.typewriter-active {
    background: linear-gradient(90deg, rgba(85, 106, 255, 0.02), transparent);
    padding-left: 18px;
    margin-left: -18px;
    transition: all 0.2s ease;
}

/* Highlight bold sections after typing */
.typewriter-list li strong {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.typewriter-list li.typewriter-complete strong::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, #556AFF, transparent);
    animation: highlightSlide 0.5s ease-out;
}

@keyframes highlightSlide {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}
body:not(.home-page) .bg-decoration-img:first-child {
    top: -60vh;
    left: 100vw;
}

body:not(.home-page) .bg-decoration-img:nth-child(2) {
    top: 250vh;
    left: 200vw;
}

/* Additional elements for other pages */
body:not(.home-page) .bg-decoration-img:nth-child(3) {
    top: 120vh;
    left: 50vw;
}

body:not(.home-page) .bg-decoration-img:nth-child(4) {
    top: 180vh;
    left: 200vw;
}



/* Enhanced Focus States for Accessibility */
.nav-link:focus-visible,
.btn:focus-visible,
.footer-link:focus-visible,
.social-button:focus-visible,
.legal-link:focus-visible {
    outline: 2px solid #000B42;
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-toggle:focus-visible {
    outline: 2px solid #000B42;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve button hover states */
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(36, 47, 186, 0.3);
}

/* Better link hover states */
.nav-link:hover,
.footer-link:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Reset and base styles */
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    /* Solid fallback color for overscroll areas */
    background-color: #f0f4ff;
    /* Gradient background */
    background: 
        linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.08) 70%, rgba(62, 72, 193, 0.12) 100%),
        linear-gradient(180deg, #f8f9fa 0%, #f0f4ff 100%);
    background-attachment: fixed;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    /* Ensure the gradient fills the entire document */
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    position: relative;
    background: transparent;
}

/* Fix for Safari/Chrome overscroll bounce */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        /* Create a pseudo-element that extends beyond the viewport */
        position: relative;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: -100vh;
        left: 0;
        right: 0;
        height: 200vh;
        background: 
            linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.08) 70%, rgba(62, 72, 193, 0.12) 100%),
            linear-gradient(180deg, #f8f9fa 0%, #f0f4ff 100%);
        z-index: -1;
        pointer-events: none;
    }
}

/* Mobile Compatibility Fixes */
* {
    box-sizing: border-box;
}

/* Remove all scrollbars */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background: transparent;
    min-height: 100vh;
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure all grid layouts are mobile-friendly */
.grid,
.grid-cols-1,
.grid-cols-2,
.grid-cols-3,
.grid-cols-4,
.grid-cols-5,
.grid-cols-6 {
    width: 100%;
    max-width: 100%;
}

/* Prevent horizontal overflow on all elements */
img,
video,
iframe,
table {
    max-width: 100%;
    height: auto;
}

/* Ensure text doesn't overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
/* Navigation styles moved to global.css for consistency across all pages */

/* ========================================
   PAGE HEADER STYLES
   ======================================== */
.page-header {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    text-align: center;
}

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

.page-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 125%;
    height: auto;
    min-height: 120%;
    object-fit: cover;
    object-position: left center;
    z-index: 1;
    opacity: 0.9;
    max-width: none;
    transform-origin: left center;
}


/* Maintain positioning on mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-bg-video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.08);
        width: auto;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
        transform-origin: center center;
    }
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: auto;
    max-width: 1200px;
    object-fit: contain;
    opacity: 0.9;
    animation: starGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
}

@keyframes starGlow {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    width: 100%;
    max-width: 1400px;
    padding: 60px 60px;
    opacity: 0;
    animation: fadeInHero 1.5s ease-out 0.5s forwards;
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 100px;
    font-weight: 500;
    color: #ffffff;
    line-height: 0.9;
    margin: 0;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
    background: transparent;
}

.hero-learn-more-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000b42;
    background-color: #e6e6ff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-self: flex-start;
}

.hero-learn-more-btn:hover {
    background-color: #d4d4ff;
    transform: translateY(-2px);
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

/* Duplicate hero-title definition removed */

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin: 0;
    line-height: var(--leading-relaxed);
    background: transparent;
    display: inline-block;
    margin-top: var(--space-2);
}

.hero-description {
    font-size: var(--text-base);
    color: var(--text-primary);
    margin: 0;
    line-height: var(--leading-relaxed);
    max-width: 500px;
    background: transparent;
    display: inline-block;
    margin-top: var(--space-2);
    margin-left: 20px;
}

.hero-cta {
    margin: 100px 10px 100px 30px;
    margin-top: -6px;
    margin-bottom: var(--space-8);
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.hero-logo {
    height: 60px;
    width: auto;
}

.logo-separator {
    font-size: var(--text-4xl);
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    background: rgba(0, 11, 66, 0.8);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    display: inline-block;
    margin-left: 20px;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    font-weight: 500;
    background: transparent;
    display: inline-block;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   OVERVIEW SECTION STYLES
   ======================================== */
.overview {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

.overview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition-normal);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.overview-icon {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-4);
}

.overview-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.overview-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.overview-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.overview-link:hover {
    color: var(--color-accent);
}

/* ========================================
   UNIVERSAL SECTION STYLES
   ======================================== */
.section,
.overview,
.accreditation,
.shape-solution,
.performance,
.trusted-by,
.featured-media,
.bottom-cta-section,
.history-section,
.page-hero-section,
.team-section,
.community-cta,
.enterprise-features,
.developer-features-simple,
.developer-features,
.why-build,
.case-studies,
.zkboost-consortium,
.projects,
.metrics,
.partners-section,
.future-proof-comparison-container,
.case-study-section,
.backers-strip {
    padding: var(--space-20) 0;
    margin-top: 0;
    margin-bottom: 0;
}

.ecosystem-partners {
    padding: 0 0 var(--space-20) 0;
    margin-top: 0;
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-family: var(--font-family-secondary);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: #000B42;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: var(--leading-tight);
}

h2.section-title {
    margin-top: 20px;
    margin-bottom: 0;
}

/* H6 section titles (smaller, muted styling) */
h6.section-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #a8acbf;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
}

.section-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--text-xl);
    color: #000B42;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* H6 section subtitles (smaller, muted styling) */
h6.section-subtitle {
    font-size: var(--text-xs);
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    margin: 0;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    /* Ensure the line extends to the container edge */
    box-sizing: border-box;
}

h6.section-subtitle::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
    /* Ensure the line extends to the full width */
    min-width: 0;
}

/* What is Zenith Section */
.what-is-zenith {
    background: transparent;
}

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

.content-text h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.point {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.point-icon {
    font-size: var(--text-lg);
}

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

.infrastructure-diagram {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 300px;
}

.layer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out;
}

.layer:nth-child(1) { animation-delay: 0.1s; }
.layer:nth-child(2) { animation-delay: 0.2s; }
.layer:nth-child(3) { animation-delay: 0.3s; }

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

/* Vision Section */
.vision {
    background: var(--bg-primary);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-text h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    padding: var(--space-4);
}

.feature-card {
    background: var(--bg-secondary);
    padding: var(--space-8);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(36, 47, 186, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(36, 47, 186, 0.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: #000B42;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-primary);
}

.advantages-grid {
    display: grid;
    gap: var(--space-12);
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-12);
    align-items: center;
    background: var(--bg-secondary);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
}

.advantage-content h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.advantage-content p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.advantage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    font-size: var(--text-6xl);
}

/* Ecosystem Section */
.ecosystem {
    background: var(--bg-secondary);
}

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

.ecosystem-text h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.ecosystem-partners {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.partner-category {
    background: var(--bg-primary);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.partner-category h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.partner-category p {
    color: var(--text-secondary);
    margin: 0;
}

.ecosystem-visual {
    display: flex;
    justify-content: center;
}

.ecosystem-network {
    position: relative;
    width: 300px;
    height: 300px;
}

.hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    z-index: 2;
}

.node {
    position: absolute;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.node-1 { top: 20%; left: 20%; }
.node-2 { top: 20%; right: 20%; }
.node-3 { bottom: 20%; left: 50%; transform: translateX(-50%); }

.connection {
    position: absolute;
    height: 2px;
    background: var(--gradient-primary);
    animation: pulse 2s ease-in-out infinite;
}

.c1 {
    top: 30%;
    left: 30%;
    width: 40%;
    transform: rotate(45deg);
}

.c2 {
    top: 30%;
    right: 30%;
    width: 40%;
    transform: rotate(-45deg);
}

.c3 {
    bottom: 30%;
    left: 50%;
    width: 40%;
    transform: translateX(-50%);
}

/* About Us Section */
.about-us {
    background: var(--bg-primary);
}

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

.about-text h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.highlight-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.team-representation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    width: 200px;
}

.team-member {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    color: #1A2B6B;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: var(--text-4xl);
}

/* ========================================
   ACCREDITATION SECTION STYLES
   ======================================== */
.accreditation {
    background: var(--bg-secondary);
    padding: var(--space-20) 0;
}

.accreditation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.accreditation-badges {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.badge-text {
    font-size: var(--text-sm);
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

.fireblocks-logo {
    display: flex;
    align-items: center;
}

.fireblocks-text {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   GET STARTED SECTION STYLES
   ======================================== */
.get-started {
    background: var(--bg-primary);
    padding: var(--space-20) 0;
    text-align: center;
}

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

.get-started-content .section-title {
    color: var(--text-primary);
}

.get-started-content .section-subtitle {
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

/* ========================================
   MICA REGULATED SECTION STYLES
   ======================================== */
.regulation-badges {
    background: var(--bg-primary);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.regulation-content {
    max-width: 600px;
    margin: 0 auto;
}

.regulation-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: var(--space-12);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* H6 regulation titles (smaller, muted styling) */
h6.regulation-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #a8acbf;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-8);
    text-align: center;
}

/* Hero Compliance Styles */
.hero-compliance {
    margin-top: var(--space-12);
    text-align: center;
    background: transparent;
}

.hero-compliance-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: var(--space-6);
    background: transparent;
}

.hero-compliance-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    background: transparent;
}

.hero-compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: transparent;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.hero-compliance-badge:hover {
    transform: translateY(-2px);
}

.hero-compliance-badge .badge-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all var(--transition-normal);
}

.hero-compliance-badge:hover .badge-logo {
    filter: brightness(1);
}

/* Responsive adjustments for hero compliance */
@media (max-width: 768px) {
    .hero-compliance {
        margin-top: var(--space-8);
    }
    
    .hero-compliance-badges {
        gap: var(--space-4);
    }
    
    .hero-compliance-badge .badge-logo {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hero-compliance {
        margin-top: var(--space-6);
    }
    
    .hero-compliance-badge .badge-logo {
        width: 40px;
    }
}

.regulation-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
}

.regulation-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: transparent;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.regulation-badge:hover {
    transform: translateY(-2px);
}

.badge-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.badge-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-subtitle {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    /* Remove separate background - use page gradient */
    background: transparent;
    color: #1A2B6B;
    padding: 20px;
    margin: 0 0 40px 0;
}

.footer-container {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Brand Section */
.footer-brand-section {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo a {
    display: inline-block;
    transition: var(--transition-normal);
    text-decoration: none;
}

.footer-logo a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

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

.footer-cta-button {
    font-family: var(--font-family-secondary);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: #1A2B6B;
    border: 1px solid #1A2B6B;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin: 0.5rem;
    position: relative;
    z-index: 1;
}

.footer-cta-button:hover {
    background: #1A2B6B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(26, 43, 107, 0.25),
        0 0 20px rgba(85, 106, 255, 0.3),
        0 0 40px rgba(85, 106, 255, 0.2);
    animation: glowPulseFooter 2s ease-in-out infinite alternate;
}

@keyframes glowPulseFooter {
    0% {
        box-shadow: 
            0 4px 12px rgba(26, 43, 107, 0.25),
            0 0 15px rgba(85, 106, 255, 0.2),
            0 0 30px rgba(85, 106, 255, 0.15);
    }
    100% {
        box-shadow: 
            0 6px 16px rgba(26, 43, 107, 0.3),
            0 0 25px rgba(85, 106, 255, 0.3),
            0 0 45px rgba(85, 106, 255, 0.2);
    }
}

/* Navigation Section */
.footer-navigation {
    display: contents;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-column:nth-child(1) {
    grid-column: 2;
}

.footer-nav-column:nth-child(2) {
    grid-column: 3;
}

.footer-nav-column:nth-child(3) {
    grid-column: 4;
}

.footer-nav-column h4 {
    font-family: var(--font-family-secondary);
    color: #1A2B6B;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-link {
    font-family: var(--font-family-secondary);
    color: #1A2B6B;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 400;
}

.footer-link:hover {
    color: #0f1a4a;
    text-decoration: underline;
}

/* Social Media Section */
.footer-social-section {
    grid-column: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-button {
    font-family: var(--font-family-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 20px;
    background: #E0E6F7;
    color: #000b42;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.social-button .social-icon-img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
}

.social-button:hover {
    background: #D0D6E7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.social-icon-img {
    width: 18px;
    height: 18px;
    transition: all 0.2s ease;
}

/* Footer Bottom */
.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-family: var(--font-family-secondary);
    font-size: 12px;
    margin: 0;
    color: #6c757d;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    font-family: var(--font-family-secondary);
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.legal-link:hover {
    color: #1A2B6B;
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* ========================================
   TABLET RESPONSIVE DESIGN (769px - 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .performance-stats-flex-grid {
        gap: var(--space-6);
    }
    
    .performance-item {
        flex: 0 0 calc(50% - var(--space-3));
    }
    
    .future-proof .use-cases-flex-grid {
        gap: var(--space-6);
    }
    
    .use-case {
        flex: 0 0 calc(25% - var(--space-4-5));
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MOBILE RESPONSIVE DESIGN (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Navigation styles moved to global.css */
    
    .hero {
        min-height: 115vh;
        padding: 70px 0 0;
    }

    /* About Us Page Responsive */
    .history-content-vertical {
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }


    .team-members-grid {
        gap: 12px;
        padding: 0 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .team-member {
        flex: 0 0 calc(50% - 6px);
        max-width: none;
        min-width: 0;
        padding: var(--space-3);
        width: calc(50% - 6px);
    }
    
    .member-name {
        font-size: 14px;
        white-space: normal;
        word-break: keep-all;
        hyphens: none;
        line-height: 1.3;
    }
    
    .member-role {
        font-size: 12px;
    }
    
    .member-photo {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-3);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        margin: 0;
        padding: 20px 10px;
    }

    .footer-container {
        padding: 40px 20px 30px;
        border-radius: 15px;
    }

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

    .footer-brand-section {
        grid-column: 1;
        text-align: center;
        align-items: center;
    }

    .footer-navigation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-nav-column:nth-child(1) {
        grid-column: 1;
    }
    
    .footer-nav-column:nth-child(2) {
        grid-column: 2;
    }
    
    .footer-nav-column:nth-child(3) {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }

    .footer-social-section {
        grid-column: 1;
        margin-top: 10px;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .social-button {
        padding: 16px 20px;
        font-size: 13px;
        border-radius: 16px;
        justify-content: center;
        text-align: center;
    }

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

    .legal-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .hero-background {
        align-items: flex-start;
        padding-top: 20px;
    }

    .hero-bg-image {
        width: 90vw;
        max-width: 600px;
        top: 40%;
    }
    
    .hero-content {
        top: 50%;
        gap: 20px;
        margin-top: 0;
        width: 100%;
        max-width: 100vw;
        padding: 40px 20px;
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-main-title {
        font-size: 48px;
        margin: 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin: 0;
        max-width: 300px;
    }
    
    .hero-learn-more-btn {
        font-size: 14px;
        padding: 10px 24px;
        margin: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    
    .solution-header {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 var(--space-4);
    }
    
    .solution-features {
        max-width: 100%;
    }
    
    .feature-card {
        flex: 0 0 280px;
        min-height: 280px;
    }
    
    .features-cards-scroll {
        padding: 0 var(--space-4);
        gap: var(--space-4);
    }
    
    .feature-card-content {
        padding: var(--space-4);
    }
    
    .feature-card-title {
        font-size: var(--text-lg);
    }
    
    .feature-card-text {
        font-size: var(--text-sm);
    }
    

    
    .hero-star {
        width: 250px;
        height: 250px;
    }
    
    .built-for-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .key-points {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

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

    .advantage-item {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-8);
    }

    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .regulation-badges-grid {
        gap: var(--space-8);
    }

    .badge-logo {
        width: 60px;
        height: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .team-highlights {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    /* Fix grid layouts for tablet */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--space-6);
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-6);
    }
    
    .enterprise-features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-8);
    }
    
    .developer-features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-8);
    }
    
    .ecosystem-features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-8);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 110vh;
        padding: 60px 0 60px;
    }
    
    .hero-background {
        align-items: flex-start;
        padding-top: 10px;
    }

    .hero-bg-image {
        width: 95vw;
        max-width: 400px;
        top: 35%;
    }
    
    .hero-content {
        top: 60%;
        gap: var(--space-3);
        margin-top: 0;
        max-width: 450px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .future-proof-header-grid {
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
    
    .use-cases-flex-grid {
        gap: var(--space-4);
        padding: 0 var(--space-4);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case {
        max-width: none;
        min-width: 0;
    }
    
    .use-case {
        min-height: 100px;
        padding: var(--space-3);
    }
    
    
    /* Built for section mobile fixes */
    .built-for-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .built-for-item {
        padding: var(--space-3);
        min-height: 80px;
    }
    
    .built-for-icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--space-1);
    }
    
    .built-for-title {
        font-size: var(--text-xs);
    }
    
    
    .solution-header {
        padding: 0 var(--space-2);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .solution-features {
        padding: 0 var(--space-2);
    }
    
    .features-list {
        gap: var(--space-2);
    }
    
    .feature-item {
        padding: var(--space-2);
    }

    /* Footer mobile styles */
    .footer {
        margin: 0;
        padding: 20px 8px;
    }

    .footer-container {
        padding: 30px 15px 25px;
        border-radius: 12px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-logo .logo-image {
        height: 35px;
    }

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

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .social-button {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .social-icon-img {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .legal-links {
        gap: 12px;
    }
    
    .feature-title {
        font-size: var(--text-xs);
    }
    
    .feature-text {
        font-size: var(--text-xs);
    }
    
    .advantage-item {
        padding: var(--space-6);
    }

    .feature-card {
        padding: var(--space-6);
    }
    
    /* Fix grid layouts for mobile */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-4);
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .history-content-vertical {
        gap: var(--space-3);
        padding: 0 var(--space-2);
    }

    
    .team-members-grid {
        gap: 10px;
        padding: 0 6px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 5px);
        max-width: none;
        min-width: 0;
        padding: var(--space-3);
        width: calc(50% - 5px);
    }
    
    .enterprise-features .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .developer-features .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .ecosystem-features .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    /* Ecosystem Page Mobile Fixes */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--space-3);
    }
    
    .member {
        padding: var(--space-3);
        font-size: var(--text-xs);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .project-card {
        padding: var(--space-6);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    /* Fix comparison table */
    .comparison-table {
        margin-top: var(--space-8);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }
    
    .comparison-table table {
        font-size: var(--text-xs);
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--space-2);
        white-space: nowrap;
    }
    
    /* Ensure all sections are properly contained */
    .section,
    .accreditation,
    .trusted-by,
    .featured-media,
    .bottom-cta-section,
    .history-section,
    .team-section,
    .community-cta,
    .shape-solution,
    .performance,
    .future-proof,
    .comparison,
    .what-is-zenith,
    .vision,
    .features,
    .why-choose-us,
    .ecosystem,
    .about-us {
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Container improvements for mobile */
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
        max-width: 100%;
    }
    
    /* Grid container fixes */
    .content-grid,
    .advantages-grid,
    .ecosystem-content,
    .about-content {
        gap: var(--space-6);
        padding: 0 var(--space-2);
    }
    
    /* Text container fixes */
    .content-text,
    .ecosystem-text,
    .about-text {
        padding: 0 var(--space-2);
    }
    
    /* Combined section mobile adjustments */
    .combined-solution-performance {
        min-height: 800px;
        padding: var(--space-12) 0 50px 0;
    }
    
    /* Mobile SVG adjustments for performance section */
    .combined-solution-performance .performance-section-inner:nth-child(3) {
        margin-top: 5%;
        margin-bottom: 5%;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    
    .combined-solution-performance .performance-section-inner:nth-child(3)::before {
        background-size: auto 120%;
        opacity: 0.8;
    }
    
    /* Performance cards mobile improvements */
    .performance-cards-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-6);
        padding: 0 var(--space-4);
        padding-left: var(--space-4);
        max-width: 100vw;
        margin-left: auto;
        margin-right: auto;
    }

    .performance-card {
        padding: var(--space-6);
    }

    .performance-card-title {
        font-size: var(--text-xs);
    }

    .performance-card-description {
        font-size: var(--text-sm);
    }
    
    /* Built for section mobile fixes */
    .built-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .built-for-item {
        padding: var(--space-4);
        min-height: 100px;
    }
    
    .built-for-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-2);
    }
    
    .built-for-title {
        font-size: var(--text-sm);
    }
    
    
    .solution-header {
        padding: 0 var(--space-4);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .solution-features {
        padding: 0 var(--space-4);
    }
    
    .features-list {
        gap: var(--space-3);
    }
    
    .feature-item {
        padding: var(--space-3);
    }
    
    .feature-title {
        font-size: var(--text-sm);
    }
    
    .feature-text {
        font-size: var(--text-xs);
    }
    
    .future-proof-header-grid {
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .use-cases-flex-grid {
        gap: var(--space-6);
        padding: 0 var(--space-4);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case {
        max-width: none;
        min-width: 0;
    }
    
    .use-case {
        min-height: 120px;
        padding: var(--space-4);
    }
    
    
    /* Universal section padding for tablet */
    .section,
    .overview,
    .accreditation,
    .shape-solution,
    .performance,
    .trusted-by,
    .featured-media,
    .start-building,
    .history-section,
    .page-hero-section,
    .team-section,
    .community-cta,
    .enterprise-features,
    .developer-features-simple,
    .developer-features,
    .why-build,
    .case-studies,
    .zkboost-consortium,
    .projects,
    .metrics,
    .partners-section,
    .ecosystem-partners,
    .future-proof-comparison-container,
    .case-study-section,
    .backers-strip {
        padding: var(--space-12) 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .page-hero-section,
    .ecosystem-partners {
        margin-top: var(--space-12);
    }
    
    .page-hero-section {
        margin-bottom: 0;
    }
    
    /* Container improvements for small mobile */
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    /* Grid container fixes for small mobile */
    .content-grid,
    .advantages-grid,
    .ecosystem-content,
    .about-content {
        gap: var(--space-4);
        padding: 0 var(--space-3);
    }
    
    /* Text container fixes for small mobile */
    .content-text,
    .ecosystem-text,
    .about-text {
        padding: 0 var(--space-3);
    }
}

@media (max-width: 480px) {
    /* Universal section padding for mobile */
    .section,
    .overview,
    .accreditation,
    .shape-solution,
    .performance,
    .trusted-by,
    .featured-media,
    .start-building,
    .history-section,
    .page-hero-section,
    .team-section,
    .community-cta,
    .enterprise-features,
    .developer-features-simple,
    .developer-features,
    .why-build,
    .case-studies,
    .zkboost-consortium,
    .projects,
    .metrics,
    .partners-section,
    .ecosystem-partners,
    .future-proof-comparison-container,
    .case-study-section,
    .backers-strip {
        padding: var(--space-8) 0;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 360px) {
    /* Extra small screens (mobile) */
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .history-section,
    .page-hero-section,
    .ecosystem-partners {
        margin-top: var(--space-8);
    }
    
    .page-hero-section {
        margin-bottom: 0;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }
    
    .member {
        padding: var(--space-2);
        font-size: 11px;
    }
    
    .hero-background {
        align-items: flex-start;
        padding-top: 5px;
    }

    .hero-bg-image {
        width: 100vw;
        max-width: 300px;
        top: 30%;
    }
    
    .hero-content {
        top: 55%;
        gap: var(--space-2);
        margin-top: 0;
        max-width: 400px;
    }
    
    /* Hero title uses responsive clamp() */
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
}

/* Combined Shape Solution and Performance Section */
.combined-solution-performance {
    padding: var(--space-20) 0 50px 0;
    min-height: 1600px;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
}

/* Remove the old SVG overlay */
.combined-solution-performance::before {
    display: none;
}

.combined-solution-performance .container {
    position: relative;
    z-index: 2;
}

.combined-solution-performance .solution-section {
    padding-bottom: var(--space-12);
}

.combined-solution-performance .performance-section-inner {
    padding-top: var(--space-8);
    position: relative;
}

/* Specific styling for "Succeed with Unmatched Performance" section */
.combined-solution-performance .performance-section-inner:nth-child(3) {
    position: relative;
    margin-top: 10%;
    margin-bottom: 10%;
    padding-top: 10%;
    padding-bottom: 10%;
}

/* SVG background only for the middle performance section */
.combined-solution-performance .performance-section-inner:nth-child(3)::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 120%; /* 100% + 20% */
    top: -10%; /* Start 10% before */
    right: 0;
    background: url('assets/images/Group 2072751238.svg') right center no-repeat;
    background-size: auto 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
}

/* Shape Your Solution Section */
.shape-solution {
    background: var(--bg-secondary);
    padding: 40px 0;
}

.shape-solution + .backers-strip {
    padding-top: var(--space-8);
}

/* Solution Section Layout - Following Benchmark Pattern */
.solution-section {
    margin-top: var(--space-16);
}

.solution-header {
    text-align: left;
    margin-bottom: var(--space-12);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    /* Align with container padding for consistency */
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.solution-title {
    font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    margin: 0 0 var(--space-6) 0;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.solution-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
}

.solution-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    color: #000b42;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.solution-subdescription {
    font-size: var(--text-base);
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.solution-features {
    margin-top: var(--space-8);
}

/* Feature Cards Container - Following Benchmark Pattern */
.features-cards-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    padding: 20px;
    background: transparent;
}

.features-cards-scroll {
    display: flex;
    gap: 24px;
    min-width: max-content;
    padding: 0;
    scroll-behavior: smooth;
}

.features-cards-container::-webkit-scrollbar {
    height: 6px;
}

.features-cards-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.features-cards-container::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 3px;
}

.features-cards-container::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}


/* Force horizontal scrolling */
@supports (scrollbar-width: thin) {
    .features-cards-container {
        scrollbar-width: thin;
        scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
    }
}

/* Responsive solution section */
@media (max-width: 768px) {
    .solution-header {
        padding: 0 var(--space-4);
        margin-bottom: var(--space-8);
    }
    
    /* Solution and performance titles now use responsive clamp() */
    
    .solution-description,
    .solution-subdescription {
        font-size: var(--text-base);
    }
    
    .features-cards-container {
        padding: 15px;
    }
    
    .features-cards-scroll {
        gap: 16px;
    }
    
    .feature-card {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .solution-header {
        padding: 0 var(--space-3);
        margin-bottom: var(--space-6);
    }
    
    /* Solution and performance titles use responsive clamp() */
    
    .features-cards-container {
        padding: 10px;
    }
    
    .features-cards-scroll {
        gap: 12px;
    }
    
    .feature-card {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
        min-height: 300px;
    }
    
    .feature-card-content {
        padding: 20px;
    }
    
    .feature-card-title {
        font-size: 18px;
    }
    
    .feature-card-text {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .solution-header {
        padding: 0 var(--space-3);
        margin-bottom: var(--space-4);
    }
    
    .features-cards-container {
        padding: 8px;
    }
}

.feature-card {
    flex: 0 0 280px;
    background: #f7f7ff;
    border-radius: 16px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    padding: 0;
    margin: 0;
    min-width: 280px;
    max-width: 280px;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    white-space: normal;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    overflow: hidden;
    z-index: 1;
}

.feature-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: breatheFloat 6s ease-in-out infinite;
    opacity: 1;
}

.feature-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: 2;
    background: #f7f7ff;
    border-radius: 0 0 16px 16px;
    box-sizing: border-box;
}

.feature-card-title {
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feature-card-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    flex-grow: 1;
}

.solution-cta {
    text-align: center;
    margin-top: var(--space-8);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: var(--text-base);
}

.feature-text {
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
    font-size: var(--text-sm);
}

/* Built For Section */
.built-for-section {
    margin-top: var(--space-16);
    padding-top: var(--space-16);
    border-top: 1px solid var(--bg-tertiary);
}

.built-for-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
    text-align: left;
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 600px;
}

.built-for-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
}

.built-for-item:hover {
    background: var(--bg-tertiary);
}

.built-for-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: white;
    margin-bottom: var(--space-2);
}

.built-for-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
} 

/* Performance Section - standalone version (kept for other pages) */
.performance {
    background: var(--bg-highlight);
    padding: var(--space-20) 0 40px 0;
}

/* Performance section when inside combined section */
.combined-solution-performance .performance-cards-grid {
    margin-left: 100px;
}

.performance-header {
    text-align: left;
    margin-bottom: var(--space-16);
    /* Align with container padding for consistency */
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.performance-title {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    margin: 0 0 var(--space-6) 0;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-top: 40px;
}

.performance-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
}

.performance-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-12);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: 100px;
    margin-right: auto;
    padding: var(--space-6);
    padding-bottom: 40px;
    padding-left: 0;
}

.performance-card {
    background: linear-gradient(135deg, rgba(62, 72, 193, 0.01) 0%, rgba(79, 70, 229, 0.005) 50%, rgba(62, 72, 193, 0.01) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: 0 8px 32px 0 rgba(62, 72, 193, 0.1);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.performance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(62, 72, 193, 0.2);
    background: linear-gradient(135deg, rgba(62, 72, 193, 0.02) 0%, rgba(79, 70, 229, 0.01) 50%, rgba(62, 72, 193, 0.02) 100%);
    border: 2px solid white;
}

.performance-card-title {
    font-size: calc(var(--text-base) * 1.5);
    font-weight: 600;
    color: #000b42;
    margin: 0 0 var(--space-4) 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: var(--leading-tight);
}

.performance-card-description {
    font-size: var(--text-base);
    color: #000b42;
    line-height: var(--leading-relaxed);
    margin: 0;
} 

/* Mobile/Desktop visibility classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.mobile-image-container {
    margin-top: var(--space-6);
    text-align: center;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Old future-proof styles removed - replaced with new design */ 

/* CTA Section */
.cta-section {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-4);
    padding: var(--space-4) 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-gray);
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--text-gray);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
} 

/* Old comparison table styles removed - replaced with new design */

/* Trusted by Section */
.trusted-by {
    background: var(--bg-secondary);
    padding: var(--space-20) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.partner {
    background: var(--bg-tertiary);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition-normal);
}

.partner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

/* Featured Media Section */
.featured-media {
    background: var(--bg-tertiary);
    padding: var(--space-20) 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.media-item {
    background: var(--bg-card);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-normal);
}

.media-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.media-logo {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.media-item p {
    color: var(--text-gray);
    font-style: italic;
    line-height: var(--leading-relaxed);
}

/* Start Building Section */
/* Bottom CTA Section */
.bottom-cta-section {
    padding: 0;
    margin: 40px 0;
}

.bottom-cta-section .container {
    padding: 0 8px;
}

/* Community CTA specific styling - Override white text */
.community-cta .cta-title.community-cta-title,
.community-cta .community-cta-title.cta-title,
.community-cta-title.cta-title,
.community-cta-title {
    color: #000b42 !important;
    background: none !important;
    text-shadow: none !important;
}

.community-cta .cta-subtitle.community-cta-subtitle,
.community-cta .community-cta-subtitle.cta-subtitle,
.community-cta-subtitle.cta-subtitle,
.community-cta-subtitle {
    color: #000b42 !important;
    opacity: 1 !important;
    background: none !important;
    text-shadow: none !important;
}

/* New Enterprise Layout Styles */
.enterprise-section {
    position: relative;
}

.section-divider {
    position: relative;
    margin-bottom: 40px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section-label::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
}

.enterprise-content-new {
    margin-bottom: 0;
    position: relative;
}

.enterprise-header-new {
    position: relative;
}

.enterprise-icon-large {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #000B42;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enterprise Page Specific Layout Classes */
.enterprise-section-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 0;
}

.enterprise-titles-column {
    flex: 1;
}

.enterprise-label-with-line {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.enterprise-label-with-line::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
}

.enterprise-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #000B42;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 20px;
}

.enterprise-header-icon {
    flex-shrink: 0;
    width: 243px;
    height: 243px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: largeIconFloat 6s ease-in-out infinite;
}

.enterprise-header-icon:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes largeIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

.header-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.enterprise-text-content {
    flex: 1;
}

.enterprise-title-new {
    display: none; /* Hide duplicate title since we now use enterprise-main-title */
}

.enterprise-cards-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 0px;
    padding-top: 20px;
    width: 100%;
}

.enterprise-card-new {
    position: relative;
    padding: 60px 30px 30px 30px;
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    cursor: pointer;
}

.enterprise-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(8, 17, 48, 0.08);
    background: linear-gradient(135deg, #FAFCFF 0%, #F5F7FF 50%, #F0F2FF 100%);
}

.enterprise-card-new.active {
    transform: translateY(-2px);
    background: #F0F4FF;
    border: 2px solid #E0E7FF;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

.enterprise-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, #dee7ff, #d4deff, #dee7ff);
    background-size: 150% 100%;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
    animation: shimmer 8s ease-in-out infinite;
}

.enterprise-card-new:hover::before {
    background: linear-gradient(90deg, #d4deff, #c9d9ff, #d4deff);
    animation-duration: 4s;
}

.enterprise-card-new.active::before {
    background: linear-gradient(90deg, #c7d2fe, #a5b4fc, #c7d2fe);
    animation-duration: 3s;
    height: 24px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.card-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DCE9FF, #F2F6FF);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    outline: none;
    box-shadow: 0 4px 12px rgba(8, 17, 48, 0.1);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 4s ease-in-out infinite;
}

.enterprise-card-new:hover .card-icon {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #C2D6FF, #E8F1FF);
    box-shadow: 0 8px 20px rgba(8, 17, 48, 0.2);
    animation-duration: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    display: block;
    transition: all 0.3s ease;
}

.enterprise-card-new:hover .card-icon-img {
    transform: scale(1.1) rotate(2deg);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-lead-line {
    font-size: 16px;
    color: #081130;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.card-lead-line strong {
    font-weight: 600;
}

.card-value-line {
    font-size: 16px;
    color: #081130;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    margin-top: 0;
}

.card-value-line strong {
    font-weight: 600;
}

/* Show value text on hover - desktop only */
@media (hover: hover) and (pointer: fine) {
    .enterprise-card-new:hover .card-value-line {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
        margin-top: 12px;
    }
}

/* Show value text when clicked (active state) */
.enterprise-card-new.active .card-value-line {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 12px;
}


/* Mobile styles */
@media (max-width: 768px) {
    .enterprise-section {
        padding: 16px 0;
    }
    
    .enterprise-section-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .enterprise-titles-column {
        display: contents;
        width: 100%;
    }
    
    .enterprise-label-with-line {
        font-size: 12px;
        margin-bottom: 0;
        margin-top: 0;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    
    .enterprise-label-with-line::before {
        content: '';
        width: 180px;
        height: 1px;
        background-color: #6b7280;
        display: block;
        order: -1;
    }
    
    .enterprise-label-with-line::after {
        display: none;
    }
    
    .enterprise-main-title {
        font-size: 28px;
        order: 3;
        margin-top: 0;
        padding-bottom: 0;
    }
    
    .enterprise-header-icon {
        width: 163px;
        height: 163px;
        order: 2;
    }
    
    .enterprise-title-new {
        font-size: 32px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .enterprise-cards-new {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
        padding-top: 20px;
        order: 4;
    }
    
    .enterprise-card-new {
        padding: 80px 20px 20px 20px;
    }
    
    .card-icon {
        position: absolute;
        top: -20px;
        left: 15px;
        margin: 0;
    }
    
    .enterprise-content-new {
        margin-bottom: 0;
    }
    
    .enterprise-header-new {
        text-align: left;
    }
    
    .enterprise-cards-new {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-label {
        font-size: 12px;
    }
    
    .enterprise-title-new {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .enterprise-card-new {
        padding: 40px 20px 20px 20px;
    }
    
    .card-title-new {
        font-size: 16px;
    }
    
    .card-description-new {
        font-size: 14px;
    }
    
    .card-value-new {
        font-size: 13px;
    }
}

.cta-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 60px;
}

.cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 11, 66, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-family-primary);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 400;
    color: #ffffff !important;
    opacity: 1 !important;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    border: 1px solid #c7d2fe;
    border-radius: 50px;
    color: #3730a3;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #a5b4fc;
    color: #312e81;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn .link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .link-icon {
    transform: scale(1.05) translateX(2px);
}

/* Waitlist Title Styles */
.waitlist-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000b42;
    text-align: center;
    margin: 24px 0 16px 0;
    line-height: 1.4;
}

/* Waitlist Form Styles */
.waitlist-form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.waitlist-form-group {
    flex: 1;
    position: relative;
}

.waitlist-email {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #334155;
    background-color: transparent;
    border: none;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.waitlist-email::placeholder {
    color: #6b7280;
    opacity: 1;
}

.waitlist-form:focus-within {
    border-color: #c7d2fe;
    box-shadow: 0 0 0 3px rgba(199, 210, 254, 0.3);
}

.waitlist-form:has(.waitlist-form-group.valid) {
    border-color: #10b981;
}

.waitlist-form:has(.waitlist-form-group.invalid) {
    border-color: #ef4444;
}

.waitlist-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    border: none;
    border-radius: 50px;
    color: #3730a3;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.waitlist-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.waitlist-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #a5b4fc;
    color: #312e81;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.waitlist-submit:hover:not(:disabled)::before {
    left: 100%;
}

.waitlist-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.waitlist-submit.loading .btn-text {
    opacity: 0.7;
}

.waitlist-submit .link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.waitlist-submit:hover:not(:disabled) .link-icon {
    transform: scale(1.05) translateX(2px);
}

.waitlist-message {
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 16px auto 0 auto;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.waitlist-message.success {
    background: none;
    color: #059669;
    border: none;
    padding: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.waitlist-message.error {
    background: none;
    color: #dc2626;
    border: none;
    padding: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive waitlist form styles */
@media (max-width: 768px) {
    .waitlist-form {
        flex-direction: column;
        max-width: 320px;
        padding: 4px;
        gap: 0;
    }
    
    .waitlist-email {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 46px 46px 0 0;
    }
    
    .waitlist-submit {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 140px;
        border-radius: 0 0 46px 46px;
    }
    
    .waitlist-message {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Responsive styles for Bottom CTA */
@media (max-width: 768px) {
    .cta-content-wrapper {
        padding: 60px 40px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bottom-cta-section {
        padding: 0;
    }
    
    .cta-content-wrapper {
        padding: 40px 24px;
        border-radius: 12px;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .cta-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
} 

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Previously Worked With Section */
.previously-worked-with {
    margin: 20px 0;
    text-align: center;
}

.previously-worked-title {
    font-size: 18px;
    font-weight: 600;
    color: #000B42;
    margin-bottom: 40px;
    text-align: center;
}

.logos-zigzag {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    column-gap: 15px;
    row-gap: 40px;
}

.logo-row {
    display: contents;
}

.logo-row-top .company-logo-container:nth-child(1) {
    grid-column: 1;
}

.logo-row-top .company-logo-container:nth-child(2) {
    grid-column: 3;
}

.logo-row-top .company-logo-container:nth-child(3) {
    grid-column: 5;
}

.logo-row-top .company-logo-container:nth-child(4) {
    grid-column: 7;
}

.logo-row-top .company-logo-container:nth-child(5) {
    grid-column: 9;
}

.logo-row-top .company-logo-container:nth-child(6) {
    grid-column: 11;
}

.logo-row-bottom .company-logo-container:nth-child(1) {
    grid-column: 2;
}

.logo-row-bottom .company-logo-container:nth-child(2) {
    grid-column: 4;
}

.logo-row-bottom .company-logo-container:nth-child(3) {
    grid-column: 6;
}

.logo-row-bottom .company-logo-container:nth-child(4) {
    grid-column: 8;
}

.logo-row-bottom .company-logo-container:nth-child(5) {
    grid-column: 10;
}

.company-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.company-name {
    font-size: 10px;
    line-height: 1.2;
    color: #6b7280;
    text-align: center;
    font-weight: 400;
    max-width: 60px;
    word-wrap: break-word;
    hyphens: auto;
}

.company-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    object-position: center;
    padding: 4px;
    background: transparent;
    border: none;
    border-radius: 12px;
    filter: opacity(0.85);
    flex-shrink: 0;
    justify-self: center;
    align-self: center;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.company-logo.lazyloaded {
    opacity: 1;
}

/* Staggered fade-in for company logos */
.logo-row-top .company-logo-container:nth-child(1) .company-logo { transition-delay: 0.1s; }
.logo-row-top .company-logo-container:nth-child(2) .company-logo { transition-delay: 0.2s; }
.logo-row-top .company-logo-container:nth-child(3) .company-logo { transition-delay: 0.3s; }
.logo-row-top .company-logo-container:nth-child(4) .company-logo { transition-delay: 0.4s; }
.logo-row-top .company-logo-container:nth-child(5) .company-logo { transition-delay: 0.5s; }
.logo-row-top .company-logo-container:nth-child(6) .company-logo { transition-delay: 0.6s; }

.logo-row-bottom .company-logo-container:nth-child(1) .company-logo { transition-delay: 0.15s; }
.logo-row-bottom .company-logo-container:nth-child(2) .company-logo { transition-delay: 0.25s; }
.logo-row-bottom .company-logo-container:nth-child(3) .company-logo { transition-delay: 0.35s; }
.logo-row-bottom .company-logo-container:nth-child(4) .company-logo { transition-delay: 0.45s; }
.logo-row-bottom .company-logo-container:nth-child(5) .company-logo { transition-delay: 0.55s; }

/* Fade-in animation for all lazy-loaded images */
.member-photo-img,
.profile-img,
.nav-icon,
.social-icon-img,
.bg-decoration-img {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.member-photo-img.lazyloaded,
.profile-img.lazyloaded,
.nav-icon.lazyloaded,
.social-icon-img.lazyloaded,
.bg-decoration-img.lazyloaded {
    opacity: 1;
}

/* Team member card animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for team members */
.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }
.team-member:nth-child(7) { animation-delay: 0.7s; }
.team-member:nth-child(8) { animation-delay: 0.8s; }
.team-member:nth-child(9) { animation-delay: 0.9s; }
.team-member:nth-child(10) { animation-delay: 1.0s; }
.team-member:nth-child(11) { animation-delay: 1.1s; }
.team-member:nth-child(12) { animation-delay: 1.2s; }


/* Mobile Responsive */
@media (max-width: 768px) {
    .previously-worked-with {
        margin: 40px 0 30px 0;
    }
    
    .previously-worked-title {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .logos-zigzag {
        max-width: 500px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 25px 15px;
        padding: 0 20px;
        align-items: center;
        justify-content: center;
    }
    
    .logo-row {
        display: contents;
    }
    
    /* Row 1: First 3 logos - spread across 4 columns with gaps */
    .logo-row-top .company-logo-container:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    .logo-row-top .company-logo-container:nth-child(2) {
        grid-column: 2 / 4;
        grid-row: 1;
        justify-self: center;
    }
    .logo-row-top .company-logo-container:nth-child(3) {
        grid-column: 4;
        grid-row: 1;
    }
    
    /* Row 2: 2 logos centered in the gaps between row 1 logos */
    .logo-row-top .company-logo-container:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 2;
        justify-self: center;
    }
    .logo-row-top .company-logo-container:nth-child(5) {
        grid-column: 3 / 5;
        grid-row: 2;
        justify-self: center;
    }
    
    /* Row 3: Next 3 logos */
    .logo-row-top .company-logo-container:nth-child(6) {
        grid-column: 1;
        grid-row: 3;
    }
    .logo-row-bottom .company-logo-container:nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 3;
        justify-self: center;
    }
    .logo-row-bottom .company-logo-container:nth-child(2) {
        grid-column: 4;
        grid-row: 3;
    }
    
    /* Row 4: 2 logos centered in the gaps between row 3 logos */
    .logo-row-bottom .company-logo-container:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 4;
        justify-self: center;
    }
    .logo-row-bottom .company-logo-container:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 4;
        justify-self: center;
    }
    
    /* Row 5: Last logo (centered across all columns) */
    .logo-row-bottom .company-logo-container:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 5;
        justify-self: center;
    }
    
    
    .company-logo {
        width: 47px;  /* 36px * 1.3 */
        height: 47px;
        padding: 4px;
        justify-self: unset;
        align-self: unset;
    }
    
    .company-name {
        font-size: 10px;  /* 8px * 1.3, rounded */
        max-width: 60px;  /* 45px * 1.3, rounded */
    }
}

@media (max-width: 480px) {
    .previously-worked-with {
        margin: 30px 0 20px 0;
    }
    
    .logos-zigzag {
        max-width: 400px;
        gap: 20px 12px;
        padding: 0 20px;
    }
    
    /* Hide the last logo on very small screens */
    .logo-row-bottom .company-logo-container:nth-child(5) {
        display: none;
    }
    
    .company-logo {
        width: 39px;  /* 30px * 1.3 */
        height: 39px;
        padding: 3px;
        border-radius: 10px;
    }
    
    .company-name {
        font-size: 9px;  /* 7px * 1.3, rounded */
        max-width: 46px;  /* 35px * 1.3, rounded */
        gap: 5px;
    }
    
    .company-logo-container {
        gap: 4px;
    }
}

/* History Section */
.history-section {
    background: var(--bg-secondary);
    padding: var(--space-20) 0;
    margin-top: var(--space-20);
}

/* Page Hero Section */
.page-hero-section {
    background: transparent;
    padding: var(--space-20) 0 0 0;
    margin-top: var(--space-20);
    margin-bottom: 40px;
}

.history-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: var(--space-6);
}

.history-content-horizontal {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--space-12);
    align-items: end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.history-left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.history-right-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* About us page specific centered layout */
.history-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: var(--space-6);
    padding: 0 var(--space-8);
}

.history-title {
    font-family: var(--font-family-primary);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: #000B42;
    margin: 0;
    line-height: var(--leading-tight);
}

.history-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--text-xl);
    color: #000B42;
    opacity: 0.5;
    line-height: var(--leading-relaxed);
    margin: 0;
}

.history-text {
    font-family: var(--font-family-secondary);
    font-size: var(--text-lg);
    color: #000B42;
    line-height: var(--leading-relaxed);
    margin: 0;
}

.history-text-desktop {
    font-family: var(--font-family-secondary);
    font-size: var(--text-lg);
    color: #000B42;
    line-height: var(--leading-relaxed);
    margin: 0;
}

.history-text-mobile {
    font-family: var(--font-family-secondary);
    font-size: var(--text-lg);
    color: #000B42;
    line-height: var(--leading-relaxed);
    margin: 0;
    display: none;
}

/* Desktop view - show desktop text, hide mobile text */
@media (min-width: 769px) {
    .history-text-mobile {
        display: none;
    }
    .history-text-desktop {
        display: block;
    }
}

/* Mobile view - show mobile text, hide desktop text */
@media (max-width: 768px) {
    .history-content-horizontal {
        display: block !important;
        padding: 0 var(--space-4) !important;
    }
    
    .history-left-column {
        width: 100% !important;
        max-width: none !important;
    }
    
    .history-right-column {
        display: none !important;
    }
    
    .history-text-mobile {
        display: block;
        margin-top: var(--space-12);
    }
    .history-text-desktop {
        display: none;
    }
}

/* Team Section */
.team-section {
    background: transparent;
    padding: var(--space-20) 0;
}

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

.team-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #a8acbf;
    line-height: var(--leading-tight);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-4);
}

.team-member {
    flex: 0 0 calc(33.333% - var(--space-4));
    max-width: 320px;
    min-width: 200px;
}

.team-member {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    padding: var(--space-5);
    padding-bottom: 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-normal);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-member {
        flex: 0 0 calc(50% - var(--space-4));
        max-width: 380px;
    }
    
    .team-members-grid {
        justify-content: space-around;
    }
}

/* Mobile view - 2 columns with tighter spacing */
@media (max-width: 768px) {
    .team-members-grid {
        gap: 12px;
        padding: 0 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .team-member {
        flex: 0 0 calc(50% - 6px) !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: var(--space-3);
        width: calc(50% - 6px);
    }
}

/* Extra small mobile - 2 columns with even tighter spacing */
@media (max-width: 480px) {
    .team-members-grid {
        gap: 10px;
        padding: 0 6px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 5px) !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: var(--space-3);
        width: calc(50% - 5px);
    }
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    overflow: hidden;
}

.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: 50%;
}

.member-name {
    font-family: var(--font-family-secondary);
    font-size: var(--text-base);
    font-weight: 600;
    color: #000B42;
    margin-bottom: var(--space-2);
    white-space: normal;
    word-break: keep-all;
    min-height: 1.5em;
    line-height: 1.3;
}

.member-role {
    font-family: var(--font-family-secondary);
    font-size: var(--text-sm);
    color: #000B42;
    opacity: 0.5;
    font-weight: 500;
}

/* Community CTA Section */
.community-cta {
    background: transparent;
    padding: var(--space-20) 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.cta-subtitle {
    font-size: var(--text-xl);
    color: var(--text-gray);
    margin-bottom: var(--space-12);
    line-height: var(--leading-relaxed);
}

.cta-buttons {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: #8fafff;
    color: #000b42;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #8fafff;
    font-size: var(--text-base);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #000b42;
    color: white;
    border-color: #000b42;
}

.cta-button .social-icon-img {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
}

.cta-button:hover .social-icon-img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(100%);
}

.cta-button span {
    font-weight: 600;
}

/* Footer Updates for About Us */
.work-with-us-btn {
    background: var(--color-primary);
    color: var(--text-primary);
    border: none;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: var(--text-base);
}

.work-with-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--color-primary-dark);
}

.work-with-us-btn .social-icon-img {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
}

.work-with-us-btn:hover .social-icon-img {
    transform: scale(1.1);
}

.footer-accreditations {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    margin-bottom: var(--space-4);
}

.accreditation-badge {
    background: var(--bg-tertiary);
    color: var(--text-gray);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--text-xs);
    font-weight: 500;
}

.fireblocks-badge {
    background: var(--color-primary);
    color: var(--text-primary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--text-xs);
    font-weight: 500;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

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

.footer-social {
    display: flex;
    gap: var(--space-4);
    justify-content: flex-end;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: center;
    border-top: 1px solid var(--bg-tertiary);
    padding-top: var(--space-4);
} 

/* ========================================
   ENTERPRISE PAGE STYLES
   ======================================== */

/* Enterprise Features - Modern Implementation */
.enterprise-features {
    padding: 0;
    background: transparent;
}

.enterprise-section {
    background: transparent;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-content {
    position: relative;
    z-index: 2;
}

.enterprise-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.enterprise-header-text {
    flex: 1;
}

.enterprise-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.enterprise-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.enterprise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.enterprise-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.card-value {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-value strong {
    color: #111827;
    font-weight: 600;
}

.enterprise-emblem {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    opacity: 0.9;
}

.emblem-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enterprise-features {
        padding: 0;
    }
    
    .enterprise-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .enterprise-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .enterprise-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .enterprise-subtitle {
        font-size: 16px;
    }
    
    .enterprise-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .enterprise-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-value {
        font-size: 13px;
    }
    
    .enterprise-emblem {
        width: 80px;
        height: 80px;
    }
}

/* Developer Features - Modern Implementation */
.developer-features-simple {
    padding: 0;
    background: transparent;
    margin-bottom: 80px;
}

.features-grid-simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card-simple {
    background: linear-gradient(135deg, rgba(62, 72, 193, 0.01) 0%, rgba(79, 70, 229, 0.005) 50%, rgba(62, 72, 193, 0.01) 100%);
    border-radius: 20px;
    padding: 32px;
    padding-bottom: 40px;
    padding-right: 40px;
    border: 1px solid rgba(220, 222, 244, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 350px;
    text-align: left;
    flex: 1;
    max-width: 1050px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-simple:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(62, 72, 193, 0.02) 0%, rgba(79, 70, 229, 0.01) 50%, rgba(62, 72, 193, 0.02) 100%);
    border-color: rgba(79, 70, 229, 0.2);
}

.feature-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #3e48c1, #556aff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-simple:hover::before {
    opacity: 1;
}

.feature-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.feature-title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #000b42, #3e48c1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.feature-subtitle-main {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.feature-list li {
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    text-align: left;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }

/* Override animation delays for typewriter lists */
.typewriter-list li:nth-child(1) { animation-delay: 0s !important; }
.typewriter-list li:nth-child(2) { animation-delay: 0s !important; }
.typewriter-list li:nth-child(3) { animation-delay: 0s !important; }
.typewriter-list li:nth-child(4) { animation-delay: 0s !important; }

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

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

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3e48c1, #556aff);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(62, 72, 193, 0.1);
}

.feature-list li strong {
    font-family: 'Space Grotesk', sans-serif;
    color: #1f2937;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    text-align: left;
    line-height: 1.4;
}

.feature-list li br + * {
    color: #6b7280;
    font-size: 14px;
    text-align: left;
}

/* Ensure all text in feature cards is left-aligned */
.feature-card-simple * {
    text-align: left !important;
}

/* Override flex layout for developer feature cards - ensure vertical stacking */
.developer-features-simple .feature-list li {
    display: block !important;
    align-items: unset !important;
    gap: unset !important;
    flex-direction: column !important;
}

/* Removed spacer line above bold texts in developer feature cards */

/* Background images for each card */
.feature-card-simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 450px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.feature-card-simple:hover::after {
    opacity: 1;
    transform: scale(1.02);
    animation: pictureFloat 3s ease-in-out infinite;
}

@keyframes pictureFloat {
    0%, 100% {
        transform: scale(1.02) translateY(0px);
    }
    50% {
        transform: scale(1.05) translateY(-3px);
    }
}

.zero-cost-card::after {
    background-image: url('assets/Custom-icons/Illustration Zero cost.png');
}

.riscv-card::after {
    background-image: url('assets/Custom-icons/Illustration RISCV.png');
}

.customizable-card::after {
    background-image: url('assets/Custom-icons/Illustration customizable.png');
}

.secure-card::after {
    background-image: url('assets/Custom-icons/Illustration secure and private.png');
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .developer-features-simple {
        padding: 0;
        margin-bottom: 60px;
    }
    
    .features-grid-simple {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }
    
    .feature-card-simple {
        padding: 24px;
        padding-bottom: 40px;
        padding-right: 40px;
        min-height: 250px;
        max-width: 100%;
    }
    
    .feature-card-simple::after {
        width: 200px;
        height: 300px;
        opacity: 0.5;
    }
    
    .feature-card-simple:hover {
        transform: translateY(-4px);
    }
    
    .feature-title-main {
        font-size: 24px;
    }
    
    .feature-subtitle-main {
        font-size: 15px;
    }
    
    .feature-list li {
        font-size: 14px;
        padding-left: 24px;
        margin-bottom: 20px;
    }
    
    .feature-list li::before {
        width: 10px;
        height: 10px;
        top: 6px;
    }
}

@media (max-width: 480px) {
    .developer-features-simple {
        padding: 0;
        margin-bottom: 60px;
    }
    
    .features-grid-simple {
        padding: 0 12px;
        gap: 16px;
    }
    
    .feature-card-simple {
        padding: 20px;
        padding-bottom: 40px;
        padding-right: 40px;
        min-height: 220px;
        max-width: 100%;
    }
    
    .feature-card-simple::after {
        width: 160px;
        height: 240px;
        opacity: 0.4;
    }
    
    .feature-title-main {
        font-size: 22px;
    }
    
    .feature-list li {
        font-size: 13px;
        padding-left: 20px;
    }
}

/* Developer Section Headers */
.developer-section-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000b42;
    text-align: center;
    line-height: 1.3;
    margin: 0 auto 80px auto;
    max-width: 800px;
}

.developer-section-footer {
    margin: 80px auto 0 auto;
}

@media (max-width: 768px) {
    .developer-section-header {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .developer-section-footer {
        margin-top: 60px;
    }
}

.enterprise-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

.feature-section {
    background: var(--bg-card);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.feature-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.feature-subtitle {
    font-size: var(--text-lg);
    color: var(--text-gray);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.feature-item {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    line-height: var(--leading-relaxed);
}

.feature-item p {
    font-size: var(--text-sm);
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
}

.why-build {
    background: transparent;
    padding: var(--space-20) 0;
    text-align: center;
}

.why-build .section-header {
    margin-bottom: var(--space-12);
}

.why-build .section-title {
    color: #000B42;
    opacity: 0.5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-build .section-subtitle {
    color: var(--text-gray);
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.cta-text {
    font-size: var(--text-xl);
    color: var(--text-dark);
    font-weight: 500;
}

/* ========================================
   DEVELOPERS PAGE STYLES
   ======================================== */
.developer-features {
    background: transparent;
    padding: var(--space-20) 0;
}

.developer-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

/* ========================================
   ECOSYSTEM PAGE STYLES
   ======================================== */
.ecosystem-features {
    background: transparent;
    padding: var(--space-20) 0;
}

.ecosystem-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

/* Case Studies Section */
.case-studies {
    background: transparent;
    padding: var(--space-20) 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

.case-study {
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-normal);
}

.case-study:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.case-study-number {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
}

.case-study h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.case-study p {
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.case-study-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.case-study-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ZkBoost Consortium Section */
.zkboost-consortium {
    background: var(--bg-tertiary);
    padding: var(--space-20) 0;
}

.consortium-content {
    max-width: 800px;
    margin: 0 auto var(--space-12);
    text-align: center;
}

.consortium-content p {
    font-size: var(--text-lg);
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.consortium-members {
    margin-top: var(--space-12);
}

.consortium-members h4 {
    font-size: var(--text-xl);
    color: var(--text-dark);
    margin-bottom: var(--space-8);
    text-align: center;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-4);
}

.member {
    background: var(--bg-card);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 500;
    color: var(--text-gray);
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-normal);
}

.member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    color: var(--text-dark);
}

/* Projects Section */
.projects {
    background: var(--bg-secondary);
    padding: var(--space-20) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding: var(--space-4);
}

.project-card {
    background: var(--bg-card);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.project-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.project-card p {
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-gray);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

/* Metrics Section */
.metrics {
    background: var(--bg-tertiary);
    padding: var(--space-20) 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.metric-label {
    font-size: var(--text-lg);
    color: var(--text-gray);
    font-weight: 500;
}

/* ========================================
   PARTNERS SECTION STYLES
   ======================================== */
.partners-section {
    padding: var(--space-20) 0;
    background: var(--bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
    padding: var(--space-6);
}

/* ========================================
   ECOSYSTEM PARTNERS SECTION STYLES
   ======================================== */
.ecosystem-partners {
    padding: 0;
    margin: 0;
    background: transparent;
    animation: fadeInImmediate 0.8s ease-out;
}

/* Ecosystem Filter Styles */
.ecosystem-filters {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border-radius: 16px;
    padding: var(--space-6);
    margin: 0 0 var(--space-8) 0;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.filter-title {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.filter-clear {
    background: transparent;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: var(--space-2) var(--space-3);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-clear:hover {
    background: #F1F5F9;
    color: var(--text-dark);
    border-color: #CBD5E1;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.filter-tag {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: var(--space-2) var(--space-3);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    will-change: transform, background-color, border-color, color;
}

.filter-tag:hover {
    background: #F1F5F9;
    border-color: #C7D2FE;
    color: var(--text-dark);
    transform: translateY(-1px);
}

.filter-tag.active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.filter-results {
    padding-top: var(--space-3);
    border-top: 1px solid #F1F5F9;
}

.results-count {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.loading-filters {
    color: var(--text-secondary);
    font-size: 14px;
    padding: var(--space-4);
    text-align: center;
}

/* Mobile responsive filter styles */
@media (max-width: 768px) {
    .ecosystem-filters {
        padding: var(--space-4);
        margin: 0 0 var(--space-4) 0;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .filter-title {
        font-size: 16px;
    }
    
    .filter-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.ecosystem-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Partner Card Design */
.partner-card {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border-radius: 14px;
    padding: var(--space-5);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-height: 190px;
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #C7D2FE;
    background: #fafbfc;
}

.partner-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-card.clickable:hover {
    border-color: #3B82F6;
    background: #F8FAFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

/* Card Header with Logo and External Link */
.partner-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.partner-external-link {
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #F1F5F9;
}

.partner-external-link:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

/* Card Content */
.partner-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.partner-name {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: 700;
    color: #000B42;
    margin: 0;
    line-height: 1.3;
    margin-top: var(--space-1);
}

.partner-description {
    font-family: var(--font-family-secondary);
    color: #64748B;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    margin-top: var(--space-2);
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
    margin-top: var(--space-2);
}

.partner-tag {
    font-family: var(--font-family-secondary);
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: var(--text-secondary);
    padding: 4px 8px;
    /* Ensure partner tags always maintain their styling */
    box-sizing: border-box;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

/* Tag color variants */
.partner-tag[data-tag="VALIDATOR"], .filter-tag[data-tag="VALIDATOR"].active {
    background: #FEF3C7;
    color: #92400E;
    border-color: #F59E0B;
}

.partner-tag[data-tag="INFRASTRUCTURE"], 
.partner-tag[data-tag="Infrastructure"], 
.partner-tag[data-tag="infrastructure"],
.filter-tag[data-tag="INFRASTRUCTURE"].active,
.filter-tag[data-tag="Infrastructure"].active,
.filter-tag[data-tag="infrastructure"].active {
    background: #DBEAFE;
    color: #1E40AF;
    border-color: #3B82F6;
}

.partner-tag[data-tag="DEFI"], .filter-tag[data-tag="DEFI"].active {
    background: #D1FAE5;
    color: #059669;
    border-color: #10B981;
}

.partner-tag[data-tag="ZKRAAS"], .filter-tag[data-tag="ZKRAAS"].active {
    background: #E0E7FF;
    color: #4338CA;
    border-color: #6366F1;
}

.partner-tag[data-tag="TESTNET VALIDATOR"], .filter-tag[data-tag="TESTNET VALIDATOR"].active {
    background: #FCE7F3;
    color: #BE185D;
    border-color: #EC4899;
}

.partner-tag[data-tag="BLOCKCHAIN"], .filter-tag[data-tag="BLOCKCHAIN"].active {
    background: #F3E8FF;
    color: #7C3AED;
    border-color: #8B5CF6;
}

.partner-tag[data-tag="ENTERPRISE"], 
.partner-tag[data-tag="Enterprise"], 
.partner-tag[data-tag="enterprise"],
.filter-tag[data-tag="ENTERPRISE"].active,
.filter-tag[data-tag="Enterprise"].active,
.filter-tag[data-tag="enterprise"].active {
    background: #FDF2F8;
    color: #BE185D;
    border-color: #EC4899;
}

.partner-tag[data-tag="WEB3"], .filter-tag[data-tag="WEB3"].active {
    background: #F0F9FF;
    color: #0369A1;
    border-color: #0EA5E9;
}

.partner-tag[data-tag="GAMING"], .filter-tag[data-tag="GAMING"].active {
    background: #FEFCE8;
    color: #A16207;
    border-color: #EAB308;
}

.partner-tag[data-tag="SECURITY"], .filter-tag[data-tag="SECURITY"].active {
    background: #FEF2F2;
    color: #DC2626;
    border-color: #EF4444;
}

/* Comprehensive tag colors for all ecosystem partners */
.partner-tag[data-tag="Investor"], .filter-tag[data-tag="Investor"].active {
    background: #FFF7ED;
    color: #C2410C;
    border-color: #FB923C;
}
.partner-tag[data-tag="VALIDATOR"], 
.partner-tag[data-tag="Validator"], 
.partner-tag[data-tag="validator"],
.filter-tag[data-tag="VALIDATOR"].active,
.filter-tag[data-tag="Validator"].active,
.filter-tag[data-tag="validator"].active {
    background: #FEF3C7;
    color: #92400E;
    border-color: #F59E0B;
}
.partner-tag[data-tag="Development Partner"], .filter-tag[data-tag="Development Partner"].active {
    background: #ECFDF5;
    color: #047857;
    border-color: #059669;
}
.partner-tag[data-tag="ZkBoost Consortium"], .filter-tag[data-tag="ZkBoost Consortium"].active {
    background: #F3E8FF;
    color: #7C3AED;
    border-color: #8B5CF6;
}

.partner-tag[data-tag="Data availability"], .filter-tag[data-tag="Data availability"].active {
    background: #ECFDF5;
    color: #047857;
    border-color: #059669;
}

.partner-tag[data-tag="ZK FHE"], .filter-tag[data-tag="ZK FHE"].active {
    background: #F0F9FF;
    color: #0369A1;
    border-color: #0284C7;
}

.partner-tag[data-tag="RaaS"], .filter-tag[data-tag="RaaS"].active {
    background: #FFFBEB;
    color: #B45309;
    border-color: #D97706;
}

.partner-tag[data-tag="Verification"], .filter-tag[data-tag="Verification"].active {
    background: #FEFCE8;
    color: #A16207;
    border-color: #CA8A04;
}

.partner-tag[data-tag="Consortium"], .filter-tag[data-tag="Consortium"].active {
    background: #F3E8FF;
    color: #7C3AED;
    border-color: #8B5CF6;
}

.partner-tag[data-tag="L2"], .filter-tag[data-tag="L2"].active {
    background: #E0E7FF;
    color: #4338CA;
    border-color: #6366F1;
}

.partner-tag[data-tag="ZK Proofs"], .filter-tag[data-tag="ZK Proofs"].active {
    background: #EFF6FF;
    color: #1D4ED8;
    border-color: #3B82F6;
}

.partner-tag[data-tag="Privacy"], .filter-tag[data-tag="Privacy"].active {
    background: #F4F3FF;
    color: #6D28D9;
    border-color: #7C3AED;
}

.partner-tag[data-tag="STARK"], .filter-tag[data-tag="STARK"].active {
    background: #FAF5FF;
    color: #9333EA;
    border-color: #A855F7;
}

.partner-tag[data-tag="Middleware"], .filter-tag[data-tag="Middleware"].active {
    background: #F0FDF4;
    color: #15803D;
    border-color: #22C55E;
}

.partner-tag[data-tag="zkEVM"], .filter-tag[data-tag="zkEVM"].active {
    background: #DBEAFE;
    color: #1E40AF;
    border-color: #2563EB;
}

.partner-tag[data-tag="Developer Tools"], .filter-tag[data-tag="Developer Tools"].active {
    background: #FEF3C7;
    color: #92400E;
    border-color: #F59E0B;
}

.partner-tag[data-tag="Research"], .filter-tag[data-tag="Research"].active {
    background: #F5F3FF;
    color: #5B21B6;
    border-color: #7C3AED;
}

.partner-tag[data-tag="Staking"], .filter-tag[data-tag="Staking"].active {
    background: #FDF4FF;
    color: #A21CAF;
    border-color: #C084FC;
}

.partner-tag[data-tag="Prover nodes"], .filter-tag[data-tag="Prover nodes"].active {
    background: #ECFCCB;
    color: #365314;
    border-color: #65A30D;
}

.partner-tag[data-tag="DeFi"], .filter-tag[data-tag="DeFi"].active {
    background: #D1FAE5;
    color: #059669;
    border-color: #10B981;
}

.partner-tag[data-tag="Infrastructure"], .filter-tag[data-tag="Infrastructure"].active {
    background: #DBEAFE;
    color: #1E40AF;
    border-color: #3B82F6;
}

.partner-tag[data-tag="placeholder"], .filter-tag[data-tag="placeholder"].active {
    background: #F1F5F9;
    color: #64748B;
    border-color: #94A3B8;
}

/* Dynamic colors for unknown tags based on hash of tag name */
.partner-tag:not([data-tag]), .filter-tag:not([data-tag]).active {
    background: #F8FAFC;
    color: #475569;
    border-color: #CBD5E1;
}

.partner-tag:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Loading State */
.loading-partners {
    text-align: center;
    padding: var(--space-8);
    color: var(--text-gray);
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #F1F5F9;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Featured Partners (for homepage) */
.featured-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.featured-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

.featured-partner img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.featured-partner .partner-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

/* Responsive styles for partners section */
@media (max-width: 768px) {
    .partners-section {
        padding: var(--space-8) 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: var(--space-2);
    }
    
    .ecosystem-partners {
        padding: 0 10px;
        margin: 0;
    }
    
    .ecosystem-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        padding: 0;
    }
    
    .community-cta {
        padding: var(--space-12) 0;
    }
    
    .community-cta .container {
        margin: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .partner-card {
        padding: var(--space-6);
        min-height: 240px;
    }
    
    .partner-logo-container {
        width: 72px;
        height: 72px;
    }
    
    .partner-external-link {
        width: 28px;
        height: 28px;
    }
    
    .partner-external-link i {
        width: 14px;
        height: 14px;
    }
    
    .featured-partners {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--space-4);
    }
    
    .featured-partner img {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
    
    .partner-card {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: var(--space-8) 0;
    }
    
    .partners-grid {
        gap: var(--space-4);
    }
    
    .ecosystem-partners {
        padding: 0 10px;
        margin: 0;
    }
    
    .ecosystem-partners-grid {
        gap: var(--space-4);
    }
    
    .partner-card {
        padding: var(--space-4);
    }
    
    .partner-logo-container {
        width: 54px;
        height: 54px;
    }
    
    .partner-name {
        font-size: 16px;
    }
    
    .partner-description {
        font-size: 13px;
    }
    
    .partner-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .featured-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .featured-partner img {
        max-height: 40px;
        max-width: 80px;
    }
    
    .featured-partner .partner-name {
        font-size: 12px;
    }
} 

/* Build for Public and Private Markets & Comparison Container */
.future-proof-comparison-container {
    padding: 0;
    margin: 0;
}

.future-proof-content {
    background: transparent;
    border-radius: 0;
    padding: 0 0 var(--space-8) 0;
    box-shadow: none;
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.future-proof-comparison-content {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border-radius: 24px;
    padding: var(--space-8);
    border: 1px solid rgba(85, 106, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 11, 66, 0.05);
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* Build for Public and Private Markets Section */
.future-proof-section {
    margin-top: 40px;
    margin-bottom: 0;
}

.future-proof-header {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px var(--space-8);
    text-align: center;
}

.future-proof-title {
    font-family: var(--font-family-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #000B42;
    margin: 0 0 var(--space-6) 0;
    line-height: var(--leading-tight);
    text-align: center;
}

.future-proof-subtitle {
    font-size: var(--text-lg);
    color: #64748b;
    line-height: var(--leading-relaxed);
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    margin-top: 0;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.use-case-card {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border: 1px solid rgba(85, 106, 255, 0.15);
    border-radius: 16px;
    padding: var(--space-3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 160px;
    height: 160px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 11, 66, 0.05);
    width: 100%;
}

.use-case-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
    opacity: 0.9;
}

.use-case-icon {
    width: 100%;
    height: 66%;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    justify-content: center;
    flex: 0 0 66%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.use-case-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    z-index: 10;
    display: block;
    transition: filter 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    pointer-events: none;
}

/* Staggered breathing animations for use case icons */
.use-case-card:nth-child(1) .use-case-icon img { animation-delay: 0s; }
.use-case-card:nth-child(2) .use-case-icon img { animation-delay: 0.5s; }
.use-case-card:nth-child(3) .use-case-icon img { animation-delay: 1s; }
.use-case-card:nth-child(4) .use-case-icon img { animation-delay: 1.5s; }
.use-case-card:nth-child(5) .use-case-icon img { animation-delay: 2s; }
.use-case-card:nth-child(6) .use-case-icon img { animation-delay: 2.5s; }
.use-case-card:nth-child(7) .use-case-icon img { animation-delay: 3s; }
.use-case-card:nth-child(8) .use-case-icon img { animation-delay: 3.5s; }
.use-case-card:nth-child(9) .use-case-icon img { animation-delay: 4s; }
.use-case-card:nth-child(10) .use-case-icon img { animation-delay: 4.5s; }

.use-case-text {
    font-size: 11px;
    font-weight: 500;
    color: #000B42;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    flex: 0 0 34%;
    display: flex;
    align-items: center;
    padding: 0 16px 16px 16px;
    justify-content: center;
    min-height: 48px;
}

/* 3D Carousel Styles */
.carousel-3d-container {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    perspective: 1200px;
    overflow: hidden;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}

.carousel-3d-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 200px;
    margin: -100px 0 0 -140px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.carousel-3d-slide .use-case-card {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

/* Navigation */
.carousel-3d-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -20px 0 20px 0;
}

.carousel-3d-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #000B42;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #000B42;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

.carousel-3d-btn:hover,
.carousel-3d-btn:focus {
    background: #000B42;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 11, 66, 0.3);
}

.carousel-3d-btn:active {
    transform: scale(0.95);
    background: #000B42;
    color: white;
}

/* 3D Positioning Classes */
.carousel-3d-slide.active {
    z-index: 10;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.2);
}

.carousel-3d-slide.prev {
    z-index: 5;
    transform: translateX(-320px) translateZ(-200px) rotateY(25deg) scale(0.8);
    opacity: 0.7;
}

.carousel-3d-slide.next {
    z-index: 5;
    transform: translateX(320px) translateZ(-200px) rotateY(-25deg) scale(0.8);
    opacity: 0.7;
}

.carousel-3d-slide.far-prev {
    z-index: 1;
    transform: translateX(-580px) translateZ(-400px) rotateY(45deg) scale(0.6);
    opacity: 0.4;
}

.carousel-3d-slide.far-next {
    z-index: 1;
    transform: translateX(580px) translateZ(-400px) rotateY(-45deg) scale(0.6);
    opacity: 0.4;
}

.carousel-3d-slide.hidden {
    opacity: 0;
    transform: translateX(0) translateZ(-600px) scale(0.3);
    z-index: 0;
}

/* Smooth transition for cards entering view */
.carousel-3d-slide.transitioning {
    animation: fadeInSmooth 0.6s ease-out;
}

.carousel-3d-slide.transitioning.far-prev {
    animation: fadeInFromLeft 0.6s ease-out;
}

.carousel-3d-slide.transitioning.far-next {
    animation: fadeInFromRight 0.6s ease-out;
}

@keyframes fadeInSmooth {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: inherit;
        filter: none;
    }
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-580px) translateZ(-400px) rotateY(45deg) scale(0.4);
        filter: blur(5px);
    }
    100% {
        opacity: 0.4;
        transform: translateX(-580px) translateZ(-400px) rotateY(45deg) scale(0.6);
        filter: none;
    }
}

@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translateX(580px) translateZ(-400px) rotateY(-45deg) scale(0.4);
        filter: blur(5px);
    }
    100% {
        opacity: 0.4;
        transform: translateX(580px) translateZ(-400px) rotateY(-45deg) scale(0.6);
        filter: none;
    }
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 768px) {
    .carousel-3d-container {
        perspective: 600px;
        padding: 0;
        margin: 0 calc(-1 * var(--space-4));
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow-x: hidden;
        touch-action: pan-y pinch-zoom;
    }
    
    .carousel-3d-wrapper {
        height: 280px;
        overflow: visible;
    }
    
    .carousel-3d-track {
        transition: transform 0.3s ease-out;
    }
    
    .carousel-3d-slide {
        width: 240px;
        height: 160px;
        margin: -80px 0 0 -120px;
        transition: transform 0.3s ease-out,
                    opacity 0.2s ease-out;
    }
    
    .carousel-3d-slide.active {
        transform: translateX(0) scale(1.05);
        opacity: 1;
    }
    
    .carousel-3d-slide.prev {
        transform: translateX(-180px) scale(0.8);
        opacity: 0.5;
    }
    
    .carousel-3d-slide.next {
        transform: translateX(180px) scale(0.8);
        opacity: 0.5;
    }
    
    .carousel-3d-slide.far-prev,
    .carousel-3d-slide.far-next {
        opacity: 0;
        transform: translateX(0) scale(0.5);
        pointer-events: none;
    }
    
    .carousel-3d-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-3d-navigation {
        margin: -10px 0 20px 0;
        gap: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .carousel-3d-container {
        perspective: 1000px;
        padding: 0;
        margin: 0;
    }
    
    .carousel-3d-wrapper {
        height: 360px;
    }
    
    .carousel-3d-slide {
        width: 260px;
        height: 180px;
        margin: -90px 0 0 -130px;
    }
    
    .carousel-3d-slide.active {
        transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.15);
    }
    
    .carousel-3d-slide.prev {
        transform: translateX(-280px) translateZ(-180px) rotateY(22deg) scale(0.75);
        opacity: 0.65;
    }
    
    .carousel-3d-slide.next {
        transform: translateX(280px) translateZ(-180px) rotateY(-22deg) scale(0.75);
        opacity: 0.65;
    }
    
    .carousel-3d-slide.far-prev {
        transform: translateX(-480px) translateZ(-350px) rotateY(40deg) scale(0.55);
        opacity: 0.35;
    }
    
    .carousel-3d-slide.far-next {
        transform: translateX(480px) translateZ(-350px) rotateY(-40deg) scale(0.55);
        opacity: 0.35;
    }
    
    .carousel-3d-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Comparison Section */
.comparison-section {
    margin-top: 0;
}

.comparison-header {
    margin-bottom: var(--space-8);
    padding: 0;
    background: transparent;
    text-align: center;
}

.comparison-title {
    font-family: var(--font-family-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #000B42;
    margin: 0;
    line-height: var(--leading-tight);
    text-align: center;
}

.comparison-subtitle {
    font-size: var(--text-lg);
    color: #64748b;
    line-height: var(--leading-relaxed);
    margin: 0;
    max-width: 800px;
}

.use-cases-grid + .comparison-subtitle {
    margin-top: var(--space-8);
}

.comparison-table-container {
    margin-top: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    padding: 0;
    position: relative;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

/* Hide mobile cards on desktop */
.mobile-comparison-cards {
    display: none;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    width: fit-content;
    min-width: auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px repeat(5, 200px);
    gap: var(--space-2);
    align-items: stretch;
}

.comparison-cell {
    padding: var(--space-2);
    border-radius: 1rem;
    font-size: var(--text-xs);
    text-align: center;
    min-height: 60px;
    height: 60px;
    width: 200px;
    line-height: var(--leading-snug);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-cell {
    background: transparent;
    color: #000B42;
    font-weight: 400;
    justify-content: flex-start;
    text-align: left;
    border-radius: 0;
    border: none;
}

.header-cell {
    background: transparent;
    color: #000B42;
    font-weight: 400;
    border: none;
    border-radius: 0;
    font-size: var(--text-xs);
}

.zenith-header {
    background: transparent !important;
    color: #000B42 !important;
    font-weight: 400;
    font-size: var(--text-xs);
}

.header-row .feature-cell {
    background: transparent !important;
    border: none !important;
    font-weight: 400;
    box-shadow: none !important;
}

.header-row .comparison-cell {
    border-radius: 0;
    background: transparent;
}

.data-cell {
    font-weight: 400;
    color: #000B42;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: var(--text-xs);
}

/* Desktop comparison table colors */
.scalability-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

.scalability-avalanche {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.scalability-opstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.scalability-zkstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.scalability-canton {
    background: #D1D9FF;
    color: #000B42;
}

/* Privacy row */
.privacy-avalanche, .privacy-opstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.privacy-zkstack {
    background: rgba(250, 204, 21, 0.15);
    color: #000B42;
}

.privacy-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

/* Infrastructure complexity row */
.complexity-avalanche {
    background: rgba(250, 204, 21, 0.15);
    color: #000B42;
}

.complexity-opstack, .complexity-zkstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.complexity-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

/* Integration row */
.integration-avalanche, .integration-opstack, .integration-zkstack, .integration-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
}

/* Launch cost row */
.cost-avalanche {
    background: rgba(250, 204, 21, 0.15);
    color: #000B42;
}

.cost-opstack, .cost-zkstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.cost-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

/* Ongoing infra cost row */
.ongoing-avalanche {
    background: rgba(250, 204, 21, 0.15);
    color: #000B42;
}

.ongoing-opstack, .ongoing-zkstack {
    background: rgba(239, 68, 68, 0.15);
    color: #000B42;
}

.ongoing-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

/* Compliance row */
.compliance-avalanche, .compliance-opstack, .compliance-zkstack {
    background: rgba(250, 204, 21, 0.15);
    color: #000B42;
}

.compliance-zenith {
    background: rgba(34, 197, 94, 0.15);
    color: #000B42;
    font-weight: 400;
}

/* Large tablet responsive styles for future-proof and comparison sections */
@media (max-width: 1200px) and (min-width: 1025px) {
    .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-5);
        padding: 20px;
    }
}

/* Tablet responsive styles for future-proof and comparison sections */
@media (max-width: 1024px) and (min-width: 769px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
        padding: 15px;
    }
    
    .use-case-card {
        padding: var(--space-4);
    }
    
    .use-case-icon {
        width: 100%;
        height: 66%;
        padding: 6px;
    }
    
}

/* Small tablet breakpoint - fix overflow issue */
@media (max-width: 900px) and (min-width: 769px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
        padding: 10px;
    }
    
    .future-proof-comparison-content {
        padding: 0;
        overflow: hidden;
    }
    
    .use-case-card {
        padding: var(--space-3);
    }
    
    .use-case-text {
        font-size: 14px;
    }
}

/* Mobile 2-Column Layout Styles */
@media (max-width: 768px) {
    /* Hide desktop table, show mobile cards */
    .comparison-table {
        display: none;
    }
    
    .mobile-comparison-cards {
        display: block;
    }
    
    /* New mobile 2-column structure */
    .mobile-feature-section {
        margin-bottom: var(--space-6);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }
    
    .mobile-feature-title {
        background: #000B42;
        color: white !important;
        font-weight: 600;
        font-size: var(--text-base);
        padding: var(--space-4) var(--space-5);
        margin: 0;
        border-bottom: 2px solid #E2E8F0;
        border-radius: 16px 16px 0 0;
    }
    
    .mobile-comparison-items {
        display: flex;
        flex-direction: column;
        padding: var(--space-4);
        gap: var(--space-2);
    }
    
    .mobile-comparison-item {
        display: flex;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-company-name,
    .mobile-feature-value {
        flex: 1;
        padding: var(--space-3) var(--space-4);
        display: flex;
        align-items: center;
        font-size: var(--text-xs);
        font-weight: 500;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        min-height: 48px;
    }
    
    .mobile-company-name {
        color: #1E293B;
        font-weight: 500;
        text-align: left;
        justify-content: flex-start;
        padding-right: var(--space-3);
        border-right: 1px solid #E2E8F0;
        max-width: 50%;
    }
    
    .mobile-feature-value {
        text-align: right;
        justify-content: flex-end;
        padding-left: var(--space-3);
        max-width: 50%;
    }
    
    /* Mobile dim hue backgrounds based on performance */
    .mobile-comparison-cards .mobile-comparison-item {
        color: #1E293B;
    }
    
    .mobile-comparison-cards .mobile-company-name,
    .mobile-comparison-cards .mobile-feature-value {
        background: transparent;
        color: #1E293B;
    }
    
    /* Best tier - Dim green background */
    .mobile-comparison-cards .scalability-zenith,
    .mobile-comparison-cards .privacy-zenith,
    .mobile-comparison-cards .privacy-canton,
    .mobile-comparison-cards .complexity-zenith,
    .mobile-comparison-cards .integration-zenith,
    .mobile-comparison-cards .integration-avalanche,
    .mobile-comparison-cards .integration-opstack,
    .mobile-comparison-cards .integration-zkstack,
    .mobile-comparison-cards .integration-canton,
    .mobile-comparison-cards .launch-cost-zenith,
    .mobile-comparison-cards .ongoing-cost-zenith,
    .mobile-comparison-cards .compliance-zenith {
        background: rgba(34, 197, 94, 0.08); /* Dim green */
    }
    
    /* Moderate tier - Dim yellow background */
    .mobile-comparison-cards .scalability-canton,
    .mobile-comparison-cards .privacy-zkstack,
    .mobile-comparison-cards .complexity-avalanche,
    .mobile-comparison-cards .launch-cost-avalanche,
    .mobile-comparison-cards .ongoing-cost-avalanche,
    .mobile-comparison-cards .compliance-avalanche,
    .mobile-comparison-cards .compliance-opstack,
    .mobile-comparison-cards .compliance-zkstack,
    .mobile-comparison-cards .compliance-canton {
        background: rgba(250, 204, 21, 0.08); /* Dim yellow */
    }
    
    /* Worst tier - Dim red background */
    .mobile-comparison-cards .scalability-avalanche,
    .mobile-comparison-cards .scalability-opstack,
    .mobile-comparison-cards .scalability-zkstack,
    .mobile-comparison-cards .privacy-avalanche,
    .mobile-comparison-cards .privacy-opstack,
    .mobile-comparison-cards .complexity-opstack,
    .mobile-comparison-cards .complexity-zkstack,
    .mobile-comparison-cards .complexity-canton,
    .mobile-comparison-cards .launch-cost-opstack,
    .mobile-comparison-cards .launch-cost-zkstack,
    .mobile-comparison-cards .launch-cost-canton,
    .mobile-comparison-cards .ongoing-cost-opstack,
    .mobile-comparison-cards .ongoing-cost-zkstack,
    .mobile-comparison-cards .ongoing-canton {
        background: rgba(239, 68, 68, 0.08); /* Dim red */
    }

    .future-proof-comparison-container {
        padding: 0;
        margin: 0;
    }
    
    .future-proof-comparison-content {
        padding: 0;
        margin: 0;
        border-radius: 16px;
    }
    
    .future-proof-header {
        margin-bottom: 0;
        padding: 0 20px;
        text-align: center;
    }

    .future-proof-title,
    .comparison-title {
        font-size: var(--text-3xl);
        margin: 20px 0 0 0;
        padding: 0;
        text-align: center;
    }

    .future-proof-subtitle,
    .comparison-subtitle {
        font-size: var(--text-base);
        margin: 0 auto 30px auto;
        padding: 0;
        text-align: center;
        line-height: 1.6;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
        padding: 0 10px;
        margin-top: 20px;
    }

    .use-case-card {
        padding: var(--space-3);
        min-height: 120px;
    }
    
    
    .use-case-icon {
        height: 70%;
        padding: 4px;
    }
    
    .use-case-icon img {
        width: 85%;
        height: 85%;
        max-width: 85%;
        max-height: 85%;
    }

    .use-case-card img {
        max-width: 100%;
        height: auto;
    }

    /* Hide desktop table on mobile */
    .desktop-table {
        display: none;
    }

    /* Hide desktop table on mobile */
    .desktop-table {
        display: none !important;
    }
    
    /* Show mobile cards on mobile */
    .mobile-comparison-cards {
        display: block;
    }
    
    /* New mobile feature-based sections */
    .comparison-table-container {
        padding: 20px 0;
        overflow: visible;
    }
    
    /* Create feature sections for mobile */
    .mobile-comparison-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    
    .mobile-feature-section {
        background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 11, 66, 0.1);
        border: 1px solid rgba(85, 106, 255, 0.15);
    }
    
    .mobile-feature-title {
        font-size: 18px;
        font-weight: 700;
        color: #000B42;
        margin-bottom: 20px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 2px solid #EEF2FF;
    }
    
    .mobile-solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 12px;
    }
    
    .mobile-solution-card {
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        border: 1px solid #e8ecff;
    }
    
    /* Best performance - Zenith cards */
    .mobile-solution-card.zenith-card {
        background: #000B42;
        color: white;
        border: 1px solid #000B42;
    }
    
    /* Good/Moderate performance cards */
    .mobile-solution-card.good-card {
        background: #D1D9FF;
        color: #000B42;
        border: 1px solid #B8C5FF;
    }
    
    /* Poor/Worst performance cards - default */
    .mobile-solution-card {
        background: #F8FAFF;
        color: #64748B;
        border: 1px solid #e8ecff;
    }
    
    .mobile-solution-name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    /* Text colors for different card types */
    .mobile-solution-card .mobile-solution-name {
        color: #64748B;
    }
    
    .mobile-solution-card.good-card .mobile-solution-name {
        color: #000B42;
        font-weight: 600;
    }
    
    .mobile-solution-card.zenith-card .mobile-solution-name {
        color: white;
        font-weight: 600;
    }
    
    .mobile-solution-value {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .mobile-solution-card .mobile-solution-value {
        color: #64748B;
    }
    
    .mobile-solution-card.good-card .mobile-solution-value {
        color: #000B42;
    }
    
    .mobile-solution-card.zenith-card .mobile-solution-value {
        color: white;
    }

    .comparison-cell {
        padding: 8px;
        border-radius: 8px;
        font-size: 10px;
        line-height: 1.2;
        min-height: 32px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-cell {
        position: sticky;
        left: 0;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        font-weight: 400;
        z-index: 10;
        text-align: left;
        justify-content: flex-start;
        padding-left: 12px;
        box-shadow: var(--shadow-sm);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .header-row .feature-cell {
        background: transparent !important;
        border: none !important;
        font-weight: 400 !important;
        box-shadow: none !important;
    }

    .feature-cell::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: #ffffff;
        z-index: -1;
        border-radius: 8px;
    }
    
    /* Remove ::before pseudo-element for header row feature-cell */
    .header-row .feature-cell::before {
        display: none;
    }

    .mobile-comparison-card {
        background: white;
        border-radius: 12px;
        padding: var(--space-4);
        box-shadow: var(--shadow-sm);
        border: 1px solid #e2e8f0;
    }

    .mobile-card-title {
        font-size: var(--text-lg);
        font-weight: 700;
        color: #000B42;
        margin: 0 0 var(--space-3) 0;
        text-align: center;
    }

    .mobile-feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .mobile-feature-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-2);
        border-radius: 8px;
        font-size: var(--text-sm);
    }

    .mobile-feature-label {
        font-weight: 600;
        color: #374151;
    }

    .mobile-feature-value {
        font-weight: 500;
        text-align: right;
    }

    .mobile-feature-item.best {
        background: #bfdbfe;
        color: #1e40af;
    }

    .mobile-feature-item.good {
        background: #bfdbfe;
        color: #1e40af;
    }

    .mobile-feature-item.moderate {
        background: #fef3c7;
        color: #92400e;
    }

    .mobile-feature-item.poor {
        background: #fecaca;
        color: #991b1b;
    }
}

@media (max-width: 480px) {
    .future-proof-comparison-content {
        padding: 0;
        margin: 0;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-1);
        padding: 4px;
    }

    .use-case-card {
        padding: var(--space-2);
        min-height: 100px;
    }
    
    .use-case-icon {
        height: 65%;
        padding: 2px;
    }
    
    /* Mobile comparison adjustments for smaller screens */
    .comparison-table-container {
        padding: 15px 0;
    }
    
    .mobile-comparison-cards {
        padding: 0 5px;
        gap: 15px;
    }
    
    .mobile-feature-section {
        padding: 12px;
        border-radius: 16px;
    }
    
    .mobile-feature-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .mobile-solutions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mobile-solution-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .mobile-solution-name {
        font-size: 13px;
    }
    
    .mobile-solution-value {
        font-size: 12px;
    }
    
    .use-case-icon img {
        width: 80%;
        height: 80%;
        max-width: 80%;
        max-height: 80%;
    }

    .use-case-card img {
        max-width: 100%;
        height: auto;
    }

    .comparison-table {
        width: fit-content;
        min-width: auto;
    }

    .comparison-row {
        grid-template-columns: 120px repeat(5, 120px);
    }

    .comparison-cell {
        padding: var(--space-2);
        font-size: var(--text-xs);
        height: 50px;
        width: 120px;
        min-height: 50px;
    }
}

/* ========================================
   BACKERS SECTION STYLES (About Us Page)
   ======================================== */
.backers-section {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

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

.backers-section .section-content {
    margin-bottom: var(--space-8);
}

.backers-section .section-title {
    font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    margin: 20px 0 0 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.backers-section .section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #6b7280;
    margin-left: 15px;
}

.backers-section .section-subtitle {
    font-size: var(--text-base);
    color: #6B7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.backers-banner-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.backers-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.backers-track {
    display: flex;
    animation: scroll-logos 40s linear infinite;
    width: fit-content;
}

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

/* Subtle breathing animations for feature images */
@keyframes breatheFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes breatheRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(1deg) scale(1.01);
    }
    75% {
        transform: rotate(-1deg) scale(1.01);
    }
}

@keyframes breathePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

@keyframes colorWave {
    0%, 100% {
        filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(800%) hue-rotate(200deg) brightness(95%) contrast(95%);
        transform: scale(1);
    }
    50% {
        filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
        transform: scale(1.05);
    }
}

.backer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 110px;
    padding: 0 var(--space-8);
    flex-shrink: 0;
}

.backer-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.backer-logo:hover .backer-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Tablet responsive */
@media (max-width: 768px) {
    .backers-section {
        padding: 0;
    }
    
    .backers-section .section-title {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .backers-section .section-content {
        margin-bottom: var(--space-8);
    }
    
    /* Grid layout for tablets too */
    .backers-banner-wrapper {
        width: 100%;
        position: static;
        margin: 0;
        padding: 0 var(--space-4);
        overflow: visible;
    }
    
    .backers-banner {
        overflow: visible;
    }
    
    .backers-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
        animation: none;
        width: 100%;
    }
    
    /* Hide duplicate logos on tablets */
    .backers-track .backer-logo:nth-child(n+12) {
        display: none;
    }
    
    .backer-logo {
        width: 100%;
        height: 80px;
        padding: var(--space-2);
    }
    
    .backer-logo-img {
        max-width: 90%;
        filter: none;
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .backers-section {
        padding: 0;
    }
    
    .backers-section .container {
        padding: 0 var(--space-3);
    }
    
    .backers-section .section-title {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .backers-section .section-subtitle {
        font-size: var(--text-sm);
    }
    
    .backers-section .section-content {
        margin-bottom: var(--space-6);
    }
    
    /* Hide scrolling banner on mobile */
    .backers-banner-wrapper {
        width: 100%;
        position: static;
        margin: 0;
        padding: 0 var(--space-3);
        overflow: visible;
    }
    
    .backers-banner {
        overflow: visible;
    }
    
    /* Display as grid on mobile */
    .backers-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2);
        animation: none;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hide duplicate logos on mobile */
    .backers-track .backer-logo:nth-child(n+12) {
        display: none;
    }
    
    .backer-logo {
        width: 100%;
        height: 75px;
        padding: var(--space-1);
    }
    
    .backer-logo-img {
        max-width: 95%;
        filter: none;
        opacity: 1;
    }
}

/* ========================================
   CASE STUDY SECTION STYLES (About Us Page)
   ======================================== */
.case-study-section {
    background: transparent;
    padding: calc(var(--space-20) + 10px) 0 var(--space-20) 0;
}

.case-study-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--space-4) + 10px);
}

/* Case study title - independent styling to cut inheritance dependencies */
.case-study-section .case-study-title {
    font-family: var(--font-family-secondary);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #000B42;
    margin: 0;
    margin-bottom: var(--space-2);
    padding: 40px 0 0 0;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Override all parent container alignments for case study section */
.case-study-section .section-header {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.case-studies {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.case-study-item {
    margin-bottom: var(--space-8);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    align-items: flex-start;
}

.case-study-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.case-study-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: #000B42;
    opacity: 0.5;
    margin: 0;
    line-height: var(--leading-relaxed);
}

.case-study-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
    align-items: center;
    justify-items: center;
    max-width: 300px;
}

/* Desktop-only logos under "Enabling EU Access" title */
.case-study-logos-desktop-left {
    display: none;  /* Hide desktop-left logos since we want them under paragraph */
}

/* Mobile-only logos in header */
.case-study-logos-mobile-header {
    display: none;  /* Hide header logos - we only want them after paragraph */
}

/* New centered layout structure */
.case-study-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.case-study-description-centered {
    margin: var(--space-6) 0;
}

.case-study-description-centered .case-study-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Centered logos - 4x1 on desktop */
.case-study-logos-centered {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
    align-items: center;
    justify-items: center;
    max-width: 100%;
}

/* Hide old logo variations */
.case-study-logos-mobile-paragraph {
    display: none;
}

/* Desktop logos - visible on desktop, hidden on mobile */
.case-study-logos-desktop {
    display: grid;
}

/* Desktop rules - hide mobile logos on desktop */
@media (min-width: 769px) {
    .case-study-logos-mobile-header {
        display: none;
    }
    
    .case-study-logos-mobile-paragraph {
        display: none;
    }
    
    .case-study-logos-desktop-left {
        display: grid;
    }
}

/* Mobile logos - hidden on desktop, visible on mobile */
.case-study-logos-mobile {
    display: none;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin: var(--space-6) 0;
    align-items: center;
    justify-items: flex-start;
    max-width: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
}

.case-study-logo {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4) contrast(1.2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Specific styling for Zenith logo to match #a7a9b0 color */
.case-study-logo[alt="Zenith"] {
    filter: brightness(0) saturate(100%) invert(71%) sepia(8%) saturate(113%) hue-rotate(185deg) brightness(92%) contrast(89%);
    opacity: 1;
}

/* Hover effects disabled for case study logos */

.case-study-combined-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
}

.case-study-right {
    display: flex;
    flex-direction: column;
}

.case-study-description {
    font-family: var(--font-family-secondary);
    font-size: var(--text-base);
    color: #000B42;
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Mobile responsive styles for case study section */
@media (max-width: 768px) {
    .case-study-section {
        padding: calc(var(--space-8) + 10px) 0 var(--space-8) 0;
    }
    
    .case-study-section .container {
        max-width: 100%;
        padding-left: calc(var(--space-4) + 10px);
        padding-right: calc(var(--space-4) + 10px);
    }
    
    .case-study-section .case-study-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-2);
        text-align: center;
        padding-top: 20px;
    }
    
    .case-studies {
        gap: var(--space-8);
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: left;
    }
    
    /* Hide desktop logos on mobile */
    .case-study-logos-desktop {
        display: none;
    }
    
    /* Hide desktop left logos on mobile */
    .case-study-logos-desktop-left {
        display: none;
    }
    
    /* Hide mobile header logos on mobile - use paragraph version instead */
    .case-study-logos-mobile-header {
        display: none;
    }
    
    /* Mobile: Keep centered logos but change to 2x2 grid */
    .case-study-logos-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
        margin: var(--space-4) 0;
    }
    
    .case-study-description-centered {
        margin: var(--space-4) 0;
    }
    
    /* Show mobile logos on mobile */
    .case-study-logos-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
        margin: var(--space-4) 0;
        align-items: center;
        justify-items: center;
        max-width: 100%;
    }
    
    .case-study-logo {
        max-width: 80px;
        max-height: 32px;
        filter: grayscale(100%) brightness(0.4) contrast(1.2);
        opacity: 0.8;
    }
    
    /* Maintain Zenith logo color on mobile */
    .case-study-logo[alt="Zenith"] {
        filter: brightness(0) saturate(100%) invert(71%) sepia(8%) saturate(113%) hue-rotate(185deg) brightness(92%) contrast(89%);
        opacity: 1;
    }
    
    .case-study-subtitle {
        font-size: var(--text-base);
    }
    
    .case-study-description {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .case-study-section {
        padding: calc(var(--space-8) + 10px) 0 var(--space-8) 0;
    }
    
    .case-study-section .container {
        max-width: 100%;
        padding-left: calc(var(--space-4) + 10px);
        padding-right: calc(var(--space-4) + 10px);
    }
    
    .case-study-section .case-study-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
        text-align: center;
    }
    
    .case-study-content {
        gap: var(--space-4);
    }
    
    /* Hide desktop logos on mobile */
    .case-study-logos-desktop {
        display: none;
    }
    
    /* Hide desktop left logos on mobile */
    .case-study-logos-desktop-left {
        display: none;
    }
    
    /* Hide mobile header logos on mobile - use paragraph version instead */
    .case-study-logos-mobile-header {
        display: none;
    }
    
    /* Mobile: Keep centered logos but adjust spacing */
    .case-study-logos-centered {
        gap: var(--space-2);
        margin: var(--space-3) 0;
    }
    
    .case-study-description-centered {
        margin: var(--space-3) 0;
    }
    
    .case-study-description-centered .case-study-description {
        font-size: var(--text-sm);
        padding: 0 var(--space-4);
    }
    
    /* Show mobile logos on mobile */
    .case-study-logos-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
        margin: var(--space-3) 0;
        align-items: center;
        justify-items: center;
        max-width: 100%;
    }
    
    .case-study-logo {
        max-width: 70px;
        max-height: 28px;
        filter: grayscale(100%) brightness(0.4) contrast(1.2);
        opacity: 0.8;
    }
    
    /* Maintain Zenith logo color on smaller mobile */
    .case-study-logo[alt="Zenith"] {
        filter: brightness(0) saturate(100%) invert(71%) sepia(8%) saturate(113%) hue-rotate(185deg) brightness(92%) contrast(89%);
        opacity: 1;
    }
}

/* ========================================
   BACKERS STRIP SECTION
   ======================================== */

.backers-strip {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.backers-strip .section-header {
    margin-bottom: var(--space-6);
    /* Match the styling of solution and performance headers */
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    /* Remove container constraint - extend to viewport edges with same padding as other headers */
    position: relative;
    left: calc(-1 * var(--space-4));
    width: calc(100% + 2 * var(--space-4));
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    box-sizing: border-box;
}

.backers-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.backers-scroll-track {
    display: flex;
    align-items: center;
    animation: scrollRight 30s linear infinite;
    width: fit-content;
}

.backers-strip-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.4;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.backers-strip-image:hover {
    opacity: 0.8;
}

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

/* Desktop/Mobile display toggles */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile vertical banners */
.mobile-banners {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: var(--space-4);
    padding: 0 var(--space-4);
    align-items: center;
}

.mobile-banner-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.mobile-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .backers-strip {
        padding: var(--space-8) 0;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .backers-strip-image {
        height: 180px;
    }
    
    .backers-scroll-track {
        animation: scrollRight 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .backers-strip {
        padding: var(--space-8) 0;
    }
    
    .mobile-banners {
        gap: var(--space-3);
        padding: 0 var(--space-4);
    }
    
    .mobile-banner-item {
        max-width: 280px;
    }
    
    .backers-strip-image {
        height: 144px;
    }
    
    .backers-scroll-track {
        animation: scrollRight 20s linear infinite;
    }
}

/* Key Value Proposition Section */
.key-value-section {
    padding: 0;
    margin-top: 0;
    background: transparent;
}

.value-header {
    text-align: center;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.value-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #000B42;
}

.highlight-zenith {
    color: #0066CC;
    font-weight: 700;
}

/* Selling Points Container */
.selling-points-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    overflow: visible;
}

/* Decorative Background Element with Parallax */
.selling-points-decoration {
    position: absolute;
    top: 50%;
    right: 0;
    width: 200vw;
    height: 120%;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.decoration-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(36, 47, 186, 0.03) 0%, 
        rgba(85, 106, 255, 0.05) 25%, 
        rgba(36, 47, 186, 0.02) 50%, 
        rgba(85, 106, 255, 0.04) 75%, 
        rgba(36, 47, 186, 0.01) 100%);
    border-radius: 50% 0 0 50%;
    transform: translateX(-50%);
    box-shadow: 
        inset 0 0 100px rgba(36, 47, 186, 0.05),
        0 0 200px rgba(85, 106, 255, 0.02);
}

/* Each section is a grid with exactly 50/50 columns */
.selling-point-row {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.selling-point-row:last-child {
    margin-bottom: 0;
}

/* Reverse layout for middle section */
.selling-point-row.reverse-layout {
    grid-template-columns: 50% 50%;
}

.selling-point-row.reverse-layout .selling-point-image-column {
    grid-column: 1;
    grid-row: 1;
}

.selling-point-row.reverse-layout .selling-point-content-column {
    grid-column: 2;
    grid-row: 1;
}

/* Content column - contains all text */
.selling-point-content-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Image column - contains the illustration */
.selling-point-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.selling-point-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000B42;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.selling-point-description {
    font-size: 17px;
    color: #000b42;
    line-height: 1.6;
    margin: 8px 0 24px 0;
    font-weight: 400;
}

.feature-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    padding-left: 0 !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    list-style: none !important;
    list-style-type: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    margin-left: 0;
}

.feature-list li::before {
    display: none !important;
    content: none !important;
}

.list-bullet {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    /* Filter to change star color to #000B42 */
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
}

.feature-list span {
    font-size: 16px;
    color: #000b42;
    line-height: 1.5;
    font-weight: 400;
}

.feature-image {
    width: 90%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    animation: breatheFloat 7s ease-in-out infinite;
}

/* Staggered animations for different feature images */
.selling-point-row:nth-child(1) .feature-image {
    animation-delay: 0s;
}

.selling-point-row:nth-child(2) .feature-image {
    animation-delay: 2s;
    animation-name: breatheRotate;
    animation-duration: 8s;
}

.selling-point-row:nth-child(3) .feature-image {
    animation-delay: 4s;
}

/* Make first selling point (Customizability) image 50% bigger */
.selling-point-row:first-child .feature-image {
    width: 135%;
    max-width: 675px;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .key-value-section {
        padding: 0;
        margin-top: 0;
    }
    
    .value-header {
        margin: 40px auto 40px;
        padding: 20px;
    }
    
    .value-title {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .selling-points-container {
        padding: 0 20px;
    }
    
    /* Hide decorative element on mobile for performance */
    .selling-points-decoration {
        display: none;
    }
    
    .selling-point-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
        padding: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .selling-point-row.reverse-layout {
        direction: initial;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 20px !important;
        margin-bottom: 60px !important;
    }
    
    .selling-point-content-column {
        order: 1;
        text-align: left;
        padding: 0 var(--space-4);
        grid-column: unset;
        grid-row: unset;
    }
    
    .selling-point-image-column {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    /* Hide empty image column on mobile for reverse-layout sections */
    .selling-point-row.reverse-layout .selling-point-image-column {
        display: none;
    }
    
    /* Ensure reverse-layout content column has same styling as regular sections */
    .selling-point-row.reverse-layout .selling-point-content-column {
        order: 1;
        text-align: left;
        padding: 0 var(--space-4);
        grid-column: unset;
        grid-row: unset;
        width: 100%;
        max-width: none;
    }
    
    .mobile-image-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .mobile-image-container .feature-image {
        max-width: 350px;
        width: 100%;
    }
    
    .selling-point-heading {
        font-size: 32px;
    }
    
    .selling-point-description {
        font-size: 15px;
        margin: 8px 0 20px 0;
    }
    
    .feature-list span {
        font-size: 14px;
    }
    
    .list-bullet {
        width: 14px;
        height: 14px;
    }
    
    .feature-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .selling-point-heading {
        font-size: 28px;
    }
    
    .feature-image {
        max-width: 280px;
    }
}

/* ======================================== 
   Story behind Zenith Timeline Section 
   ======================================== */

.zenith-story-section {
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.story-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: none;
}

.story-title {
    font-family: var(--font-family-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #000B42;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.story-subtitle {
    font-size: var(--text-lg);
    color: #000B42;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 100px auto;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

.timeline-arrow {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #000B42 0%, 
        #242FBA 25%, 
        #556AFF 50%, 
        #242FBA 75%, 
        #000B42 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 11, 66, 0.3);
}

/* Removed up-pointing arrow */
.timeline-arrow::before {
    display: none;
}

.timeline-arrow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #000B42;
}


.timeline-event {
    position: relative;
    margin-bottom: var(--space-8);
    display: flex;
    align-items: center;
}

.timeline-point {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #000B42;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 11, 66, 0.4);
    z-index: 10;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    font-family: var(--font-family-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    color: #000B42;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 11, 66, 0.2);
    backdrop-filter: blur(10px);
}

/* Hide empty timeline year elements */
.timeline-year:empty {
    display: none;
}

.timeline-content {
    position: relative;
    width: 45%;
}

.timeline-event.left .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.timeline-event.right .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.timeline-line {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #000B42, #556AFF);
    border-radius: 1px;
}

.timeline-event.left .timeline-line {
    right: -80px;
}

.timeline-event.right .timeline-line {
    left: -80px;
}

.event-card {
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #E8ECFF 100%);
    border: 1px solid rgba(85, 106, 255, 0.2);
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: 0 8px 32px rgba(0, 11, 66, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-event.left .event-card {
    flex-direction: row-reverse;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 11, 66, 0.15);
    border-color: rgba(85, 106, 255, 0.4);
}

.profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #000B42;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #F0F4FF, #E8ECFF);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-img.brand-img {
    object-fit: contain;
    padding: 8px;
    filter: brightness(0) saturate(100%) invert(7%) sepia(97%) saturate(3470%) hue-rotate(230deg) brightness(94%) contrast(105%);
}

.event-card:hover .profile-img {
    transform: scale(1.1);
}

/* Overlapped Profile Pictures */
.profile-pictures.overlapped {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: 60px;
}

.profile-pictures.overlapped .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #000B42;
    object-fit: cover;
    background: linear-gradient(135deg, #F0F4FF, #E8ECFF);
    transition: transform 0.3s ease, z-index 0.3s ease;
    position: relative;
}

.profile-pictures.overlapped .profile-img.overlap {
    margin-left: -20px;
    z-index: 2;
}

.profile-pictures.overlapped .profile-img.overlap-far {
    margin-left: -20px;
    z-index: 1;
}

.profile-pictures.overlapped .profile-img:first-child {
    z-index: 3;
}

.event-card:hover .profile-pictures.overlapped .profile-img {
    transform: scale(1.05);
    margin-left: -10px;
}

.event-card:hover .profile-pictures.overlapped .profile-img:first-child {
    margin-left: 0;
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-family: var(--font-family-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: #000B42;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.event-description {
    font-size: var(--text-sm);
    color: #000B42;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Highlight current year */
.timeline-event.highlight .timeline-point {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #000B42, #556AFF);
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 30px rgba(85, 106, 255, 0.6);
    animation: pulse 2s infinite;
}

.timeline-event.highlight .event-card {
    background: linear-gradient(135deg, #E8ECFF 0%, #F0F4FF 100%);
    border-color: rgba(85, 106, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 11, 66, 0.2);
}

/* Future events styling */
.timeline-event.future .timeline-point {
    background: rgba(0, 11, 66, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 11, 66, 0.2);
}

.timeline-event.future .event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 255, 0.8) 100%);
    border: 1px dashed rgba(85, 106, 255, 0.3);
    opacity: 0.8;
}

.timeline-event.future .timeline-line {
    background: linear-gradient(90deg, rgba(0, 11, 66, 0.3), rgba(85, 106, 255, 0.3));
}

.timeline-event.future .event-title {
    opacity: 0.7;
}

.timeline-event.future .event-description {
    opacity: 0.6;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(85, 106, 255, 0.6);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(85, 106, 255, 0.8);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .zenith-story-section {
        padding: var(--space-12) 0;
    }
    
    .story-title {
        font-size: var(--text-3xl);
    }
    
    .story-subtitle {
        font-size: var(--text-base);
    }
    
    .timeline-container {
        padding: 0 var(--space-4);
    }
    
    .timeline-arrow {
        left: 30px;
        top: 40px;
    }
    
    .timeline {
        margin-left: 30px;
        padding-left: 20px;
        padding-top: 40px;
        border-left: 2px solid #E0E0E0;
    }
    
    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: var(--space-6);
        position: relative;
        padding-top: 30px;
    }
    
    .timeline-event.left,
    .timeline-event.right {
        align-items: flex-start;
    }
    
    .timeline-point {
        display: none;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 15px;
        font-weight: bold;
        color: #000B42;
    }
    
    .timeline-content {
        width: calc(100% - 20px);
        margin-left: 0;
        margin-right: 20px;
        text-align: left;
    }
    
    .timeline-event.left .timeline-content,
    .timeline-event.right .timeline-content {
        width: calc(100% - 20px);
        margin-left: 0;
        margin-right: 20px;
        text-align: left;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-event.left .timeline-line,
    .timeline-event.right .timeline-line {
        display: none;
    }
    
    .event-card {
        padding: var(--space-4);
        flex-direction: row;
        gap: var(--space-3);
        align-items: flex-start;
    }
    
    .timeline-event.left .event-card {
        flex-direction: row;
    }
    
    .profile-picture {
        width: 50px;
        height: 50px;
    }
    
    .profile-pictures.overlapped {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 8px;
        flex-shrink: 0;
        margin-right: 15px;
    }
    
    .profile-pictures.overlapped .profile-img {
        width: 45px;
        height: 45px;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .profile-pictures.overlapped .profile-img.overlap {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .profile-pictures.overlapped .profile-img.overlap-far {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .event-title {
        font-size: var(--text-base);
    }
    
    .event-description {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .timeline {
        margin-left: 20px;
        padding-left: 15px;
    }
    
    .timeline-event {
        margin-bottom: var(--space-4);
        padding-top: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 15px);
        margin-left: 0;
        margin-right: 15px;
    }
    
    .timeline-event.left .timeline-content,
    .timeline-event.right .timeline-content {
        width: calc(100% - 15px);
        margin-left: 0;
        margin-right: 15px;
    }
    
    .timeline-point {
        display: none;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-event.left .timeline-line,
    .timeline-event.right .timeline-line {
        display: none;
    }
    
    .event-card {
        padding: var(--space-3);
    }
    
    .profile-picture {
        width: 40px;
        height: 40px;
    }
}

/* Announcements page styles */
.announcements-section {
  padding: 4rem 0 8rem 0;
  min-height: 60vh;
  position: relative;
  z-index: 1;
}

.announcements-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.announcement-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #556AFF;
}

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

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

.announcement-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.announcement-date {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.announcement-content {
  color: #374151;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.announcement-content p {
  margin-bottom: 1rem;
}

.announcement-content p:last-child {
  margin-bottom: 0;
}

.announcement-picture {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.announcement-links {
  margin-top: 1rem;
}

.announcement-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.2s ease;
}

.announcement-links a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.no-announcements, .loading-message {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .announcements-section {
    padding: 2rem 0;
  }
  
  .announcements-container {
    padding: 0 1rem;
  }
  
  .announcement-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .announcement-title {
    font-size: 1.5rem;
  }
  
  .announcement-content {
    font-size: 1rem;
  }
  
  .announcement-picture {
    max-width: 100%;
    margin: 1rem 0;
  }
}