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

:root {
    /* Color System - Refined for Trust & Legibility */
    --primary-color: #1E3A8A;        /* Navy blue for headlines */
    --secondary-color: #7C3AED;      /* Purple accent - used sparingly */
    --accent-color: #0EA5E9;         /* Softer blue instead of cyan */
    --text-primary: #1E293B;         /* Navy for better readability */
    --text-secondary: #64748B;       /* Soft grey instead of harsh grey */
    --background-primary: #FFFFFF;
    --background-secondary: #F8FAFC;  /* Softer background */
    --surface: #FFFFFF;
    --border-color: #E2E8F0;         /* Softer border color */
    
    /* Status Colors - More Subtle */
    --success-color: #1E3A8A;        /* Use navy blue instead of green */
    --error-color: #64748B;          /* Use grey instead of red */
    --warning-color: #F59E0B;
    
    /* Dark Mode Colors - Softer, more readable */
    --dark-text-primary: #F5F5F7;
    --dark-text-secondary: #A1A1AA;
    --dark-background-primary: #0F172A;
    --dark-background-secondary: #1E293B;
    --dark-surface: #334155;
    --dark-border-color: #475569;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 32px rgba(0, 122, 255, 0.3);
    
    /* Gradients - Blue-focused with subtle accents */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #1E293B 100%);
    --gradient-secondary: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --gradient-subtle: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Typography */
    --font-system: 'Inter Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Animations */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@supports (scroll-timeline: works) {
    html {
        scroll-timeline: --page-scroll block;
    }
}

body {
    font-family: var(--font-system);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-variation-settings: 'wght' 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
    transition: color var(--transition-base), background-color var(--transition-base);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dark mode disabled to ensure consistent appearance */
/* @media (prefers-color-scheme: dark) {
    :root {
        --text-primary: var(--dark-text-primary);
        --text-secondary: var(--dark-text-secondary);
        --background-primary: var(--dark-background-primary);
        --background-secondary: var(--dark-background-secondary);
        --surface: var(--dark-surface);
        --border-color: var(--dark-border-color);
        
        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.5);
        --shadow-heavy: 0 16px 60px rgba(0, 0, 0, 0.7);
    }
    
    nav .menubar {
        box-shadow: 0px 0px 20px -10px rgba(255, 255, 255, 0.1) !important;
    }
} */

/* Completely disable dark mode - site looks identical in light and dark mode */
@media (prefers-color-scheme: dark) {
    /* Force all elements to use their default colors - no dark mode changes */
    body, h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, div, section {
        color: unset !important;
    }
    
    /* Specifically ensure hero text remains white */
    .hero-title, .hero-title .title-line, .hero-subtitle {
        color: white !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    container-type: inline-size;
}

/* New Colorful Navigation Styles */
ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

/* Navigation */
nav {
    /* Nav Bar */
    /* Main Nav */
}

nav .menubar {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    background-color: var(--background-primary);
    box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

@media screen and (max-width: 767px) {
    nav .menubar {
        height: 60px;
        padding: 0 20px;
    }
}

nav .menubar .home {
    display: flex;
    align-items: center;
}

nav .menubar .menubar-logo {
    height: 30px;
    width: auto;
}

nav .menubar .icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Icon Menu Hamburguer */
    /* Secondary Icons */
}

/* Partner Portal Button */
.partner-portal-btn {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partner-portal-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media screen and (max-width: 767px) {
    .partner-portal-btn {
        display: none; /* Hide on mobile to save space */
    }
}

nav .menubar .icons .icon-menu {
    display: flex;
    width: 30px;
    height: 30px;
    z-index: 10000;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    /* Icon Close */
}

nav .menubar .icons .icon-menu span {
    background-color: #1E3A8A; /* Navy blue to match site */
    width: 30px;
    height: 3px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    transition: all 0.2s ease;
    right: 0;
    border-radius: 5px;
}

nav .menubar .icons .icon-menu span:before, nav .menubar .icons .icon-menu span:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #1E3A8A; /* Navy blue to match site */
    border-radius: 5px;
}

nav .menubar .icons .icon-menu span:before {
    transform: translateY(-10px);
    transition: all 0.3s 0.1s ease;
}

nav .menubar .icons .icon-menu span:after {
    transform: translateY(10px);
    transition: all 0.3s 0.2s ease;
}

nav .menubar .icons .icon-menu:hover span {
    width: 30px;
}

nav .menubar .icons .icon-menu:hover span:before {
    width: 25px;
}

nav .menubar .icons .icon-menu:hover span:after {
    width: 20px;
}

nav .menubar .icons .icon-menu.icon-closed {
    justify-content: center;
}

nav .menubar .icons .icon-menu.icon-closed span {
    background-color: white;
    justify-content: center;
    width: 0px;
    right: initial;
    opacity: 0.5;
    transition: all 0.6s ease;
}

nav .menubar .icons .icon-menu.icon-closed span:before, nav .menubar .icons .icon-menu.icon-closed span:after {
    width: 30px;
    background-color: white;
}

nav .menubar .icons .icon-menu.icon-closed span:before {
    transform: rotate(45deg);
}

nav .menubar .icons .icon-menu.icon-closed span:after {
    transform: rotate(-45deg);
}

nav .menubar .icons .icon-menu.icon-closed:hover span {
    width: 0;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    nav .menubar .icons .icon-menu.icon-closed:hover span:before {
        transform: rotate(45deg);
    }
    nav .menubar .icons .icon-menu.icon-closed:hover span:after {
        transform: rotate(-45deg);
    }
}

nav .menu {
    display: none;
    /* Open Menu */
    /* Animation - Close */
}

nav .menu.open {
    display: flex;
    z-index: 9998;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Menu Open - Main Link */
}

nav .menu.open .menu-link {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.4s ease-in-out;
    animation: menu 0.6s ease forwards;
    height: 100vh;
    position: relative;
    /* Main Link - text */
    /* Sub Menu */
    /* Menu Links - Hover */
}

@keyframes menu {
    0% {
        height: 0;
        transform: translatey(-50%);
    }
    100% {
        height: 100vh;
        transform: translatey(0%);
    }
}

nav .menu.open .menu-link:nth-child(1) {
    background-color: #1E3A8A; /* Navy blue */
    animation-duration: 0.6s;
}

nav .menu.open .menu-link:nth-child(2) {
    background-color: #1E293B; /* Navy slate */
    animation-duration: 0.8s;
}

nav .menu.open .menu-link:nth-child(3) {
    background-color: #0EA5E9; /* Softer blue accent */
    animation-duration: 1s;
}

nav .menu.open .menu-link:nth-child(4) {
    background-color: #1E293B; /* Navy for contrast */
    animation-duration: 1.2s;
}

nav .menu.open .menu-link:nth-child(5) {
    background-color: #7C3AED; /* Purple - used sparingly */
    animation-duration: 1.4s;
}

nav .menu.open .menu-link:nth-child(6) {
    background-color: #1E3A8A; /* Navy blue - matching Home for symmetry */
    animation-duration: 1.6s;
}

nav .menu.open .menu-link .text-item {
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 40px;
    opacity: 0.3;
    width: 100%;
    height: 20%;
    letter-spacing: 5px;
    transform: rotate(-90deg) translateX(0px);
    transition: all 0.4s 0.2s ease-in-out, letter-spacing 0.2s ease-in, opacity 0.2s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform-origin: center;
    animation: text-in 0.6s ease;
    position: absolute;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link .text-item {
        transform: rotate(0deg);
        font-size: 30px;
    }
}

@keyframes text-in {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 0.3;
    }
}

nav .menu.open .menu-link .text-item .icon {
    position: absolute;
    display: flex;
    width: 30px;
    height: 30px;
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
    background-image: url("https://rafaelavlucas.github.io/assets/icons/white/icon-54.svg");
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link .text-item .icon {
        opacity: 0.5;
        transform: translateY(40px);
    }
}

nav .menu.open .menu-link .submenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
    opacity: 0;
    z-index: -1;
    transition: all 0.6s ease-in-out;
    height: 0%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    bottom: 0;
    transform: translateY(50%);
    position: absolute;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link .submenu {
        padding: 0 5%;
    }
}

nav .menu.open .menu-link .submenu .sub-item {
    display: none;
    margin: 10px 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    cursor: pointer;
    padding: 5px 15px;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link .submenu .sub-item {
        font-size: 16px;
    }
}

nav .menu.open .menu-link .submenu .sub-item:after {
    content: "";
    height: 0%;
    width: 3px;
    background-color: white;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.4s 0.3s ease, width 0.4s ease;
}

nav .menu.open .menu-link .submenu .sub-item:hover:after {
    width: 100%;
    height: 100%;
    transition: height 0.4s ease, width 0.4s 0.3s ease;
}

nav .menu.open .menu-link:hover {
    width: 50%;
    transition: all 0.4s ease-in-out;
    /* When Click to Open Sub Menu */
}

nav .menu.open .menu-link:hover .text-item {
    height: 50%;
    transform: rotate(0deg) translateX(0px);
    font-size: 30px;
    opacity: 1;
    letter-spacing: 10px;
}

nav .menu.open .menu-link:hover .text-item .icon {
    opacity: 1;
    transform: translateY(40px);
    transition: all 0.3s 0.4s ease-in-out;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link:hover .text-item {
        width: 100%;
        font-size: 30px;
        opacity: 0.3;
        letter-spacing: 5px;
    }
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link:hover.active {
        height: 80vh;
    }
}

nav .menu.open .menu-link:hover.active .text-item {
    transform: rotate(0deg) translateX(0px) translateY(-50%);
    transform-origin: center center;
    transition: all 0.6s ease-in-out;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link:hover.active .text-item {
        height: 20%;
        transform: translateY(-180%);
    }
}

nav .menu.open .menu-link:hover.active .text-item .icon {
    transition: all 0.3s ease-in-out;
    transform: translateY(40px) rotate(-180deg);
}

nav .menu.open .menu-link:hover.active .submenu {
    transform: translateY(0);
    height: 50%;
    z-index: 1;
    opacity: 1;
    bottom: 0;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link:hover.active .submenu {
        height: 70%;
    }
}

nav .menu.open .menu-link:hover.active .submenu .sub-item {
    display: flex;
    animation: submenu 1s ease forwards;
    z-index: 2;
}

@keyframes submenu {
    0% {
        transform: translatex(50px) rotate(5-deg);
        opacity: 0;
    }
    50% {
        transform: translatex(50px) rotate(-5deg);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translatex(0px) rotate(0deg);
    }
}

nav .menu.open .menu-link:hover.active .submenu .sub-item:nth-child(1) {
    animation-duration: 1s;
}

nav .menu.open .menu-link:hover.active .submenu .sub-item:nth-child(2) {
    animation-duration: 1.2s;
}

nav .menu.open .menu-link:hover.active .submenu .sub-item:nth-child(3) {
    animation-duration: 1.4s;
}

nav .menu.open .menu-link:hover.active .submenu .sub-item:nth-child(4) {
    animation-duration: 1.6s;
}

nav .menu.open .menu-link:hover.active .submenu .sub-item:nth-child(5) {
    animation-duration: 1.8s;
}

@media screen and (max-width: 767px) {
    nav .menu.open .menu-link {
        width: 100%;
        height: calc((100vh - 60px) / 5); /* Subtract menubar height, divide by 5 items */
        min-height: 80px; /* Minimum height to ensure readability */
        animation: menu-mobile 0.6s ease forwards;
        transform: translatey(0%);
        right: 0;
    }
    @keyframes menu-mobile {
        0% {
            transform: translateX(200%);
        }
        100% {
            transform: translateX(0%);
        }
    }
    nav .menu.open .menu-link:hover {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    nav .menu.open {
        height: calc(100vh - 60px); /* Full height minus menubar */
        top: 60px; /* Start below menubar */
        flex-direction: column;
        box-sizing: border-box;
    }
}

nav .menu.close .menu-link {
    animation: menu-close 1s ease forwards;
}

@keyframes menu-close {
    0% {
        height: 100vh;
    }
    100% {
        height: 0;
    }
}

nav .menu.close .menu-link .text-item {
    animation: text-out 0.6s ease forwards;
}

@keyframes text-out {
    0% {
        opacity: 0.3;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto; /* Allow height to expand with content */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Allow content to be visible */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); /* Dark gradient background */
    transition: background 0.5s ease, color 0.5s ease;
    padding: 100px 0 40px 0; /* Consistent padding top and bottom */
    box-sizing: border-box;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #5856D6 0%, #007AFF 100%);
    bottom: 30%;
    left: 60%;
    animation-delay: 4s;
}

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

.hero-content {
    color: white !important;
    text-align: center;
    z-index: 10; /* Higher z-index to ensure it's above data room */
    max-width: 1200px; /* Increased from 800px for wider text span */
    padding: 0 40px; /* Increased padding for better spacing */
    width: 100%; /* Ensure full width */
    margin: 0 auto; /* Center the content */
    position: relative; /* Ensure z-index works */
}

.hero-title {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100; /* Ultra-thin weight */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    color: white !important; /* Always white */
}

.title-line {
    display: block;
    color: white !important; /* Override gradient for better readability */
}

.hero-subtitle {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem; /* Increased from 1.25rem */
    line-height: 1.6; /* Better line spacing */
    color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    max-width: 900px; /* Constrain width for optimal reading */
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Dark room button visibility */
.hero .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero .cta-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.15);
}

.hero .cta-secondary:hover::before {
    opacity: 1;
}

/* Primary button glow in dark */
.hero .cta-primary {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4),
                0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* Scroll Mouse Indicator */
.scroll-mouse-indicator {
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-base);
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.scroll-mouse-indicator:hover {
    opacity: 1;
}

/* Mouse Shape */
.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 13px;
    position: relative;
    margin-bottom: 10px;
}

/* Mouse Wheel */
.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s ease-in-out infinite;
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Scroll Arrows */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollArrow 2s ease-in-out infinite;
}

.arrow:nth-child(1) {
    animation-delay: 0s;
}

.arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateY(-5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateY(5px);
    }
}

/* Mobile adjustments for scroll indicators */
@media (max-width: 768px) {
    .scroll-mouse-indicator {
        margin-top: 40px;
    }
    
    .mouse {
        width: 22px;
        height: 34px;
    }
    
    .mouse-wheel {
        width: 2px;
        height: 6px;
        top: 6px;
    }
}

/* Discover Section */
.discover-section {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.discover-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discover-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.discover-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.discover-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.discover-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Innovation Section */
.innovation-section {
    padding: 8rem 0;
    background: var(--background-primary);
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.innovation-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.innovation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-device {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    animation: deviceFloat 4s ease-in-out infinite;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.device-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    position: relative;
    width: 100px;
    height: 100px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-ring-2 {
    animation-delay: 0.5s;
    border-color: var(--secondary-color);
}

.pulse-ring-3 {
    animation-delay: 1s;
    border-color: var(--accent-color);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Industries Section */
.industries-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.industry-card:hover::before {
    transform: translateX(0);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.industry-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-link {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--background-secondary);
}

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

.about-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value {
    text-align: center;
}

.value h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--background-primary);
}

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

.contact-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* FAQ Preview in Contact Section */
.faq-preview {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.faq-preview h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
}

.testimonial-faqs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-faq {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-faq blockquote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.testimonial-faq blockquote::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-family: serif;
}

.testimonial-faq blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    right: -0.5rem;
    bottom: -0.5rem;
    font-family: serif;
}

.testimonial-faq p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--background-secondary);
    border-radius: 16px;
}

.skeptical-note {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.email-link svg {
    flex-shrink: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .testimonial-faqs {
        grid-template-columns: 1fr;
    }
    
    .testimonial-faq {
        padding: 2rem;
    }
    
    .contact-footer {
        padding: 2rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-company-info {
    flex: 1;
    max-width: 300px;
}

.footer-company-info h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-company-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.25rem 0;
    line-height: 1.5;
}

.footer-company-info a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-company-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .innovation-stats {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-company-info {
        text-align: center;
        max-width: 100%;
    }

    .footer-links {
        order: 2;
    }

    .footer-social {
        order: 3;
    }
}

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

    .nav-container {
        padding: 0 15px;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .innovation-stats {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Container Queries for responsive design */
@container (min-width: 768px) {
    .container {
        padding: 0 clamp(1.5rem, 5vw, 3rem);
    }
}

@container (min-width: 1024px) {
    .container {
        padding: 0 clamp(2rem, 6vw, 4rem);
    }
}

/* Utility Classes */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.parallax {
    will-change: transform;
    transform: translateZ(0);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in 0.8s var(--ease-spring) forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scale-in 0.6s var(--ease-bounce) forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-2rem);
    animation: slide-in 0.7s var(--ease-spring) forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Advanced Modern Effects */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.magnetic-hover {
    transition: transform var(--transition-fast);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.glow-effect:hover::before {
    left: 100%;
}

/* Scroll-driven animations */
@supports (animation-timeline: scroll()) {
    .scroll-reveal {
        animation: scroll-reveal linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
    
    @keyframes scroll-reveal {
        from {
            opacity: 0;
            transform: translateY(3rem);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}




/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .innovation-visual {
        order: -1;
    }
    
    .floating-device {
        width: 250px;
        height: 350px;
    }
}

/* Medium screens (13" MacBooks, tablets) */
@media (max-width: 1024px) {
    .hero {
        padding-top: max(80px, 10vh); /* Maintain good spacing for laptops */
        min-height: 550px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 2rem 0; /* Account for mobile navbar height */
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .discover-card {
        padding: 2rem 1.5rem;
    }
    
    .innovation-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms \!important;
        animation-iteration-count: 1 \!important;
        transition-duration: 0.01ms \!important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066CC;
        --secondary-color: #4A4A4A;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #666666;
    }
    
}

/* Print styles */
@media print {
    .navbar,
    .install-btn {
        display: none \!important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    * {
        color: #000 \!important;
        background: transparent \!important;
        box-shadow: none \!important;
    }
}

/* Focus management for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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



/* Logo Styling */
.logo-svg {
    height: 32px;
    width: auto;
    transition: all var(--transition-base);
}

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

.footer-logo-svg {
    height: 24px;
    width: auto;
    filter: invert(1);
}


/* Data/AI Theme Colors */
:root {
    /* Data-focused color palette */
    --primary-color: #1E3A8A;
    --secondary-color: #7C3AED;
    --accent-color: #0EA5E9;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    
    /* Data visualization colors */
    --data-blue: #1E40AF;
    --data-purple: #7C2D12;
    --data-blue: #0EA5E9;
    --data-green: #059669;
    --data-orange: #EA580C;
    
    /* Gradients for data themes */
    --gradient-data: linear-gradient(135deg, #1E3A8A 0%, #1E293B 50%, #0EA5E9 100%);
    --gradient-insight: linear-gradient(135deg, #1E40AF 0%, #7C2D12 100%);
    --gradient-discovery: radial-gradient(circle at 30% 70%, #1E3A8A 0%, #1E293B 50%, #0EA5E9 100%);
}

/* Enhanced Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.use-case:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.use-case h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.use-case p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Enhanced Search Demo */
.search-demo {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius-lg);
    color: white;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
}

.search-query {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-md);
    position: relative;
}

.search-query::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.query-text {
    font-size: 0.875rem;
    color: #93C5FD;
    margin-left: 2rem;
    font-style: italic;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-item {
    height: 20px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-radius: 4px;
    animation: pulse-result 2s ease-in-out infinite;
}

.result-item:nth-child(1) {
    width: 85%;
    animation-delay: 0s;
}

.result-item:nth-child(2) {
    width: 70%;
    animation-delay: 0.5s;
}

.result-item:nth-child(3) {
    width: 90%;
    animation-delay: 1s;
}

@keyframes pulse-result {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Philosophy Quote Styling */
.philosophy {
    margin-top: 3rem;
    text-align: center;
    position: relative;
}

/* Remove any wavy decorations */
.philosophy::after,
.philosophy::before {
    display: none !important;
}

.philosophy blockquote {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    background: var(--gradient-glass);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Enhanced Hero Background for Data Theme */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
    padding-top: max(80px, 12vh); /* Increased percentage for better laptop spacing */
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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


/* Responsive adjustments */
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .philosophy blockquote {
        font-size: 1.125rem;
        padding: 1.5rem;
    }
    
    .logo-svg {
        height: 28px;
    }
}



/* Data Room Visualization Enhancements */
.data-room-container {
    background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.03) 0%, transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
}

.data-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.data-item:hover {
    transform-origin: center;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.4));
}

.data-item text {
    transition: all 0.2s ease;
}

.data-item:hover text {
    font-weight: 600;
}

/* Enhanced hero section for data room */
.hero-content {
    position: relative;
    z-index: 10;
    backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* Performance optimizations for data room */
.data-room-container svg {
    will-change: transform;
    transform: translateZ(0);
}

.data-item {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Add subtle grid lines for depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    opacity: 0.3;
    animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Data type specific styling */
.data-item[data-type="email"] {
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
}

.data-item[data-type="document"] {
    filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.2));
}

.data-item[data-type="chat"] {
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.2));
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .hero {
        min-height: auto; /* Let content determine height */
        padding: 90px 20px 40px 20px; /* Better padding for medium screens */
    }
    
    .hero-content {
        max-width: 90%; /* Give more room for content */
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        min-height: auto; /* Let content determine height */
        padding: 80px 20px 30px 20px; /* Consistent padding all around */
    }
    
    /* Override when dark background is applied */
    .hero[style*="background"] {
        min-height: auto;
        padding: 80px 20px 30px 20px;
    }
    
    .hero-content {
        padding: 0; /* Remove extra padding, already handled by hero */
        max-width: 100%; /* Full width on mobile */
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem); /* Smaller font size for mobile */
        margin-bottom: 1rem;
        line-height: 1.2; /* Slightly more line height for readability */
    }
    
    .hero-subtitle {
        font-size: 1rem; /* Smaller subtitle */
        margin-bottom: 2rem;
        line-height: 1.5; /* Better line height for readability */
    }
    
    .scroll-mouse-indicator {
        display: none; /* Hide scroll indicator on mobile to save space */
    }
    
    .data-room-container {
        opacity: 0.7;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .hero {
        padding-top: 70px; /* Smaller padding for very small screens */
    }
    
    .hero-content {
        padding: 1.5rem 15px; /* Less padding on very small screens */
    }
    
    .hero-title {
        font-size: 1.75rem; /* Even smaller font size */
        margin-bottom: 0.75rem;
    }
    
    .title-line {
        display: inline; /* Don't break lines on very small screens */
    }
    
    .hero-subtitle {
        font-size: 0.9rem; /* Smaller subtitle text */
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        margin-top: 1rem;
    }
    
    .cta-secondary {
        padding: 0.75rem 1.5rem; /* Smaller button padding */
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .hero::after {
        background-size: 50px 50px;
    }
    
    .principle-main {
        padding: 2rem;
    }
    
    .principle-main h3 {
        font-size: 1.75rem;
    }
    
    .principle-main p {
        font-size: 1rem;
    }
    
    .principle-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .disruption-visual {
        padding: 2rem;
    }
    
    .disruption-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-connector {
        display: none !important;
    }
    
    .disruption-timeline::before {
        display: none;
    }
    
    .timeline-item p {
        max-width: 100%;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .data-room-container {
        opacity: 0.3;
    }
    
    .data-item {
        animation: none \!important;
        transform: none \!important;
    }
    
    .hero::after {
        animation: none \!important;
    }
}



/* Data Room Overlay - Enhanced Visibility */
.data-room-overlay {
    mix-blend-mode: normal;
}

.floating-data-item {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    will-change: transform;
    pointer-events: auto !important;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: max(80px, 12vh); /* Increased percentage for better laptop spacing */
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    opacity: 0.3; /* Reduce orb opacity to make data items more visible */
}

/* Ensure hero content is above data room */
.hero-content {
    position: relative;
    z-index: 20 !important;
}




/* Principles Showcase for Why Us Section */
.principles-showcase {
    margin: 4rem 0;
}

.principle-main {
    background: var(--gradient-subtle);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.principle-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 30s linear infinite;
}

.principle-icon-large {
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--primary-color);
}

.principle-icon-large svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.principle-main h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.principle-main p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.principle-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.principle-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.principle-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.principle-card h4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

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

/* Disruption Visual */
.disruption-visual {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.disruption-header {
    text-align: center;
    margin-bottom: 3rem;
}

.disruption-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.disruption-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.disruption-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--border-color);
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.timeline-marker.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
}

.timeline-marker.active::after {
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-connector {
    position: absolute;
    top: 30px;
    left: 33.33%;
    right: 33.33%;
    height: 3px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 200px;
    margin: 0 auto;
}

.timeline-item.past {
    opacity: 0.6;
}

.timeline-item.future {
    opacity: 0.6;
}

/* Timeline Animations */
@keyframes rotatingArc {
    0% {
        stroke-dashoffset: 628;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes orbitDot {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 1;
    }
}

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

@keyframes markerGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.8);
        transform: scale(0);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(37, 99, 235, 0.3);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 30px 15px rgba(37, 99, 235, 0.1);
        transform: scale(1);
    }
}

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

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

/* SVG Arc Container */
.timeline-arc-container {
    position: absolute;
    top: -50px;
    left: 33.33%;
    width: 33.33%;
    height: 200px;
    pointer-events: none;
    z-index: 3;
}

.timeline-arc-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Apply animations when section is in view */
.disruption-timeline.animate .timeline-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.disruption-timeline.animate .timeline-item.past {
    animation-delay: 0s;
}

.disruption-timeline.animate .timeline-item.present {
    animation-delay: 0.4s;
}

.disruption-timeline.animate .timeline-item.future {
    animation-delay: 0.8s;
}

.disruption-timeline.animate .timeline-marker {
    transform: scale(0);
    animation: markerGlow 1s ease-out forwards;
}

.disruption-timeline.animate .timeline-item.past .timeline-marker {
    animation-delay: 0.2s;
}

.disruption-timeline.animate .timeline-item.present .timeline-marker {
    animation-delay: 0.6s;
}

.disruption-timeline.animate .timeline-item.future .timeline-marker {
    animation-delay: 1s;
}

/* Rotating ring around Today */
.timeline-marker.active::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: rotate 2s linear infinite;
}

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

/* Energy particles */
.timeline-item.present .timeline-marker::after {
    background: var(--primary-color);
    animation: energyPulse 2s ease-in-out infinite;
}

/* Data flow lines */
.disruption-timeline.animate::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.66%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: dataFlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Hover effects */
.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px 10px rgba(37, 99, 235, 0.3);
}

.timeline-item:hover {
    opacity: 1 !important;
}

.timeline-item:hover h4 {
    color: var(--primary-color);
}

/* Progress line effect - now more subtle */
.disruption-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-color) 20%, 
        var(--border-color) 80%, 
        transparent 100%);
    z-index: 0;
    opacity: 0.3;
}

/* Feature Grid for Why Us Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Status Quo Comparison */
.status-quo-comparison {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-subtle);
    border-radius: 16px;
}

.status-quo-comparison h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.old-way, .new-way {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.old-way {
    border-left: 4px solid var(--error-color);
}

.new-way {
    border-left: 4px solid var(--success-color);
}

.old-way h4, .new-way h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.old-way h4 {
    color: var(--error-color);
}

.new-way h4 {
    color: var(--success-color);
}

.old-way ul, .new-way ul {
    list-style: none;
    padding: 0;
}

.old-way li, .new-way li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.old-way li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.new-way li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Compliance Module Section */
.compliance-section {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.compliance-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.compliance-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Compliance Screenshot */
.compliance-screen-container {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.compliance-screen-container:hover {
    transform: scale(1.02);
}

.compliance-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.click-to-expand {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compliance-screen-container:hover .click-to-expand {
    opacity: 1;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90vh;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Compliance Features */
.compliance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.compliance-features .feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.compliance-features h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.compliance-features p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compliance Sidebar */
.compliance-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compliance-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.framework-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.framework-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.framework-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.framework-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.framework-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.compliance-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.compliance-stats h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.compliance-stats .stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.compliance-stats .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.compliance-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Compliance CTA */
.compliance-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
}

.compliance-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.compliance-cta .cta-primary {
    background: white;
    color: var(--primary-color);
}

.compliance-cta .cta-primary:hover {
    background: #f8f9fa;
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: var(--gradient-subtle);
}

.industry-comparison {
    margin-top: 4rem;
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-status {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.industry-status:hover {
    transform: translateY(-5px);
}

.industry-status.old-way {
    border-top: 4px solid var(--error-color);
}

.industry-status.new-way {
    border-top: 4px solid var(--success-color);
}

.status-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.old-way .status-icon svg {
    color: var(--error-color);
}

.new-way .status-icon svg {
    color: var(--success-color);
}

.industry-status h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.status-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.item-marker {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.5rem;
    position: relative;
}

.item-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0.2;
}

.old-marker {
    background: var(--error-color);
}

.old-marker::before {
    background: var(--error-color);
}

.new-marker {
    background: var(--primary-color);
}

.new-marker::before {
    background: var(--primary-color);
}

.item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.item-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    width: 2px;
    height: 80px;
    background: var(--border-color);
}

.vs-badge {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 5rem;
    position: relative;
    z-index: 5;
}

.guarantee-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Remove any potential wavy decorations */
.guarantee-content::after,
.guarantee-content::before {
    display: none !important;
}

.guarantee-section::after,
.guarantee-section::before {
    display: none !important;
}

.guarantee-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-marker {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.guarantee-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Transparency Section */
@media (max-width: 1024px) {
    .comparison-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-divider {
        flex-direction: row;
        margin: 2rem 0;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
    }
    
    .guarantee-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .industry-status {
        padding: 2rem;
    }
    
    .guarantee-content {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-content h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Compliance Section */
@media (max-width: 1024px) {
    .compliance-showcase {
        grid-template-columns: 1fr;
    }
    
    .compliance-features {
        grid-template-columns: 1fr;
    }
    
    .review-interface {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .compliance-screen {
        font-size: 0.875rem;
    }
    
    .doc-content {
        font-size: 0.875rem;
    }
    
    .hotkeys {
        gap: 1rem;
    }
    
    .hotkeys span {
        font-size: 0.75rem;
    }
}

/* Timeline Arc and Creative Animations */
.timeline-arc {
    position: absolute;
    width: 100%;
    height: 400px;
    top: -150px;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.disruption-timeline.animate .timeline-arc {
    opacity: 1;
}

/* Rotating arc animation */
.arc-path {
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 2s ease-out 0.5s;
}

.disruption-timeline.animate .arc-path {
    stroke-dashoffset: 0;
}

/* Energy particles */
.energy-particle {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.disruption-timeline.animate .energy-particle {
    opacity: 1;
    transition-delay: 1.5s;
}

/* Rotating ring around Today marker */
.rotating-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
    border: 2px solid transparent;
    border-top-color: #7C3AED;
    border-right-color: #7C3AED;
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease-out 0.8s;
}

.disruption-timeline.animate .rotating-ring {
    opacity: 1;
}

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

/* Hide timeline connectors during animation */
.timeline-connector {
    transition: opacity 0.3s ease-out;
}

.disruption-timeline.animate .timeline-connector {
    opacity: 0;
}

/* Ensure timeline items are above the SVG */
.timeline-item {
    position: relative;
    z-index: 1;
}

/* Cookie Consent Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cookie-btn-primary {
    background: var(--accent-color);
    color: white;
}

.cookie-btn-primary:hover {
    background: #0891b2;
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-btn-text {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    padding: 10px;
}

.cookie-btn-text:hover {
    color: white;
}

/* Cookie Preferences Modal */
#cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 20px;
}

#cookie-preferences-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#cookie-preferences-modal.show .cookie-modal-content {
    transform: scale(1);
}

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

.cookie-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-category-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #d1d5db;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Cookie Toast Notification */
.cookie-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10001;
}

.cookie-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-banner-text {
        flex: 1;
        margin-right: 24px;
    }
    
    .cookie-banner-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {
    #cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-banner-actions {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .cookie-btn-text {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: calc(100vh - 40px);
    }
}

