* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', Inter, sans-serif;
    line-height: 1.6;
    color: #262626;
    overflow-x: hidden;
    background: #ffffff;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* Ensure burger is visible on light header */
header.scrolled .mobile-menu span { background: #1a1a1a; }

header.scrolled .nav-links a { color: #111; }
header.scrolled .contact-btn { background: #111 !important; color: #fff !important; }

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.01rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.theme-toggle-item {
    display: flex;
    align-items: center;
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
}

.theme-toggle:focus-visible {
    outline: 2px solid rgba(0, 255, 135, 0.55);
    outline-offset: 3px;
}

.theme-toggle[aria-pressed="true"] {
    border-color: rgba(0, 255, 135, 0.4);
    background: rgba(0, 255, 135, 0.12);
}


.nav-theme-toggle {
    display: inline-flex;
    flex-shrink: 0;
}

header.scrolled .theme-toggle {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: #1a1a1a;
}

.theme-toggle-icon {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-icon-moon {
    opacity: 0;
    transform: scale(0.6);
}

.theme-toggle-label {
    display: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.75rem;
}

.contact-btn {
    background: #1a1a1a !important;
    color: #fafafa !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #262626 !important;
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1000;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}
/* Burger color on light header */
header.scrolled .mobile-menu span { background: #1a1a1a; }

/* Make burger visible on light header */
header.scrolled .mobile-menu span {
    background: #1a1a1a;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 20, 38, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close span {
    position: absolute;
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translate3d(-50%, 1rem, 0);
    width: min(640px, calc(100% - 2rem));
    background: rgba(16, 24, 40, 0.98);
    color: #f9fafb;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
    padding: 1.5rem;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
}

.cookie-banner__content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-banner__copy {
    flex: 1 1 auto;
    display: grid;
    gap: 0.9rem;
}

.cookie-banner__title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cookie-banner__description {
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner__link {
    color: #00ff87;
    font-weight: 500;
    text-decoration: underline;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
    text-decoration: none;
}

.cookie-option {
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    background: rgba(15, 23, 42, 0.65);
    border-radius: 12px;
}

.cookie-option__label {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-weight: 500;
}

.cookie-option__input {
    width: 18px;
    height: 18px;
}

.cookie-option__help {
    font-size: 0.85rem;
    color: rgba(209, 213, 219, 0.75);
}

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 160px;
}

.cookie-banner__button {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: #f8fafc;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(0, 255, 135, 0.45);
    outline: none;
}

.cookie-banner__button--primary {
    background: linear-gradient(135deg, #00ff87, #00c16a);
    border-color: transparent;
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
    background: linear-gradient(135deg, #4dffb2, #00c16a);
}

.cookie-settings-trigger {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 1150;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.88);
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cookie-settings-trigger:hover,
.cookie-settings-trigger:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(0, 255, 135, 0.45);
    outline: none;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        padding: 1.25rem;
    }

    .cookie-banner__content {
        flex-direction: column;
        gap: 1.25rem;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: row;
        justify-content: stretch;
    }

    .cookie-banner__button {
        flex: 1 1 0;
        text-align: center;
    }

    .cookie-settings-trigger {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0.75rem;
    }
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: #00D4FF;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.1);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D4FF, #0099CC);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

/* Burger Menu Animation */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
    .mobile-nav-overlay {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0B1426 0%, #1A1F2E 50%, #0F1419 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 2rem 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 135, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 135, 0.02) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,255,135,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

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

.hero-content {
    text-align: left;
    padding: 0;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Panels */
.dashboard-panels {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.dashboard-panel {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 16px;
    padding: 20px;
    min-width: 180px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 255, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: floatPanel 6s ease-in-out infinite;
    animation-delay: var(--delay);
    transform-style: preserve-3d;
}

.main-panel {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 140px;
}

.revenue-panel {
    top: 15%;
    right: 10%;
    width: 160px;
    height: 120px;
    animation-direction: reverse;
}

.data-panel {
    bottom: 25%;
    left: 15%;
    width: 180px;
    height: 100px;
}

.metrics-panel {
    bottom: 15%;
    right: 5%;
    width: 170px;
    height: 130px;
    animation-direction: reverse;
}

@keyframes floatPanel {
    0%, 100% { 
        transform: translateY(0px) rotateX(5deg) rotateY(5deg);
    }
    25% { 
        transform: translateY(-15px) rotateX(2deg) rotateY(8deg);
    }
    75% { 
        transform: translateY(-8px) rotateX(8deg) rotateY(2deg);
    }
}

/* Panel Headers */
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 135, 0.1);
}

.panel-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF87;
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.6);
    animation: pulse 2s infinite;
}

.trend-arrow {
    color: #00FF87;
    font-size: 16px;
    font-weight: bold;
}

.processing-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 255, 135, 0.3);
    border-top: 2px solid #00FF87;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.metric-badge {
    background: rgba(0, 255, 135, 0.2);
    color: #00FF87;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 135, 0.3);
}

/* Chart Elements */
.chart-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#00FF87 0deg 313deg, rgba(0, 255, 135, 0.1) 313deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
}

.progress-value {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    color: #00FF87;
}

.mini-chart {
    flex: 1;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00FF87, transparent);
    animation: chartPulse 3s ease-in-out infinite;
}

.chart-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20%;
    width: 60%;
    height: 20px;
    background: linear-gradient(to right, transparent, rgba(0, 255, 135, 0.2), transparent);
    border-radius: 10px;
}

/* Revenue Panel */
.metric-display {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #00FF87;
    line-height: 1;
}

.mini-bars {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 40px;
}

.bar {
    width: 6px;
    background: linear-gradient(180deg, #00FF87, rgba(0, 255, 135, 0.3));
    border-radius: 3px;
    animation: barGrow 2s ease-out infinite;
}

/* Data Panel */
.data-flow {
    position: relative;
    height: 50px;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 135, 0.3) 20%, 
        #00FF87 50%, 
        rgba(0, 255, 135, 0.3) 80%, 
        transparent 100%);
    animation: flowPulse 3s ease-in-out infinite;
}

.data-nodes {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.data-node {
    width: 8px;
    height: 8px;
    background: #00FF87;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 135, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.data-node:nth-child(2) { animation-delay: 0.3s; }
.data-node:nth-child(3) { animation-delay: 0.6s; }

/* Performance Panel */
.performance-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.perf-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.perf-bar {
    height: 4px;
    background: rgba(0, 255, 135, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FF87, rgba(0, 255, 135, 0.6));
    border-radius: 2px;
    animation: fillGrow 3s ease-out infinite;
}

/* Holographic Globe */
.holographic-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.globe-container {
    width: 100%;
    height: 100%;
    perspective: 800px;
    transform-style: preserve-3d;
    animation: globeRotate 20s linear infinite;
}

.globe {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-style: preserve-3d;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 135, 0.02) 0%, 
        rgba(0, 255, 135, 0.01) 50%, 
        transparent 70%);
}

.globe-line {
    position: absolute;
    border: 1px solid rgba(0, 255, 135, 0.15);
    border-radius: 50%;
    animation: globePulse 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.globe-line.latitude {
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotateX(var(--rotation));
}

.globe-line.longitude {
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotateY(var(--rotation));
}

.globe-line:nth-child(odd) {
    border-style: dashed;
    border-width: 0.5px;
    opacity: 0.8;
}

.globe-line:nth-child(even) {
    border-style: solid;
    border-width: 1px;
    opacity: 0.6;
}

.data-point {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    background: #00FF87;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px rgba(0, 255, 135, 0.8),
        0 0 20px rgba(0, 255, 135, 0.4),
        0 0 30px rgba(0, 255, 135, 0.2);
    animation: dataPointPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dataPointRipple 3s ease-out infinite;
    animation-delay: var(--delay);
}

.data-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 135, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dataPointRipple 3s ease-out infinite;
    animation-delay: calc(var(--delay) + 0.5s);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    background: #00FF87;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 6px rgba(0, 255, 135, 0.8);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

@keyframes chartPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes barGrow {
    0% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0.3); }
}

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

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes fillGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

@keyframes globeRotate {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes globePulse {
    0%, 100% { 
        opacity: 0.15; 
        border-color: rgba(0, 255, 135, 0.15);
    }
    50% { 
        opacity: 0.4; 
        border-color: rgba(0, 255, 135, 0.4);
    }
}

@keyframes dataPointPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3); 
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(0, 255, 135, 1),
            0 0 30px rgba(0, 255, 135, 0.6),
            0 0 45px rgba(0, 255, 135, 0.3);
    }
}

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

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0px) scale(1); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    50% { transform: translateY(-30px) scale(1.2); }
}

/* Knowledge Hub Coming Soon Styles */
.coming-soon-hero {
    background: linear-gradient(135deg, #0B1426 0%, #1A1F2E 50%, #0F1419 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 135, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 135, 0.02) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,255,135,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

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

.coming-soon-icon {
    margin-bottom: 2rem;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(0, 255, 135, 0.1);
    border: 2px solid rgba(0, 255, 135, 0.3);
    border-radius: 50%;
    color: #00FF87;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 135, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 255, 135, 0.5); }
}

.coming-soon-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 135, 0.15);
    border: 1px solid rgba(0, 255, 135, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #00FF87;
    margin-bottom: 3rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00FF87;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.coming-soon-description {
    margin-bottom: 4rem;
}

.coming-soon-description > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 135, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 135, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 50%;
    color: #00FF87;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 255, 135, 0.2);
    border-color: rgba(0, 255, 135, 0.5);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.notify-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.notify-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.notify-section > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(0, 255, 135, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.email-input:focus {
    outline: none;
    border-color: #00FF87;
    box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.1);
}

.notify-btn {
    background: linear-gradient(135deg, #00FF87, #00CC6A);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .coming-soon-hero h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-section {
        padding: 2rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #1a1a1a;
    color: #fafafa;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #262626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #F6F6F7;
}

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

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: white;
}

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

.impact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impact-image {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Shared SVG styling */
.impact-image svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Financial: animated line chart rising */
.impact-image.financial .chart .grid {
    fill: none;
    stroke: rgba(255,255,255,0.35);
    stroke-width: 1;
}
.impact-image.financial .chart .line {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 3s ease-in-out infinite alternate, glowPulse 2.5s ease-in-out infinite;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
    50% { filter: drop-shadow(0 0 14px rgba(255,255,255,0.9)); }
}

/* Healthcare: EKG path and beating heart */
.impact-image.healthcare .ekg .path {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    animation: ekgDraw 2.2s ease-in-out infinite alternate;
}

@keyframes ekgDraw { to { stroke-dashoffset: 0; } }

.impact-image.healthcare .heart {
    position: absolute; width: 48px; height: 48px; color: #fff;
    left: 35%; top: 38%;
    transform-origin: center;
    animation: beat 1.2s ease-in-out infinite 0.6s;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
}

@keyframes beat {
    0% { transform: scale(1); }
    20% { transform: scale(1.2); }
    40% { transform: scale(1); }
    60% { transform: scale(1.15); }
    80% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Supply: truck moving along a route with waypoints */
.impact-image.supply .route .path {
    fill: none;
    stroke: rgba(255,255,255,0.8);
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

.impact-image.supply .route .progress {
    fill: none;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: pathProgress 6s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(34,197,94,0.7));
}

@keyframes pathProgress { to { stroke-dashoffset: 0; } }

.impact-image.supply .truck {
    position: absolute;
    width: 26px; height: 14px;
    background: #fff;
    border-radius: 3px;
    top: 66%; left: 0%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: drive 6s ease-in-out infinite;
}
.impact-image.supply .truck::before,
.impact-image.supply .truck::after {
    content: '';
    position: absolute; bottom: -4px; width: 6px; height: 6px;
    background: #111; border-radius: 50%;
}
.impact-image.supply .truck::before { left: 3px; }
.impact-image.supply .truck::after { right: 3px; }

.impact-image.supply .waypoint {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.impact-image.supply .w1 { left: 18%; top: 63%; }
.impact-image.supply .w2 { left: 52%; top: 56%; }
.impact-image.supply .w3 { left: 85%; top: 60%; }

@keyframes drive {
    0% { left: -10%; top: 70%; transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    30% { left: 18%; top: 63%; }
    50% { left: 52%; top: 56%; }
    80% { left: 85%; top: 60%; }
    100% { left: 102%; top: 60%; transform: translateY(0) rotate(0deg); opacity: 0; }
}

/* Waypoint state toggles synced with drive animation timeline */
.impact-image.supply .waypoint.w1 { animation: wp1 6s linear infinite; }
.impact-image.supply .waypoint.w2 { animation: wp2 6s linear infinite; }
.impact-image.supply .waypoint.w3 { animation: wp3 6s linear infinite; }

@keyframes wp1 {
    0%, 24% { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.7); }
    25%, 100% { background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,0.9); }
}
@keyframes wp2 {
    0%, 49% { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.7); }
    50%, 100% { background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,0.9); }
}
@keyframes wp3 {
    0%, 79% { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.7); }
    80%, 100% { background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,0.9); }
}

/* Show a check mark after a waypoint is reached */
.impact-image.supply .waypoint::after {
    content: '✓';
    position: absolute; inset: -6px -6px -6px -6px;
    display: grid; place-items: center;
    color: #22c55e; font-size: 12px; font-weight: 800;
    opacity: 0; transform: scale(0.5);
}
.impact-image.supply .waypoint.w1::after { animation: wpc1 6s linear infinite; }
.impact-image.supply .waypoint.w2::after { animation: wpc2 6s linear infinite; }
.impact-image.supply .waypoint.w3::after { animation: wpc3 6s linear infinite; }

@keyframes wpc1 { 0%,24% { opacity: 0; } 25%,100% { opacity: 1; } }
@keyframes wpc2 { 0%,49% { opacity: 0; } 50%,100% { opacity: 1; } }
@keyframes wpc3 { 0%,79% { opacity: 0; } 80%,100% { opacity: 1; } }

.impact-image.financial {
    background-image: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect width="200" height="100" fill="rgba(255,255,255,0.1)"/><path d="M20,80 Q60,60 100,65 T180,50" stroke="rgba(255,255,255,0.8)" stroke-width="2" fill="none"/></svg>');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
}

/* Financial: shimmering particles that drift upward */
.impact-image.financial .particle {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(59,130,246,0.6);
    animation: floatUp 6s linear infinite;
}
.impact-image.financial .p1 { left: 12%; bottom: -10%; animation-delay: 0s; }
.impact-image.financial .p2 { left: 38%; bottom: -15%; animation-delay: 1s; width: 4px; height: 4px; }
.impact-image.financial .p3 { left: 62%; bottom: -12%; animation-delay: 2s; }
.impact-image.financial .p4 { left: 78%; bottom: -18%; animation-delay: 3s; width: 5px; height: 5px; }
.impact-image.financial .p5 { left: 24%; bottom: -20%; animation-delay: 4s; }

@keyframes floatUp {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-120%) translateX(10px); }
    100% { transform: translateY(-240%) translateX(-10px); opacity: 0; }
}

.impact-image.healthcare {
    background-image: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><circle cx="100" cy="50" r="30" fill="rgba(255,255,255,0.2)"/><path d="M100,35 L100,65 M85,50 L115,50" stroke="rgba(255,255,255,0.8)" stroke-width="3"/></svg>');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
}

/* Healthcare: pulsing rings and an orbiting dot */
.impact-image.healthcare .pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    animation: pulseRing 2.8s ease-out infinite;
}
.impact-image.healthcare .pulse2 { width: 70px; height: 70px; animation-delay: 1.2s; opacity: 0.6; }

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    70% { opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.impact-image.healthcare .orbit {
    position: absolute;
    top: 50%; left: 50%;
    width: 120px; height: 120px;
    margin-left: -60px; margin-top: -60px;
    border: 1px dashed rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}
.impact-image.healthcare .orbiter {
    position: absolute;
    top: -6px; left: 50%;
    width: 10px; height: 10px;
    margin-left: -5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.9);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.impact-image.supply {
    background-image: linear-gradient(135deg, #dc2626 0%, #f97316 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect x="50" y="40" width="20" height="20" fill="rgba(255,255,255,0.3)"/><rect x="90" y="40" width="20" height="20" fill="rgba(255,255,255,0.3)"/><rect x="130" y="40" width="20" height="20" fill="rgba(255,255,255,0.3)"/></svg>');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
}

/* Supply: moving boxes along a path */
.impact-image.supply .box {
    position: absolute;
    width: 18px; height: 18px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    animation: moveBox 5s ease-in-out infinite;
}
.impact-image.supply .b1 { top: 65%; left: -10%; }
.impact-image.supply .b2 { top: 50%; left: -20%; animation-delay: 0.5s; }
.impact-image.supply .b3 { top: 35%; left: -15%; animation-delay: 1s; }

@keyframes moveBox {
    0% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(130%) translateY(-8px) rotate(3deg); }
    100% { transform: translateX(260%) translateY(0) rotate(0deg); opacity: 0; }
}

.impact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    padding: 0 1.5rem;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

.impact-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Why Quantara Section */
.why-quantara {
    padding: 100px 0;
    background: #F6F6F7;
}

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

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.stat-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #F1F1F1;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Us Page Styles */
.back-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.back-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a1a1a;
}

.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section h2,
.values-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.value-icon {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: #6b7280;
    line-height: 1.5;
}

.our-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-story h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.story-text p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.our-team {
    padding: 80px 0;
    background: white;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.team-description {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.join-our-team {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 20%, #e5e7eb 40%, #9ca3af 60%, #4b5563 80%, #000000 100%);
}

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

.join-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.join-header p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.join-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-join h3,
.career-story h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

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

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #4b5563;
    line-height: 1.5;
}

.career-story p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.career-cta {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.career-cta h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.career-cta p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: #1a1a1a;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
}

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

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.careers-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.mission {
    padding: 80px 0;
    background: white;
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.mission-content p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.leadership {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.leadership-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.join-us {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 20%, #e5e7eb 40%, #9ca3af 60%, #4b5563 80%, #000000 100%);
    color: #1a1a1a;
}

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

.join-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #374151;
}

/* Careers Section (for main page) */
.careers {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 20%, #e5e7eb 40%, #9ca3af 60%, #4b5563 80%, #000000 100%);
}

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

.contact-form-section {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #4b5563;
    font-size: 1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: auto;
    margin-top: 1rem;
    padding: 12px 32px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.careers-label {
    display: inline-block;
    background: #1a1a1a;
    color: #fafafa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.careers-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.careers-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.careers-story {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.careers-story p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 4rem 0 2rem;
}

.careers-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.contact-label {
    display: inline-block;
    background: #1a1a1a;
    color: #fafafa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: auto;
    margin-top: 1rem;
    padding: 12px 32px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card-back {
    transform: rotateY(180deg);
    color: white !important;
}

.team-card-back.blue {
    background: linear-gradient(135deg, #8b5cf6 0%, #3730a3 100%);
}

.team-card-back.green {
    background: linear-gradient(135deg, #34d399 0%, #047857 100%);
}

.team-card-back.orange {
    background: linear-gradient(135deg, #fb923c 0%, #c2410c 100%);
}

.card-back-content {
    color: white !important;
    text-align: center;
}

.card-back-content h3 {
    color: white !important;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-back-content p {
    color: white !important;
    line-height: 1.6;
}

.team-card:not(.flipped):hover .team-card-inner {
    transform: translateY(-8px);
}

.team-card.flipped:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.team-avatar.blue {
    background: linear-gradient(135deg, #8b5cf6 0%, #3730a3 100%);
}

.team-avatar.green {
    background: linear-gradient(135deg, #34d399 0%, #047857 100%);
}

.team-avatar.orange {
    background: linear-gradient(135deg, #fb923c 0%, #c2410c 100%);
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-contact a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: #262626;
}

/* Highlight LinkedIn link as clearly clickable */
.team-contact a.linkedin {
    color: #0A66C2;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    position: relative;
}

.team-contact a.linkedin::after {
    content: '↗';
    margin-left: 0.35rem;
    font-size: 0.85em;
    opacity: 0.85;
}

.team-contact a.linkedin:hover {
    color: #084e97;
    text-shadow: 0 0 8px rgba(10, 102, 194, 0.45), 0 0 16px rgba(10, 102, 194, 0.25);
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.01rem;
    margin-bottom: 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-social {
    margin-top: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

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

.subscribe-btn {
    background: #1a1a1a;
    color: #fafafa;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #262626;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-inline { margin-top:0.5rem; }
.social-link.icon-only { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:10px; background:#000000; color:#ffffff; position:relative; transition:all 0.4s ease; box-shadow:0 0 0 0 rgba(0,255,135,0); }
.social-link.icon-only svg { width:22px; height:22px; }
.social-link.icon-only:hover { background:rgba(0,255,135,0.12); color:#00FF87; box-shadow:0 0 12px 4px rgba(0,255,135,0.6), 0 0 26px -2px rgba(0,255,135,0.45); transform:translateY(-3px); }
.social-link.icon-only:active { transform:translateY(-1px) scale(0.97); }
.social-link.icon-only::after { content:''; position:absolute; inset:0; border-radius:inherit; background:radial-gradient(circle at 50% 50%, rgba(0,255,135,0.25), transparent 70%); opacity:0; transition:opacity 0.4s ease; }
.social-link.icon-only:hover::after { opacity:1; }

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

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: white;
}

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

.privacy-link:hover {
    color: white;
}

/* Responsive Design - Enhanced Mobile First */
@media (max-width: 1024px) {
    /* Tablet landscape adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Force mobile menu visibility on small screens */
    body .mobile-menu {
        display: flex !important;
        position: relative !important;
        z-index: 1001 !important;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    body .nav-links {
        display: none !important;
    }

    /* Main header adjustments */
    nav {
        padding: 0.75rem 1.25rem 0.75rem 0.75rem;
        position: relative;
    }
    
    .logo-img {
        height: 28px;
        width: auto;
    }
    
    .logo { flex: 1 1 auto; min-width: 0; }
    .logo span { font-size: clamp(1rem, 4.5vw, 1.2rem); white-space: nowrap; overflow: visible; max-width: none; }
    
    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        display: flex !important;
        position: relative;
        z-index: 1001;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu span {
        background: white !important;
        display: block !important;
        width: 25px !important;
        height: 2px !important;
        border-radius: 2px;
    }

    .nav-theme-toggle {
        width: 40px;
        height: 40px;
    }

    /* On light header, force burger dark on mobile */
    header.scrolled .mobile-menu span {
        background: #1a1a1a !important;
    }

    .mobile-menu span + span { margin-top: 5px; }

    /* Hero section mobile optimization */
    .hero {
        padding: 120px 1rem 80px;
        min-height: 70vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-visual {
        height: 300px;
        order: 1;
    }
    
    /* Dashboard panels mobile adjustments */
    .dashboard-panels {
        transform: scale(0.7);
    }

    .main-panel {
        width: 160px;
        height: 110px;
    }

    .revenue-panel {
        width: 140px;
        height: 100px;
    }

    .data-panel {
        width: 150px;
        height: 85px;
    }

    .metrics-panel {
        width: 145px;
        height: 110px;
    }

    .panel-title {
        font-size: 10px;
    }

    .metric-value {
        font-size: 18px;
    }

    .progress-circle {
        width: 45px;
        height: 45px;
    }

    .progress-circle::before {
        width: 35px;
        height: 35px;
    }

    .progress-value {
        font-size: 12px;
    }
    
    /* Sections mobile optimization */
    section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    /* Grid layouts mobile optimization */
    .solutions-grid,
    .services-grid,
    .features-grid,
    .stats-grid,
    .impact-grid,
    .mission-values-grid,
    .join-content-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card,
    .solution-card {
        padding: 2rem 1.5rem;
    }

    .team-grid { max-width: 400px; margin: 0 auto; }
    
    /* Contact form mobile optimization */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer mobile optimization */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
}

@media (max-width: 480px) {
    /* Small mobile devices */
    .hero {
        padding: 100px 1rem 60px;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .solutions,
    .impact,
    .why-quantara,
    .services,
    .contact-team {
        padding: 3rem 1rem;
    }

    /* Mobile Navigation Adjustments for smaller screens */
    .mobile-nav-close {
        top: 20px;
        right: 20px;
    }

    .mobile-nav-links a {
        font-size: 1.6rem;
    }

    .mobile-nav-links li {
        margin: 1.2rem 0;
    }

    /* Dashboard panels for very small screens */
    .dashboard-panels {
        transform: scale(0.6);
    }

    /* Form improvements for small screens */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        border-radius: 6px;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }

    /* Footer improvements */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
}

@media (max-width: 360px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .dashboard-panels {
        transform: scale(0.5);
    }
    
    .mobile-nav-links a {
        font-size: 1.4rem;
    }
}

/* Cookie Policy Page */
.policy-page {
    background: #f8fafc;
}

.policy-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 720px;
    margin: 0.5rem auto;
    line-height: 1.7;
}

.policy-updated {
    font-size: 0.9rem;
    color: #64748b;
}

.policy-content {
    padding: 40px 0 100px;
}

.policy-section {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.policy-section p,
.policy-section li {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.75;
}

.policy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.policy-card {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 16px;
    padding: 1.75rem;
}

.policy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.policy-card p {
    margin: 0;
}

.policy-list {
    list-style: disc inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

.policy-list li + li {
    margin-top: 0.5rem;
}

/* Dark Mode Overrides */
body.dark-mode {
    background: #050a18;
    color: #e2e8f0;
    color-scheme: dark;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #f8fafc;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label,
body.dark-mode .section-subtitle {
    color: #cbd5f5;
}

body.dark-mode strong {
    color: #f8fafc;
}

/* Header */
body.dark-mode header {
    background: rgba(5, 10, 24, 0.92);
    color: #f8fafc;
    border-bottom: 1px solid rgba(0, 255, 135, 0.18);
}

body.dark-mode header.scrolled {
    background: rgba(5, 10, 24, 0.94);
    border-bottom: 1px solid rgba(0, 255, 135, 0.26);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.5);
    color: #f8fafc;
}

body.dark-mode header .nav-links a {
    color: #e2e8f0;
    opacity: 0.85;
}

body.dark-mode header .nav-links a:hover {
    opacity: 1;
    color: #00ff87;
}

body.dark-mode header .contact-btn {
    background: linear-gradient(135deg, #00ff87, #00c16a) !important;
    color: #f8fafc !important;
    box-shadow: 0 12px 30px rgba(0, 255, 135, 0.25);
}

body.dark-mode header .contact-btn:hover {
    background: linear-gradient(135deg, #4dffb2, #00c16a) !important;
}

body.dark-mode header .mobile-menu span,
body.dark-mode header.scrolled .mobile-menu span {
    background: #f8fafc;
}

body.dark-mode header.scrolled .nav-links a {
    color: #e2e8f0;
}

/* Mobile navigation & toggle */
body.dark-mode .mobile-nav-overlay {
    background: rgba(5, 10, 24, 0.96);
}

body.dark-mode .mobile-nav-links a {
    color: #f8fafc;
}

body.dark-mode .theme-toggle {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(0, 255, 135, 0.28);
    color: #f8fafc;
}

body.dark-mode .theme-toggle[aria-pressed="true"] {
    background: rgba(0, 255, 135, 0.24);
    border-color: rgba(0, 255, 135, 0.45);
}

body.dark-mode .theme-toggle-icon-sun {
    opacity: 0;
    transform: scale(0.6);
}

body.dark-mode .theme-toggle-icon-moon {
    opacity: 1;
    transform: scale(1);
}

body.dark-mode .theme-toggle-label {
    color: #bbf7d0;
}

body.dark-mode header.scrolled .theme-toggle {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(0, 255, 135, 0.28);
    color: #f8fafc;
}

/* Buttons */
body.dark-mode .btn-primary,
body.dark-mode .contact-form .btn-primary,
body.dark-mode .contact-btn {
    background: linear-gradient(135deg, #00ff87, #00c16a) !important;
    color: #f8fafc !important;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 255, 135, 0.25);
}

body.dark-mode .btn-primary:hover,
body.dark-mode .contact-form .btn-primary:hover,
body.dark-mode .contact-btn:hover {
    background: linear-gradient(135deg, #4dffb2, #00c16a) !important;
}

body.dark-mode .btn-secondary {
    background: rgba(0, 255, 135, 0.12);
    border: 1px solid rgba(0, 255, 135, 0.34);
    color: #ccfbf1;
}

body.dark-mode .btn-secondary:hover {
    background: rgba(0, 255, 135, 0.2);
    border-color: rgba(0, 255, 135, 0.45);
}

/* Section backgrounds */
body.dark-mode .solutions,
body.dark-mode .why-quantara,
body.dark-mode .contact,
body.dark-mode .mission-values,
body.dark-mode .mission,
body.dark-mode .policy-page,
body.dark-mode .policy-content,
body.dark-mode .our-team {
    background: #081225;
}

body.dark-mode .impact,
body.dark-mode .services,
body.dark-mode .our-story,
body.dark-mode .join-our-team,
body.dark-mode .back-nav {
    background: #050a18;
}

body.dark-mode .join-our-team {
    background: linear-gradient(180deg, #081225 0%, #050a18 60%, #020713 100%);
}

body.dark-mode .about-hero,
body.dark-mode .careers-hero,
body.dark-mode .policy-hero {
    background: linear-gradient(135deg, #071021 0%, #0d1930 50%, #14213d 100%);
    color: #f8fafc;
}

body.dark-mode .about-hero p,
body.dark-mode .careers-hero p,
body.dark-mode .policy-hero p {
    color: #cbd5f5;
}

body.dark-mode .policy-updated {
    color: #94a3b8;
}

/* Cards & surfaced blocks */
body.dark-mode .solution-card,
body.dark-mode .impact-card,
body.dark-mode .stat-card,
body.dark-mode .service-card,
body.dark-mode .contact-form-container,
body.dark-mode .policy-section,
body.dark-mode .career-cta {
    background: rgba(12, 20, 39, 0.92);
    border: 1px solid rgba(0, 255, 135, 0.14);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

body.dark-mode .policy-card {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.16), rgba(0, 150, 90, 0.18));
    border: 1px solid rgba(0, 255, 135, 0.35);
}

body.dark-mode .policy-card h3 {
    color: #f8fafc;
}

body.dark-mode .solution-card h3,
body.dark-mode .impact-card h3,
body.dark-mode .stat-card h3,
body.dark-mode .service-card h3,
body.dark-mode .policy-section h2,
body.dark-mode .career-cta h4 {
    color: #f8fafc;
}

body.dark-mode .solution-card p,
body.dark-mode .impact-card p,
body.dark-mode .service-card p,
body.dark-mode .policy-section p,
body.dark-mode .policy-card p,
body.dark-mode .career-cta p {
    color: #cbd5f5;
}

body.dark-mode .solution-icon,
body.dark-mode .service-icon {
    color: #00ff87;
}

body.dark-mode .stat-number {
    color: #00ff87;
}

/* Contact */
body.dark-mode .contact-label {
    background: rgba(0, 255, 135, 0.16);
    color: #00ff87;
}

body.dark-mode .contact-header h2,
body.dark-mode .contact-info h3 {
    color: #f8fafc;
}

body.dark-mode .contact-header p,
body.dark-mode .contact-info p {
    color: #cbd5f5;
}

body.dark-mode .contact-item strong {
    color: #e2e8f0;
}

body.dark-mode .contact-item a {
    color: #4dffb2;
}

body.dark-mode .contact-item a:hover {
    color: #00ff87;
}

body.dark-mode .contact-form label {
    color: #e2e8f0;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form select,
body.dark-mode .contact-form textarea {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 135, 0.35);
    color: #f8fafc;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: #94a3b8;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form select:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: #00ff87;
    box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.25);
}

/* About & Careers content */
body.dark-mode .back-link {
    color: #94a3b8;
}

body.dark-mode .back-link:hover {
    color: #f8fafc;
}

body.dark-mode .mission-section h2,
body.dark-mode .values-section h2,
body.dark-mode .value-content h3,
body.dark-mode .why-join h3,
body.dark-mode .career-story h3,
body.dark-mode .benefit-text h4,
body.dark-mode .join-header h2 {
    color: #f8fafc;
}

body.dark-mode .mission-section p,
body.dark-mode .value-content p,
body.dark-mode .story-text p,
body.dark-mode .benefit-text p,
body.dark-mode .career-story p,
body.dark-mode .join-header p,
body.dark-mode .team-description {
    color: #cbd5f5;
}

body.dark-mode .value-icon {
    background: rgba(0, 255, 135, 0.18);
    color: #00ff87;
}

/* Team cards */
body.dark-mode .team-card-front {
    background: rgba(12, 20, 39, 0.92);
    border: 1px solid rgba(0, 255, 135, 0.18);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.5);
    color: #e2e8f0;
}

body.dark-mode .team-card h3 {
    color: #f8fafc;
}

body.dark-mode .team-card p {
    color: #cbd5f5;
}

body.dark-mode .team-contact a {
    color: #4dffb2;
}

body.dark-mode .team-contact a:hover {
    color: #00ff87;
}

body.dark-mode .team-card-back {
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.5);
}

/* Policy page */
body.dark-mode .policy-list li {
    color: #cbd5f5;
}

/* Footer */
body.dark-mode footer {
    background: linear-gradient(180deg, #050a18 0%, #01030a 100%);
}

body.dark-mode .footer-brand p,
body.dark-mode .footer-column a,
body.dark-mode .footer-bottom {
    color: rgba(226, 232, 240, 0.75);
}

body.dark-mode .footer-column a:hover {
    color: #00ff87;
}

body.dark-mode .social-link {
    color: rgba(226, 232, 240, 0.75);
}

body.dark-mode .social-link:hover {
    color: #00ff87;
}

/* 404 */
body.dark-mode .not-found .code {
    color: #00ff87;
}

body.dark-mode .not-found h1 {
    color: #f8fafc;
}

body.dark-mode .not-found p {
    color: #cbd5f5;
}

body.dark-mode .btn-link {
    border-color: rgba(0, 255, 135, 0.3);
    background: rgba(15, 23, 42, 0.65);
    color: #f8fafc;
}

body.dark-mode .btn-link:hover {
    border-color: rgba(0, 255, 135, 0.45);
    color: #00ff87;
}

/* Cookie banner */
body.dark-mode .cookie-banner {
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(0, 255, 135, 0.22);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

body.dark-mode .cookie-banner__title {
    color: #f8fafc;
}

body.dark-mode .cookie-banner__description,
body.dark-mode .cookie-option__help {
    color: rgba(203, 213, 225, 0.85);
}

body.dark-mode .cookie-banner__link {
    color: #00ff87;
}

body.dark-mode .cookie-option {
    background: rgba(12, 22, 40, 0.75);
    border: 1px solid rgba(0, 255, 135, 0.18);
}

body.dark-mode .cookie-option__label span {
    color: #f8fafc;
}

body.dark-mode .cookie-banner__button {
    border-color: rgba(0, 255, 135, 0.28);
    color: #f8fafc;
}

body.dark-mode .cookie-banner__button--primary {
    background: linear-gradient(135deg, #00ff87, #00c16a);
    border-color: transparent;
}

body.dark-mode .cookie-banner__button--primary:hover {
    background: linear-gradient(135deg, #4dffb2, #00c16a);
}

body.dark-mode .cookie-banner__button:not(.cookie-banner__button--primary):hover {
    border-color: rgba(0, 255, 135, 0.45);
}

body.dark-mode .cookie-settings-trigger {
    border-color: rgba(0, 255, 135, 0.3);
    background: rgba(15, 23, 42, 0.8);
    color: #e2fbe5;
}

body.dark-mode .cookie-settings-trigger:hover {
    border-color: rgba(0, 255, 135, 0.45);
    color: #00ff87;
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.4rem;
    }

    .policy-section {
        padding: 2rem;
    }
}
