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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.008em;
}

h5 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.003em;
}

p {
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: #0184FA;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.3);
}

.btn-primary:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 132, 250, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0184FA;
    border: 1px solid #0184FA;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #0184FA;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0184FA;
    border: 1px solid #0184FA;
    font-weight: 500;
}

.btn-outline:hover {
    background: #0184FA;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.3);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: #ffffff;
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 32px;
    width: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.header.scrolled .logo {
    height: 36px;
}

/* Logo animation for favicon transition */
.nav-logo {
    position: relative;
    overflow: hidden;
}

.nav-logo .favicon {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    height: 35px;
    width: auto;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.header.scrolled .nav-logo .favicon {
    opacity: 1;
    height: 37px;
}

.header.scrolled .nav-logo .logo {
    opacity: 0;
    /* transform: translateX(-10px); */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: "Instrument Sans", sans-serif;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #0184FA;
}

.nav-link.active {
    color: #0184FA;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0184FA;
    border-radius: 1px;
}

/* Desktop Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    z-index: 999;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 16px;
    min-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transition-delay: 200ms;
    z-index: 1000;
    margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0ms;
}

.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin: 4px 0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #475569;
}

.dropdown-item:hover {
    background: rgba(1, 132, 250, 0.08);
    color: #0184FA;
    transform: translateY(-1px);
}

.dropdown-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.dropdown-item.disabled:hover {
    background: transparent;
    transform: none;
}

.dropdown-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 132, 250, 0.1);
    border-radius: 8px;
    color: #0184FA;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
    background: #0184FA;
    color: white;
    transform: scale(1.1);
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-family: "Instrument Sans", sans-serif;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.dropdown-desc {
    font-family: "Noto Sans", sans-serif;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.4;
}

.coming-soon-tag {
    background: linear-gradient(135deg, #0184FA, #0369a1);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0184FA;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    /* padding: 120px 0 80px; */
    background: #ffffff;
    min-height: 100vh;
    display: block;
    align-items: center;
    position: relative;
    /* overflow: hidden; */
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    /* padding: 0 24px; */
    padding-top: 130px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 100px;
    padding: 8px 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.badge {
    background: #0184FA;
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-text {
    color: #1e40af;
    font-weight: 500;
}

.hero-title {
    font-family: "Instrument Sans", sans-serif;
    color: #0f172a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(135deg, #0184FA 0%, #0184FA 50%, #0184FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Text Slider Styles */
.text-slider {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: hidden;
    vertical-align: top;
    min-width: 600px;
}

/* Tablet responsive for text slider */
@media (max-width: 1024px) and (min-width: 769px) {
    .text-slider {
        min-width: 395px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

/* Mobile responsive for text slider */
@media (max-width: 768px) {
    .text-slider {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }
}

.text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s ease-in-out;
    white-space: nowrap;
    display: flex;
    align-items: center;
    visibility: hidden;
}

/* Active slide - ONLY this rule determines visibility */
.text-slide.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Exiting slide */
.text-slide.exit {
    opacity: 0 !important;
    transform: translateY(-100%) !important;
    visibility: hidden !important;
}

/* Ensure all non-active slides are hidden */
.text-slide:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
}

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

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

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

.stat-number {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-family: "Noto Sans", sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

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

.hero-banner {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* .hero-banner:hover {
    transform: scale(1.02);
} */

.tech-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-card {
    position: absolute;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.tech-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-card:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.tech-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
}

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

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.card-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stat-dot.active { background: #22c55e; }
.stat-dot.loading { background: #f59e0b; }
.stat-dot.pending { background: #64748b; }

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line-svg {
    width: 100%;
    height: 100%;
}

.animated-line {
    stroke-dasharray: 5, 5;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -20; }
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0184FA;
    border-radius: 50%;
    animation: particleFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.particle:nth-child(1) { top: 10%; left: 20%; }
.particle:nth-child(2) { top: 30%; right: 15%; }
.particle:nth-child(3) { bottom: 40%; left: 30%; }
.particle:nth-child(4) { bottom: 20%; right: 25%; }
.particle:nth-child(5) { top: 60%; left: 50%; }

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

/* Enhanced Tech Animations */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0184FA, #8b5cf6, #06d6a0, #0184FA);
    background-size: 400% 400%;
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    animation: glowRotate 3s ease-in-out infinite;
}

.tech-card:hover .card-glow {
    opacity: 0.3;
}

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

/* Orbital Animation */
.tech-orbital {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.orbital-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbital-satellite {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(var(--angle));
    transform-origin: 0 160px;
    font-size: 1.2rem;
    animation: satelliteOrbit var(--speed) linear infinite;
}

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

@keyframes satelliteOrbit {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Data Streams Animation */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #0184FA, transparent);
    opacity: 0.3;
}

.stream-1 {
    left: 20%;
    animation: streamFlow 4s ease-in-out infinite;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    animation: streamFlow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.stream-3 {
    right: 20%;
    animation: streamFlow 5s ease-in-out infinite;
    animation-delay: 2s;
}

.stream-bit {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #22c55e;
    border-radius: 50%;
    animation: bitTravel 2s ease-in-out infinite;
}

.stream-bit:nth-child(1) { animation-delay: 0s; }
.stream-bit:nth-child(2) { animation-delay: 0.7s; }
.stream-bit:nth-child(3) { animation-delay: 1.4s; }

@keyframes streamFlow {
    0%, 100% { opacity: 0.1; transform: scaleY(0.5); }
    50% { opacity: 0.6; transform: scaleY(1); }
}

@keyframes bitTravel {
    0% {
        top: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Energy Field Animation */
.energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: energyPulse 4s ease-out infinite;
    animation-delay: var(--delay);
}

@keyframes energyPulse {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Line Pulse Animation */
.line-pulse {
    opacity: 0;
}

/* Enhanced Platform Features */
.platform-feature {
    position: relative;
    overflow: hidden;
}

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

.platform-feature:hover::before {
    left: 100%;
}

/* Tech Icon Enhancements */
.tech-icon-container {
    position: relative;
    display: inline-block;
}

.tech-icon.pulsing {
    animation: techPulse 2s ease-in-out infinite;
}

.tech-icon.rotating {
    animation: techRotate 3s linear infinite;
}

.tech-icon.floating {
    animation: techFloat 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

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

/* Icon Rings Animation */
.icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.ring-2 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 1s;
}

.ring-3 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Speed Lines Animation */
.speed-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    animation: speedLine 1.5s ease-in-out infinite;
}

.line-1 {
    top: -10px;
    left: -60px;
    animation-delay: 0s;
}

.line-2 {
    top: 0px;
    left: -70px;
    animation-delay: 0.2s;
}

.line-3 {
    top: 10px;
    left: -65px;
    animation-delay: 0.4s;
}

@keyframes speedLine {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

/* Security Shield Animation */
.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.shield-layer {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: shieldPulse 2s ease-in-out infinite;
}

.layer-1 {
    animation-delay: 0s;
}

.layer-2 {
    animation-delay: 0.7s;
}

.layer-3 {
    animation-delay: 1.4s;
}

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

/* Enhanced Product Cards */
.animated-card {
    position: relative;
    overflow: hidden;
}

.animated-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.animated-card:hover::after {
    transform: translateX(100%);
}

/* Typing Animation for Code */
.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #22c55e;
    animation: typing 3s steps(40) 1s both, blink 1s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-mockup {
    width: 500px;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mockup-header {
    background: #334155;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #475569;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #eab308; }
.control.green { background: #22c55e; }

.mockup-title {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-content {
    padding: 24px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
}

.code-line.indent {
    padding-left: 24px;
}

.code-comment { color: #64748b; }
.code-keyword { color: #0184FA; }
.code-variable { color: #e2e8f0; }
.code-function { color: #22c55e; }
.code-property { color: #f59e0b; }
.code-string { color: #ef4444; }
.code-boolean { color: #a855f7; }

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 0;
    overflow: hidden;
}

.trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.trusted-text {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Brand Logo Slider */
.trusted-logos-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: slide 20s linear infinite;
    width: fit-content;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    transition: all 0.3s ease;
}

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

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

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.trusted-logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/* Legacy styles for fallback */
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.125rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

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

.logo-placeholder {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Value Proposition Section */
.value-prop {
    padding: 120px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.value-prop-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-prop-title {
    color: #0f172a;
    margin-bottom: 24px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.value-prop-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

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

.world-map {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.map-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot.active {
    background: #0184FA;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.product-hero .hero-title {
    color: white;
}

.product-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.product-hero .hero-note {
    color: rgba(255, 255, 255, 0.8);
}

/* SDK Demo Styles */
.sdk-demo {
    width: 100%;
    max-width: 500px;
}

.demo-window {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.window-header {
    background: #334155;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #475569;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-title {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.demo-content {
    padding: 24px;
}

.camera-viewport {
    background: #000;
    border-radius: 8px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.camera-feed {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    position: relative;
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.detection-box {
    position: absolute;
    border: 2px solid #22c55e;
    border-radius: 4px;
    animation: detectPulse 2s ease-in-out infinite;
}

.detection-label {
    position: absolute;
    top: -24px;
    left: 0;
    background: #22c55e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

@keyframes detectPulse {
    0%, 100% { border-color: #22c55e; }
    50% { border-color: #16a34a; }
}

.recording-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.record-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: recordBlink 1s ease-in-out infinite;
}

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

.control-panel {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.control-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: #374151;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #9ca3af;
}

.control-button.active {
    background: #0184FA;
    color: white;
}

.control-button:hover {
    background: #4b5563;
}

.control-button.active:hover {
    background: #2563eb;
}

.control-icon {
    font-size: 1.2rem;
}

/* Features Showcase */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.feature-visual {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-large {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Resolution Indicator Animation */
.resolution-indicator {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resolution-bar {
    height: 4px;
    background: #22c55e;
    border-radius: 2px;
    animation: resolutionPulse 2s ease-in-out infinite;
}

.resolution-bar[data-quality="4K"] {
    width: 60px;
    animation-delay: 0s;
}

.resolution-bar[data-quality="1080p"] {
    width: 40px;
    animation-delay: 0.3s;
}

.resolution-bar[data-quality="720p"] {
    width: 30px;
    animation-delay: 0.6s;
}

@keyframes resolutionPulse {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

/* AI Processing Animation */
.ai-processing {
    width: 80px;
    height: 80px;
    position: relative;
}

.neural-network {
    width: 100%;
    height: 100%;
    position: relative;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0184FA;
    border-radius: 50%;
    animation: nodeActivation 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 10px; left: 10px; }
.node:nth-child(2) { top: 10px; right: 10px; }
.node:nth-child(3) { bottom: 10px; left: 10px; }
.node:nth-child(4) { bottom: 10px; right: 10px; }

@keyframes nodeActivation {
    0%, 100% { 
        background: #0184FA; 
        transform: scale(1); 
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.4); 
    }
    50% { 
        background: #22c55e; 
        transform: scale(1.2); 
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); 
    }
}

/* Platform Icons Animation */
.platform-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 80px;
    height: 80px;
}

.platform-icon {
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: platformFloat 3s ease-in-out infinite;
}

.platform-icon.ios { animation-delay: 0s; }
.platform-icon.android { animation-delay: 0.5s; }
.platform-icon.web { animation-delay: 1s; }
.platform-icon.desktop { animation-delay: 1.5s; }

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

/* Filter Preview Animation */
.filter-preview {
    width: 80px;
    height: 60px;
    position: relative;
    background: #1f2937;
    border-radius: 8px;
    overflow: hidden;
}

.filter-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: filterCycle 4s ease-in-out infinite;
}

.filter-layer.vintage {
    background: linear-gradient(45deg, #8b5a2b, #d2691e);
    animation-delay: 0s;
}

.filter-layer.sepia {
    background: linear-gradient(45deg, #cd853f, #daa520);
    animation-delay: 1.3s;
}

.filter-layer.noir {
    background: linear-gradient(45deg, #2f2f2f, #5f5f5f);
    animation-delay: 2.6s;
}

@keyframes filterCycle {
    0%, 25% { opacity: 0; }
    33%, 58% { opacity: 1; }
    67%, 100% { opacity: 0; }
}

/* Code Showcase Styles */
.code-showcase {
    padding: 120px 0;
    background: #f8fafc;
}

.code-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.code-demo {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.code-tabs {
    display: flex;
    background: #334155;
    border-bottom: 1px solid #475569;
}

.tab {
    padding: 16px 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #e2e8f0;
    background: #1e293b;
    border-bottom-color: #0184FA;
}

.tab:hover {
    color: #e2e8f0;
    background: #475569;
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
    padding: 32px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-block.active {
    display: block;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
}

.code-block code {
    color: #e2e8f0;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #ffffff;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #0184FA;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

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

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0184FA;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    color: #1f2937;
}

.price-period {
    font-size: 1.125rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Streaming Demo Styles */
.streaming-demo {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.streaming-network {
    width: 100%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 16px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.node-label {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 500;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #0184FA;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

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

.edge-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.edge-node {
    position: absolute;
    text-align: center;
}

.node-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    margin: 0 auto 4px;
    animation: pulse 2s infinite;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #0184FA, transparent);
    transform-origin: left center;
    transform: translate(-50%, -50%) rotate(var(--angle));
    animation: dataFlow 3s ease-in-out infinite;
}

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

.data-packets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    animation: packetTravel 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes packetTravel {
    0% {
        top: 50%;
        left: 50%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.latency-monitor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 16px;
    min-width: 150px;
}

.monitor-header {
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.latency-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-label {
    font-size: 0.25rem;
    color: #9ca3af;
    width: 30px;
}

.bar-fill {
    height: 2px;
    background: var(--color);
    border-radius: 2px;
    flex: 1;
    max-width: 60px;
    animation: barGrow 2s ease-out;
}

.bar-value {
    font-size: 0.25rem;
    color: #e2e8f0;
    width: 30px;
}

@keyframes barGrow {
    from { width: 0; }
    to { width: var(--width, 100%); }
}

/* Performance Metrics */
.performance-metrics {
    padding: 120px 0;
    background: #0f172a;
    color: white;
}

.metrics-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

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

.metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #0184FA;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
    margin-bottom: 4px;
}

.metric-unit {
    font-size: 1.25rem;
    color: #0184FA;
    font-weight: 600;
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 16px 0 8px;
    color: white;
}

.metric-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Use Cases */
.use-cases {
    padding: 120px 0;
    background: #f8fafc;
}

.use-cases-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.use-case-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.use-case-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Early Access */
.early-access {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.early-access-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.early-access-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.early-access-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.early-access-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.benefit-text {
    font-weight: 500;
}

.waitlist-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Project Dashboard Styles */
.project-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-item.active {
    color: #0184FA;
}

.nav-item:hover {
    color: #0184FA;
}

.action-btn {
    background: #0184FA;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.dashboard-content {
    padding: 24px;
}

.project-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.project-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
}

.project-card.active {
    border-color: #0184FA;
    background: #eff6ff;
}

.project-card:hover {
    border-color: #0184FA;
}

.project-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.project-status.in-progress {
    background: #f59e0b;
}

.project-status.planning {
    background: #6b7280;
}

.project-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

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

.progress-bar {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #0184FA;
    border-radius: 2px;
    transition: width 2s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.project-team {
    display: flex;
    gap: 4px;
}

.team-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-feed {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.activity-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.activity-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    flex-shrink: 0;
}

.activity-text {
    font-size: 0.75rem;
    color: #6b7280;
    flex: 1;
}

.activity-time {
    font-size: 0.65rem;
    color: #9ca3af;
}

/* Workflow Templates */
.workflow-templates {
    padding: 120px 0;
    background: #ffffff;
}

.templates-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.template-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.template-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.template-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.template-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.template-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.template-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Integration Ecosystem */
.integration-ecosystem {
    padding: 120px 0;
    background: #f8fafc;
}

.integration-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.integration-categories {
    margin-top: 48px;
}

.category-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #6b7280;
}

.category-tab.active {
    background: #0184FA;
    color: white;
    border-color: #0184FA;
}

.category-tab:hover {
    border-color: #0184FA;
    color: #0184FA;
}

.category-tab.active:hover {
    color: white;
}

.integration-grid {
    position: relative;
}

.integration-section {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.integration-section.active {
    display: grid;
}

.integration-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.integration-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.integration-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.integration-status {
    font-size: 0.875rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.integration-status:contains("Available") {
    background: #dcfce7;
    color: #166534;
}

.integration-status:contains("Coming Soon") {
    background: #fef3c7;
    color: #92400e;
}

/* Speed Indicator Animation */
.speed-indicator {
    width: 80px;
    height: 80px;
    position: relative;
}

.speed-dial {
    width: 100%;
    height: 100%;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    position: relative;
}

.dial-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #ef4444;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(var(--rotation));
    animation: needleSwing 3s ease-in-out infinite;
}

.dial-marks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mark {
    position: absolute;
    width: 2px;
    height: 8px;
    background: #9ca3af;
    transform-origin: center bottom;
    transform: translate(-50%, 100%) rotate(var(--angle));
}

.mark:nth-child(1) { top: 50%; left: 5px; }
.mark:nth-child(2) { top: 5px; left: 50%; }
.mark:nth-child(3) { top: 50%; right: 5px; }
.mark:nth-child(4) { bottom: 5px; left: 50%; }

.speed-label {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
}

@keyframes needleSwing {
    0%, 100% { transform: translate(-50%, -100%) rotate(10deg); }
    50% { transform: translate(-50%, -100%) rotate(50deg); }
}

/* Bitrate Adaptive Animation */
.bitrate-adaptive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quality-levels {
    display: flex;
    gap: 4px;
}

.quality-level {
    width: 12px;
    height: 20px;
    border-radius: 2px;
    animation: qualityPulse 2s ease-in-out infinite;
}

.quality-level.high {
    background: #22c55e;
    animation-delay: 0s;
}

.quality-level.medium {
    background: #f59e0b;
    animation-delay: 0.3s;
}

.quality-level.low {
    background: #ef4444;
    animation-delay: 0.6s;
}

@keyframes qualityPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

.adaptation-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #0184FA;
    animation: arrowBounce 2s ease-in-out infinite;
}

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

/* Global CDN Animation */
.global-cdn {
    width: 100px;
    height: 60px;
    position: relative;
}

.world-outline {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0f2fe, #bae6fd);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cdn-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0184FA;
    border-radius: 50%;
    animation: cdnPulse 3s ease-in-out infinite;
}

.cdn-point:nth-child(1) { animation-delay: 0s; }
.cdn-point:nth-child(2) { animation-delay: 0.5s; }
.cdn-point:nth-child(3) { animation-delay: 1s; }
.cdn-point:nth-child(4) { animation-delay: 1.5s; }

@keyframes cdnPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.4); 
    }
    50% { 
        transform: scale(1.5); 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6); 
    }
}

/* Analytics Charts Animation */
.analytics-charts {
    width: 100px;
    height: 60px;
    position: relative;
}

.chart-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
}

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

.chart-line {
    width: 4px;
    background: #0184FA;
    border-radius: 2px;
    height: var(--height);
    animation: chartGrow 2s ease-out infinite;
}

.chart-line:nth-child(1) { animation-delay: 0s; }
.chart-line:nth-child(2) { animation-delay: 0.2s; }
.chart-line:nth-child(3) { animation-delay: 0.4s; }
.chart-line:nth-child(4) { animation-delay: 0.6s; }

@keyframes chartGrow {
    0%, 20% { transform: scaleY(0); }
    80%, 100% { transform: scaleY(1); }
}

.metrics-display {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    padding: 4px 6px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0184FA;
    line-height: 1;
}

.metric-label {
    font-size: 0.6rem;
    color: #6b7280;
    line-height: 1;
}

/* Asset Library Animation */
.asset-library {
    width: 100px;
    height: 80px;
    position: relative;
}

.asset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 8px;
}

.asset-item {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    animation: assetPulse 3s ease-in-out infinite;
}

.asset-item.video {
    background: #ef4444;
    animation-delay: 0s;
}

.asset-item.image {
    background: #22c55e;
    animation-delay: 0.5s;
}

.asset-item.audio {
    background: #f59e0b;
    animation-delay: 1s;
}

.asset-item.document {
    background: #0184FA;
    animation-delay: 1.5s;
}

@keyframes assetPulse {
    0%, 80% { opacity: 0.6; transform: scale(1); }
    40% { opacity: 1; transform: scale(1.1); }
}

.asset-tags {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 500;
}

/* Collaboration View Animation */
.collaboration-view {
    width: 80px;
    height: 80px;
    position: relative;
}

.team-members {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.member {
    width: 16px;
    height: 16px;
    background: var(--color);
    border-radius: 50%;
    animation: memberActivity 2s ease-in-out infinite;
}

.member.active {
    animation: memberActive 1s ease-in-out infinite;
}

.member:nth-child(1) { animation-delay: 0s; }
.member:nth-child(2) { animation-delay: 0.3s; }
.member:nth-child(3) { animation-delay: 0.6s; }

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

@keyframes memberActive {
    0%, 100% { box-shadow: 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 12px rgba(59, 130, 246, 0.8); }
}

.collaboration-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.indicator {
    font-size: 0.875rem;
    animation: indicatorBounce 2s ease-in-out infinite;
}

.indicator.typing { animation-delay: 0s; }
.indicator.editing { animation-delay: 0.7s; }
.indicator.reviewing { animation-delay: 1.4s; }

@keyframes indicatorBounce {
    0%, 80% { transform: translateY(0); opacity: 0.5; }
    20% { transform: translateY(-4px); opacity: 1; }
}

/* Automation Flow Animation */
.automation-flow {
    width: 120px;
    height: 60px;
    position: relative;
}

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

.flow-node {
    width: 24px;
    height: 24px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    animation: flowPulse 3s ease-in-out infinite;
}

.flow-node.trigger { animation-delay: 0s; }
.flow-node.process { animation-delay: 1s; }
.flow-node.output { animation-delay: 2s; }

@keyframes flowPulse {
    0%, 80% { background: #f3f4f6; transform: scale(1); }
    20% { background: #0184FA; transform: scale(1.1); }
}

.flow-connection {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    animation: connectionActive 3s ease-in-out infinite;
}

.flow-connection:nth-child(2) { animation-delay: 0.5s; }
.flow-connection:nth-child(4) { animation-delay: 1.5s; }

@keyframes connectionActive {
    0%, 80% { background: #e5e7eb; }
    20% { background: #0184FA; }
}

.flow-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #6b7280;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 4px;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}


.coming-soon-tag {
    width: min-content;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.dropdown-icon {
    font-size: 1.25rem;
    width: 45px;
    padding: 5px;
    text-align: center;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #94a3b8;
}

.dropdown-desc {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Research Platform Section */
.research-platform {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.research-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Research Background Animations */
.research-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neural-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0184FA;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: neuralPulse 3s infinite ease-in-out;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

@keyframes neuralPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    stroke: #0184FA;
    stroke-width: 1;
    fill: none;
    opacity: 0.4;
    stroke-dasharray: 5, 5;
    animation: connectionFlow 4s infinite linear;
}

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

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.research-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06d6a0;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: floatParticle var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
    opacity: 0.7;
}

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

/* Research Badge */
.research-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.research-badge .badge-icon {
    font-size: 1rem;
}

.research-badge .badge-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Research Areas */
.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin: 80px 0;
}

.research-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* .research-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
} */

.research-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.research-category:hover::before {
    transform: scaleX(1);
}

.category-header {
    text-align: center;
    margin-bottom: 10px;
}

.category-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.icon-core {
    /* font-size: 2rem; */
    display: block;
}

.icon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: orbitRotate 8s infinite linear;
}

.orbit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0184FA;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    margin-left: -3px;
    transform-origin: 50% 43px;
    animation: orbitRotate 8s infinite linear;
    transform: rotate(var(--angle));
}

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

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.category-description {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.5;
}

.research-metrics {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Research Visualizations */
.research-visualization {
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Brain Animation */
.ai-brain {
    position: relative;
    width: 80px;
    height: 80px;
}

.brain-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: brainPulse 2s infinite ease-in-out;
}

.layer-1 {
    border-color: #0184FA;
    animation-delay: 0s;
}

.layer-2 {
    border-color: #8b5cf6;
    animation-delay: 0.3s;
    transform: scale(0.8);
}

.layer-3 {
    border-color: #06d6a0;
    animation-delay: 0.6s;
    transform: scale(0.6);
}

@keyframes brainPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.synaptic-activity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.synapse {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f59e0b;
    border-radius: 50%;
    animation: synapticFire 1.5s infinite ease-in-out;
    animation-delay: var(--delay);
}

.synapse:nth-child(1) { top: 20%; left: 30%; }
.synapse:nth-child(2) { top: 60%; left: 20%; }
.synapse:nth-child(3) { top: 70%; left: 70%; }
.synapse:nth-child(4) { top: 30%; left: 80%; }

@keyframes synapticFire {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Quantum Field Animation */
.quantum-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.quantum-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #8b5cf6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
    animation: quantumOrbit var(--speed) infinite linear;
    transform-origin: var(--orbit) 0;
}

@keyframes quantumOrbit {
    from { transform: rotate(0deg) translateX(var(--orbit)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--orbit)) rotate(-360deg); }
}

/* Quantum Computer Animation */
.quantum-computer {
    position: relative;
    width: 100px;
    height: 100px;
}

.quantum-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #8b5cf6, #0184FA);
    border-radius: 50%;
}

.core-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    animation: corePulse 2s infinite ease-in-out;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

.energy-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.energy-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: energyRing 3s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes energyRing {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0; }
}

.quantum-states {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qubit-state {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    left: var(--position);
    transition: all 0.3s ease;
}

.qubit-state.active {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    animation: qubitFlip 2s infinite ease-in-out;
}

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

/* DNA Helix Animation */
.dna-helix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 80px;
}

.helix-strand {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid;
    border-radius: 50px;
    animation: helixRotate 4s infinite linear;
}

.strand-1 {
    border-color: #06d6a0 transparent;
}

.strand-2 {
    border-color: transparent #0184FA;
    animation-direction: reverse;
}

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

.base-pairs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.base-pair {
    position: absolute;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, #06d6a0, #0184FA);
    top: var(--height);
    animation: basePairGlow 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes basePairGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Medical Scanner Animation */
.medical-scanner {
    position: relative;
    width: 100px;
    height: 80px;
    border: 2px solid rgba(6, 214, 160, 0.3);
    border-radius: 8px;
}

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

.beam-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06d6a0, transparent);
    animation: scannerBeam 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

.beam-line:nth-child(1) { top: 25%; }
.beam-line:nth-child(2) { top: 50%; }
.beam-line:nth-child(3) { top: 75%; }

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

.scan-data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06d6a0;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: dataPointBlink 1.5s infinite ease-in-out;
}

@keyframes dataPointBlink {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Research Timeline */
.research-timeline {
    margin: 80px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.timeline-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.timeline-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.timeline-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    transform: translateY(-50%);
}

.timeline-events {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline-event {
    position: relative;
    text-align: center;
    flex: 1;
}

.event-marker {
    position: relative;
    width: 20px;
    height: 20px;
    background: #0184FA;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.timeline-event.active .event-marker {
    background: #06d6a0;
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.5);
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    animation: markerPulse 2s infinite ease-in-out;
}

.timeline-event.active .marker-pulse {
    background: rgba(6, 214, 160, 0.3);
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

.event-content {
    color: #ffffff;
}

.event-year {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0184FA;
    margin-bottom: 8px;
}

.timeline-event.active .event-year {
    color: #06d6a0;
}

.event-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Research Publications */
.research-publications {
    margin: 80px 0;
}

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

.publications-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.view-all-link {
    color: #0184FA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #06d6a0;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

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

.publication-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.publication-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #0184FA;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.publication-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.publication-authors {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.publication-metrics {
    display: flex;
    gap: 16px;
}

.publication-metrics .metric {
    font-size: 0.75rem;
    color: #06d6a0;
    font-weight: 600;
}

/* Media Transformation Section */
.media-transformation {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.transformation-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Animated Background */
.transformation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: gridPulse 4s infinite ease-in-out;
    animation-delay: var(--delay);
}

.grid-line.horizontal {
    left: 0;
    right: 0;
    height: 1px;
    top: var(--position);
}

.grid-line.vertical {
    top: 0;
    bottom: 0;
    width: 1px;
    left: var(--position);
    background: linear-gradient(0deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

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

.grid-intersections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.intersection {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0184FA;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    animation: intersectionGlow 3s infinite ease-in-out;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

/* Floating Code Blocks */
.floating-code-blocks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.code-block.floating {
    position: absolute;
    left: var(--x);
    top: var(--y);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    animation: floatCode var(--duration) infinite linear;
    animation-delay: var(--delay);
}

.code-snippet {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: #0184FA;
    white-space: nowrap;
}

@keyframes floatCode {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Content Header */
.content-header {
    text-align: center;
    /* margin-bottom: 80px; */
}

.transformation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.transformation-badge .badge-icon {
    font-size: 1rem;
}

.transformation-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

.transformation-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text-advanced {
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 50%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s infinite ease-in-out;
}

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

.transformation-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 80px 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-icon {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.icon-animation {
    font-size: 3rem;
    display: block;
    animation: iconFloat 3s infinite ease-in-out;
}

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

.metric-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: metricPulse 2s infinite ease-in-out;
}

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

.metric-data {
    color: #ffffff;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0184FA;
    display: inline;
}

.metric-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-left: 4px;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 8px 0;
}

.metric-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Innovation Showcase */
.innovation-showcase {
    margin: 80px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.showcase-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.showcase-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.global-innovation-map {
    position: relative;
    height: 400px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 16px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.region {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-pulse {
    width: 20px;
    height: 20px;
    background: #94a3b8;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.region.active .region-pulse {
    background: #0184FA;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: regionPulse 2s infinite ease-in-out;
}

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

.region-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.region:hover .region-info {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

.region-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.region-stat {
    font-size: 0.75rem;
    color: #0184FA;
    font-weight: 500;
}

.connection-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 5, 5;
    animation: connectionFlow 3s infinite linear;
    opacity: 0.6;
}

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

.data-flows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06d6a0;
    border-radius: 50%;
    left: var(--start-x);
    top: var(--start-y);
    animation: dataFlow 4s infinite linear;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes dataFlow {
    0% {
        left: var(--start-x);
        top: var(--start-y);
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: var(--end-x);
        top: var(--end-y);
        opacity: 0;
        transform: scale(0);
    }
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.story-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.story-stat {
    font-size: 0.875rem;
    color: #0184FA;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    font-style: italic;
}

/* Why Choose Nosmai Section */
.why-choose-nosmai {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Animated Background */
.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-particles .particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: floatParticles var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

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

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

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

/* Section Header */
.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.why-choose-badge .badge-icon {
    font-size: 1rem;
}

.why-choose-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight-text {
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 80px 0;
}

.feature-card.advanced {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card.advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #0184FA;
}

.feature-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 100%);
    overflow: hidden;
}

.feature-content {
    position: relative;
    padding: 120px 24px 24px;
    z-index: 10;
}

/* Performance Visualization */
.performance-visualization {
    position: relative;
    width: 100%;
    height: 100%;
}

.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.speed-line {
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: speedLineFlow 2s infinite linear;
    animation-delay: var(--delay);
}

.speed-line:nth-child(1) { top: 30%; }
.speed-line:nth-child(2) { top: 45%; }
.speed-line:nth-child(3) { top: 60%; }
.speed-line:nth-child(4) { top: 75%; }

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

.performance-meter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.meter-arc {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: meterSpin 2s infinite linear;
}

.meter-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25px;
    background: white;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
    animation: needleSwing 3s infinite ease-in-out;
}

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

@keyframes needleSwing {
    0%, 100% { transform: translate(-50%, -100%) rotate(30deg); }
    50% { transform: translate(-50%, -100%) rotate(150deg); }
}

/* Security Visualization */
.security-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layers {
    position: relative;
    width: 80px;
    height: 80px;
}

.shield-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: shieldPulse 3s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.encryption-flow {
    position: absolute;
    top: 20px;
    right: 20px;
}

.encryption-bit {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-bottom: 4px;
    animation: encryptionFlow 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes encryptionFlow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Scale Visualization */
.scale-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-network {
    position: relative;
    width: 80px;
    height: 80px;
}

.globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: coreGlow 2s infinite ease-in-out;
}

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

.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
    animation: nodeOrbit 8s infinite linear;
    animation-delay: var(--delay);
    transform-origin: 0 0;
    transform: rotate(var(--angle)) translateX(35px) rotate(calc(-1 * var(--angle)));
}

@keyframes nodeOrbit {
    from { transform: rotate(var(--angle)) translateX(35px) rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(var(--angle) + 360deg)) translateX(35px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

/* Developer Visualization */
.developer-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.code-matrix {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
}

.matrix-line {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    opacity: 0;
    animation: codeTyping 4s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes codeTyping {
    0%, 90% { opacity: 0; transform: translateX(-20px); }
    10%, 80% { opacity: 1; transform: translateX(0); }
}

.api-connections {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.api-node {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-bottom: 6px;
    animation: apiPulse 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

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

/* Innovation Visualization */
.innovation-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-spiral {
    position: relative;
    width: 100px;
    height: 100px;
}

.spiral-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
    animation: spiralOrbit 6s infinite linear;
    animation-delay: var(--delay);
    transform-origin: 0 0;
}

.spiral-particle:nth-child(1) { transform: rotate(var(--angle)) translateX(20px) rotate(calc(-1 * var(--angle))); }
.spiral-particle:nth-child(2) { transform: rotate(var(--angle)) translateX(30px) rotate(calc(-1 * var(--angle))); }
.spiral-particle:nth-child(3) { transform: rotate(var(--angle)) translateX(40px) rotate(calc(-1 * var(--angle))); }
.spiral-particle:nth-child(4) { transform: rotate(var(--angle)) translateX(30px) rotate(calc(-1 * var(--angle))); }
.spiral-particle:nth-child(5) { transform: rotate(var(--angle)) translateX(20px) rotate(calc(-1 * var(--angle))); }
.spiral-particle:nth-child(6) { transform: rotate(var(--angle)) translateX(35px) rotate(calc(-1 * var(--angle))); }

@keyframes spiralOrbit {
    from { transform: rotate(var(--angle)) translateX(30px) rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(var(--angle) + 360deg)) translateX(30px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

.innovation-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: coreRingPulse 2s infinite ease-in-out;
}

@keyframes coreRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.core-center {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 2;
}

/* Reliability Visualization */
.reliability-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.uptime-monitor {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
}

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.grid-cell {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    animation: gridCellActive 3s infinite ease-in-out;
    animation-delay: var(--delay);
}

.grid-cell.active {
    background: rgba(34, 197, 94, 0.8);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes gridCellActive {
    0%, 90% { opacity: 1; transform: scaleY(1); }
    95% { opacity: 0.6; transform: scaleY(0.8); }
    100% { opacity: 1; transform: scaleY(1); }
}

.heartbeat-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 30px;
}

.heartbeat-svg {
    width: 100%;
    height: 100%;
}

.heartbeat-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: heartbeatFlow 3s infinite ease-in-out;
}

@keyframes heartbeatFlow {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

/* Feature Content */
.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feature-icon-container {
    position: relative;
    display: inline-block;
}

.feature-icon {
    font-size: 2rem;
    display: block;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlowPulse 2s infinite ease-in-out;
}

@keyframes iconGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

.feature-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #0184FA;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    gap: 24px;
}

.feature-stats .stat {
    text-align: center;
}

.feature-stats .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0184FA;
}

.feature-stats .stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Competitive Advantage - Next-Level Design */
.competitive-advantage {
    margin: 80px 0;
    padding: 80px 40px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(139, 92, 246, 0.06) 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 32px 80px rgba(59, 130, 246, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.competitive-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    animation: backgroundShift 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
}

.advantage-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.advantage-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #0184FA 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.advantage-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    to { box-shadow: 0 0 40px rgba(139, 92, 246, 0.8); }
}

.advantage-subtitle {
    font-size: 1.375rem;
    color: #475569;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0, #f59e0b);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 0 12px 12px;
}

.comparison-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.comparison-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 80px rgba(59, 130, 246, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
}

.comparison-item:hover::before {
    left: 0;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.comparison-item:hover::after {
    opacity: 1;
}

.comparison-icon {
    font-size: 4rem;
    margin-bottom: 32px;
    display: block;
    text-align: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.comparison-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: 
        radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes iconGlow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.comparison-metric {
    margin-bottom: 32px;
    padding: 28px;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.comparison-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(6, 214, 160, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-item:hover .comparison-metric::before {
    opacity: 1;
}

.metric-bar {
    position: relative;
    height: 44px;
    background: #f1f5f9;
    border-radius: 22px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s ease;
}

.metric-bar.nosmai {
    background: #e0f2fe;
}

.metric-bar.nosmai:hover {
    box-shadow: 
        inset 0 2px 6px rgba(59, 130, 246, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.metric-bar.others {
    background: #f1f5f9;
}

.metric-bar.others:hover {
    box-shadow: 
        inset 0 2px 6px rgba(148, 163, 184, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 22px;
    animation: barFillNew 2s ease-out forwards;
    animation-delay: 0.5s;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.metric-bar.nosmai .bar-fill {
    background: 
        linear-gradient(90deg, 
            #0184FA 0%, 
            #60a5fa 50%, 
            #0184FA 100%);
}

.metric-bar.nosmai .bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.2) 0%, 
            transparent 50%
        );
    border-radius: 22px;
}

.metric-bar.nosmai .bar-fill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.4) 0%, 
            rgba(255, 255, 255, 0.1) 50%, 
            transparent 100%
        );
    border-radius: 20px;
    pointer-events: none;
}

.metric-bar.others .bar-fill {
    background: #94a3b8;
}

.metric-bar.others .bar-fill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.3) 0%, 
            rgba(255, 255, 255, 0.1) 50%, 
            transparent 100%
        );
    border-radius: 20px;
    pointer-events: none;
}

@keyframes barFillNew {
    0% { 
        width: 0;
    }
    100% { 
        width: var(--width);
    }
}

/* Shimmer animation removed for cleaner design */

.bar-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
    letter-spacing: 0.01em;
}

.metric-bar.nosmai .bar-label {
    color: #1e293b;
    font-weight: 600;
}

.metric-bar.others .bar-label {
    color: #475569;
    font-weight: 600;
}

.bar-value {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    width: auto;
    z-index: 10;
    line-height: 1;
    letter-spacing: -0.01em;
}

.metric-bar.nosmai .bar-value {
    color: #1e293b;
}

.metric-bar.others .bar-value {
    color: #475569;
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-top: 20px;
    text-align: center;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.comparison-label::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.comparison-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    animation: labelGlow 2s ease-in-out infinite alternate;
}

@keyframes labelGlow {
    from { 
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        transform: translateX(-50%) scale(1);
    }
    to { 
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
        transform: translateX(-50%) scale(1.05);
    }
}

/* Enhanced Comparison Label Badges */
.comparison-item[data-metric="performance"] .comparison-label::after {
    background: linear-gradient(90deg, #ef4444, #f97316, #fbbf24);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.comparison-item[data-metric="performance"] .comparison-label::after {
    animation: performanceGlow 2s ease-in-out infinite alternate;
}

@keyframes performanceGlow {
    from { box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3); }
    to { box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5); }
}

.comparison-item[data-metric="setup"] .comparison-label::after {
    background: linear-gradient(90deg, #06d6a0, #10b981, #059669);
    box-shadow: 0 2px 8px rgba(6, 214, 160, 0.3);
    animation: setupGlow 2s ease-in-out infinite alternate;
}

@keyframes setupGlow {
    from { box-shadow: 0 2px 8px rgba(6, 214, 160, 0.3); }
    to { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5); }
}

.comparison-item[data-metric="cost"] .comparison-label::after {
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #9333ea);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    animation: costGlow 2s ease-in-out infinite alternate;
}

@keyframes costGlow {
    from { box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3); }
    to { box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5); }
}

/* Company Overview Section */
.company-overview {
    padding: 120px 0;
    background: #ffffff;
}

.company-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.company-stat {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-stat:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.company-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.company-stat:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.stat-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(2400%) hue-rotate(210deg) brightness(95%) contrast(101%);
}

.company-stat .stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
    margin-bottom: 8px;
}

.company-stat .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.company-mission {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px;
    margin-top: 60px;
    position: relative;
}

.company-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(6, 214, 160, 0.05) 100%);
    border-radius: 20px;
    z-index: 1;
}

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

.mission-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.value-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: #f8fafc;
}

/* Product Tabs Navigation */
.product-tabs {
    margin: 60px 0 40px;
}

.tab-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-tab {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.product-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.product-tab.active {
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 100%);
    border-color: #0184FA;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.product-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0184FA, #8b5cf6, #06d6a0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-tab:hover::before {
    opacity: 0.05;
}

.product-tab.active::before {
    opacity: 0;
}

.tab-icon {
    font-size: 2rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.tab-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.tab-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: inherit;
}

.tab-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    color: inherit;
}

.tab-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    position: relative;
}

.tab-status.available {
    background: #dcfce7;
    color: #166534;
}

.tab-status.coming {
    background: #fef3c7;
    color: #92400e;
}

.product-tab.active .tab-status.available {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.product-tab.active .tab-status.coming {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Product Panels */
.product-panels {
    position: relative;
    min-height: 600px;
}

.product-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    color: white;
}

.product-badge.coming {
    background: #fef3c7;
    color: #92400e;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #eff6ff;
    border-color: #0184FA;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Product Stats */
.product-stats {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0184FA;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 16px;
}

/* Panel Visuals */
.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Code Demo Window */
.code-demo-window {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.window-header {
    background: #334155;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #475569;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #eab308; }
.control.green { background: #22c55e; }

.window-title {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 8px;
    color: #e2e8f0;
}

/* Streaming Visualization */
.streaming-visualization {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    color: white;
    position: relative;
    overflow: hidden;
}

.streaming-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stream-source {
    text-align: center;
    margin-bottom: 24px;
}

.source-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.source-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.stream-path {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 24px 0;
    overflow: hidden;
    position: relative;
}

.data-flow {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    animation: dataFlowStream 2s ease-in-out infinite;
}

@keyframes dataFlowStream {
    0% { left: -50%; }
    100% { left: 100%; }
}

.cdn-nodes {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
}

.cdn-node {
    font-size: 1.5rem;
    opacity: 0.6;
    animation: cdnPulseStream 3s ease-in-out infinite;
}

.cdn-node.active {
    opacity: 1;
}

.cdn-node:nth-child(1) { animation-delay: 0s; }
.cdn-node:nth-child(2) { animation-delay: 1s; }
.cdn-node:nth-child(3) { animation-delay: 2s; }

@keyframes cdnPulseStream {
    0%, 66% { opacity: 0.6; }
    33% { opacity: 1; }
}

.viewer-count {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.count-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Project Dashboard Preview */
.project-dashboard-preview {
    background: white;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.project-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.progress-circle {
    position: relative;
    width: 48px;
    height: 48px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#0184FA calc(var(--progress) * 3.6deg), #e5e7eb 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0184FA;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid transparent;
}

.task-item.completed {
    border-left-color: #22c55e;
    background: #f0fdf4;
}

.task-item.active {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.task-status {
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.task-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Responsive Product Tabs */
@media (max-width: 1024px) {
    .tab-navigation {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .panel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-tab {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
        min-height: auto;
    }

    .research-areas {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .tab-content {
        order: 2;
    }
    
    .tab-status {
        order: 3;
    }
    
    .panel-layout {
        padding: 24px;
        gap: 32px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* Fix Feature Lists Spacing */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.feature-benefits li {
    padding: 8px 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-benefits li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Platform Overview Section Spacing Fix */
.platform-overview {
    padding: 120px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 60px;
}

.platform-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #f1f5f9;
}

.platform-feature:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .platform-feature {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.product-card.large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.product-title {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.product-description {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1rem;
}

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

.sdk-preview {
    background: #1e293b;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
}

.code-snippet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.875rem;
}

.code-snippet .code-line {
    color: #e2e8f0;
}

.product-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-status.available {
    background: #dcfce7;
    color: #166534;
}

.product-status.coming-soon {
    background: #fef3c7;
    color: #92400e;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #ffffff;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title {
    font-family: "Instrument Sans", sans-serif;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.feature-title {
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #0184FA;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 32px;
}

.quote-icon {
    font-size: 4rem;
    color: #0184FA;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6, #06d6a0);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::after {
    opacity: 1;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Testimonials Animation on Scroll */
.testimonial-card.animate {
    animation: testimonialSlideUp 0.6s ease-out forwards;
}

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

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

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .quote-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #0f172a;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: #0184FA;
    color: white;
}

.cta .btn-primary:hover {
    background: #2563eb;
}

.cta .btn-outline {
    border-color: #475569;
    color: #e2e8f0;
}

.cta .btn-outline:hover {
    background: #334155;
    border-color: #64748b;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 80px 0 40px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    font-family: "Noto Sans", sans-serif;
    color: #94a3b8;
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-family: "Instrument Sans", sans-serif;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #1e293b;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .value-prop-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.large {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 6rem;
        gap: 0.5rem;
        display: none;
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-100%);
        opacity: 0;
    }

    .nav-links > * {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-link {
        width: 90%;
        text-align: center;
        padding: 18px 24px !important;
        color: #475569 !important;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 12px;
        margin: 4px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
    }

    .nav-link:hover {
        color: #0184FA !important;
        background: rgba(1, 132, 250, 0.08);
        border-color: rgba(1, 132, 250, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(1, 132, 250, 0.15);
    }

    .nav-dropdown {
        position: relative;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown .nav-link {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 16px;
        margin: 0;
        padding: 0;
        width: 100%;
        display: none;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
        margin-top: 12px;
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        margin: 8px 0;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #475569;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .dropdown-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(1, 132, 250, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .dropdown-item:hover::before {
        left: 100%;
    }

    .dropdown-item:hover {
        background: rgba(1, 132, 250, 0.08);
        color: #0184FA;
        border-color: rgba(1, 132, 250, 0.2);
        transform: translateX(4px);
        box-shadow: 0 6px 20px rgba(1, 132, 250, 0.15);
    }

    .dropdown-item.disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .dropdown-item.disabled:hover {
        transform: none;
        background: rgba(1, 132, 250, 0.05);
        box-shadow: none;
    }

    .dropdown-icon {
        font-size: 1.3rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(1, 132, 250, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .dropdown-item:hover .dropdown-icon {
        background: #0184FA;
        color: white;
        transform: scale(1.1);
    }

    .dropdown-content {
        flex: 1;
        min-width: 0;
    }

    .dropdown-title {
        color: #1a1a1a;
        font-weight: 600;
        margin-bottom: 4px;
        font-size: 1rem;
        line-height: 1.2;
    }

    .dropdown-desc {
        color: #64748b;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .coming-soon-tag {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-left: auto;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        animation: pulse 2s ease-in-out infinite;
    }

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

    .btn-primary {
        margin-top: 1rem;
        padding: 12px 30px;
        width: auto !important;
        align-self: center;
    }

    .nav-links .btn-primary {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-mockup {
        width: 100%;
        max-width: 400px;
    }
    
    .trusted-logos {
        gap: 24px;
    }
    
    .logos-track {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .logo-slide {
        width: 100px;
        height: 50px;
    }
    
    .value-prop-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-showcase {
        height: 300px;
    }
    
    .mission-title {
        font-size: 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .company-mission {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-container,
    .value-prop-container,
    .products-container,
    .features-container,
    .cta-container,
    .footer-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-card {
        padding: 24px;
    }
    
    .world-map {
        width: 100%;
        height: 200px;
    }
}

/* Camera SDK Features Section */
.camera-sdk-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.camera-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.features-badge .badge-icon {
    font-size: 1rem;
}

.features-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.feature-category {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #0184FA;
}

.category-header {
    text-align: center;
    margin-bottom: 24px;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0184FA, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-category:hover .category-icon::before {
    transform: translateX(100%);
}

.icon-core {
    /* font-size: 2rem; */
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icon-core img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    display: block;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-point {
    padding: 12px 0;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-point:last-child {
    border-bottom: none;
}

.feature-point:hover {
    color: #0184FA;
    transform: translateX(8px);
}

/* Product Ecosystem Section */
.product-ecosystem {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    opacity: 0.8;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.ecosystem-badge .badge-icon {
    font-size: 1rem;
}

.ecosystem-badge .badge-text {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.875rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card:hover {
    /* transform: translateY(-8px); */
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.5);
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.ecosystem-icon img {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
}

.ecosystem-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ecosystem-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ecosystem-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.ecosystem-status.development {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.ecosystem-benefits {
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.ecosystem-benefits::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6, #06d6a0);
    border-radius: 2px;
}

.benefits-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 214, 160, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    /* transform: translateY(-12px) scale(1.02); */
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15);
}

.benefit-item:nth-child(1):hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15);
}

.benefit-item:nth-child(2):hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.15);
}

.benefit-item:nth-child(3):hover {
    border-color: rgba(6, 214, 160, 0.4);
    box-shadow: 0 20px 48px rgba(6, 214, 160, 0.15);
}

.benefit-item:nth-child(4):hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 48px rgba(245, 158, 11, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

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

.benefit-item:hover .benefit-icon {
    transform: scale(1.15);
}

/* Removed individual benefit icon backgrounds */




.benefit-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover .benefit-title {
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .camera-sdk-features,
    .product-ecosystem {
        padding: 60px 0;
    }
    
    .features-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-category,
    .ecosystem-card {
        padding: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .benefit-item {
        padding: 32px 24px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-core {
        font-size: 1.5rem;
    }
}
/* Camera SDK Specific Styles */

/* Camera Hero Section */
.camera-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.camera-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.camera-hero-content {
    color: white;
}

.camera-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.camera-hero-badge .badge {
    background: #0184FA;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.camera-hero-badge .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.camera-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.camera-hero-title .gradient-text {
    /* background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.camera-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.camera-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.camera-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 500px;
}

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

.camera-stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.camera-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Camera Hero Visual */
.camera-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.camera-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.camera-device {
    position: relative;
    z-index: 2;
}

.device-frame {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 2s ease;
    animation: deviceShine 3s ease-in-out infinite;
}

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

.device-screen {
    background: #000;
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.camera-interface {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.filter-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.filter-preview.active {
    background: rgba(59, 130, 246, 0.3);
    border-color: #0184FA;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.filter-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.preview-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.preview-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.floating-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.effect-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    left: var(--x);
    top: var(--y);
}

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

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Camera Features Section */
.camera-features {
    padding: 100px 0;
    background: #f8fafc;
}

.camera-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.feature-card-large {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-large:hover::before {
    transform: scaleX(1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0184FA, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-title-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.feature-description-large {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.highlight-item {
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #e2e8f0;
    transform: translateX(4px);
}

/* Camera Roadmap Section */
.camera-roadmap {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.camera-roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.roadmap-badge .badge-icon {
    font-size: 1rem;
}

.roadmap-badge .badge-text {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.875rem;
}

.roadmap-timeline {
    margin-top: 3rem;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0184FA, #8b5cf6);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.roadmap-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: roadmapPulse 2s ease-in-out infinite;
}

@keyframes roadmapPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.marker-icon {
    font-size: 1.5rem;
    color: white;
}

.roadmap-content {
    flex: 1;
    padding-top: 0.5rem;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.roadmap-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.roadmap-status.development {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.roadmap-status.planned {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Camera Use Cases Section */
.camera-use-cases {
    padding: 100px 0;
    background: white;
}

.camera-use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.use-case-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
    background: white;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    transition: width 0.3s ease;
}

.use-case-card:hover::before {
    width: 100%;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #64748b;
    line-height: 1.7;
}

/* Camera Why Choose Section */
.camera-why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.camera-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-choose-description {
    color: #64748b;
    line-height: 1.7;
}

/* Camera CTA Section */
.camera-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.camera-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.camera-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.camera-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

/* Responsive Design for Camera SDK */
@media (max-width: 768px) {
    .camera-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .camera-hero {
        padding: 100px 0 60px;
    }
    
    .camera-hero-title {
        font-size: 2.5rem;
    }
    
    .camera-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .camera-hero-buttons {
        justify-content: center;
    }
    
    .camera-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .camera-features-grid,
    .use-cases-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-large,
    .use-case-card,
    .why-choose-card {
        padding: 1.5rem;
    }
    
    .roadmap-item {
        gap: 1rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-marker {
        width: 40px;
        height: 40px;
    }
    
    .marker-icon {
        font-size: 1.2rem;
    }
    
    .camera-cta-title {
        font-size: 2rem;
    }
    
    .camera-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camera-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .camera-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .camera-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camera-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Quick Start Examples Section */
.quick-start-examples {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.examples-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.examples-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.examples-badge .badge-icon {
    font-size: 1rem;
}

.examples-badge .badge-text {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.quick-example-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.quick-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
}

.example-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.example-icon.android {
    background: linear-gradient(135deg, #3ddc84, #2db55d);
}

.example-icon.ios {
    background: linear-gradient(135deg, #007aff, #0056b3);
}

.example-icon.flutter {
    background: linear-gradient(135deg, #02569b, #0175c2);
}

.example-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.example-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #0184FA;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.example-code {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 1.5rem 2rem;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.example-code pre {
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.example-code code {
    color: #e2e8f0;
}

.ux-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-top: 1px solid #e2e8f0;
}

.benefit-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-text {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.examples-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

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

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

.footer-stat .stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0184FA;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-stat .stat-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-action {
    display: flex;
    align-items: center;
}

/* Responsive Design for Quick Examples */
@media (max-width: 768px) {
    .quick-examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .examples-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-action .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .example-header {
        padding: 1rem 1.5rem;
    }
    
    .example-code {
        padding: 1rem 1.5rem;
    }
    
    .example-code pre {
        font-size: 0.8rem;
    }
    
    .ux-benefit {
        padding: 0.75rem 1.5rem;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-examples-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COMPREHENSIVE MOBILE ENHANCEMENTS ===== */

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 8px;
        touch-action: manipulation;
    }
    
    .btn-large {
        min-height: 52px;
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        touch-action: manipulation;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        padding: 24px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.1rem;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
        transition: color 0.2s ease;
        touch-action: manipulation;
        position: relative;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #0184FA;
    }
    
    .nav-dropdown {
        position: relative;
        width: 100%;
    }
    
    .nav-dropdown .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-align: center;
        position: relative;
    }
    
    .nav-dropdown .dropdown-arrow {
        transition: all 0.3s ease;
        font-size: 0.875rem;
        margin-left: 8px;
        position: absolute;
        right: 0;
        color: #6b7280;
    }
    
    .nav-dropdown.open .dropdown-arrow {
        color: #0184FA;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        background: #f8fafc;
        border: none;
        border-radius: 8px;
        margin: 12px 0 0 0;
        padding: 0;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        width: 100%;
        display: block;
    }
    
    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        max-height: 460px;
        padding: 16px;
    }
    
    .dropdown-item {
        padding: 16px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        text-decoration: none;
        color: inherit;
        transition: background-color 0.2s ease;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .dropdown-item:hover {
        background-color: rgba(1, 132, 250, 0.1);
    }
    
    .dropdown-item.disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .dropdown-item.disabled:hover {
        background-color: transparent;
    }
    
    .dropdown-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #0184FA, #1d4ed8);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .dropdown-content {
        flex: 1;
    }
    
    .dropdown-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 4px;
    }
    
    .dropdown-desc {
        font-size: 0.875rem;
        color: #6b7280;
        line-height: 1.4;
    }
    
    .coming-soon-tag {
        background: #fef3c7;
        color: #92400e;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 4px;
        display: inline-block;
    }
    
    /* Primary button in mobile nav */
    .nav-links .btn-primary {
        margin-top: 16px;
        padding: 12px 24px;
        text-align: center;
        border-radius: 8px;
        font-weight: 600;
        width: 100%;
        max-width: none;
        border: none;
    }
}

/* Enhanced Hero Sections for Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-badge {
        margin-top: 40px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-badge .badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .hero-badge .badge-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .text-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        min-height: 1.2em;
    }
    
    .text-slide {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 215px;
    }
    
    .hero-note {
        font-size: 0.875rem;
        margin-top: 24px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Improved Grid Layouts */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Enhanced Spacing and Typography */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .container,
    .hero-container,
    .research-container,
    .ecosystem-container,
    .company-container,
    .transformation-container,
    .trusted-container {
        padding: 0 20px;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content,
    .section-header {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Enhanced Cards and Components */
@media (max-width: 768px) {
    .card,
    .feature-item,
    .ecosystem-card,
    .testimonial-card,
    .product-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .feature-icon,
    .ecosystem-icon {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .feature-title,
    .ecosystem-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .feature-description,
    .ecosystem-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Enhanced Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: left;
        order: 1;
        margin-bottom: 24px;
    }
    
    .footer-links {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-link {
        display: block;
        padding: 8px 0;
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        margin-top: 32px;
        padding-top: 20px;
        text-align: center;
    }
}

/* Enhanced Video and Media */
@media (max-width: 768px) {
    .camera-demo-video {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .camera-demo-video video {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    
    .hero-banner {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .code-example-container {
        max-width: 100%;
        overflow-x: auto;
    }
    
    .code-content {
        padding: 20px;
    }
    
    .code-content pre {
        font-size: 0.8rem;
        line-height: 1.5;
        white-space: pre-wrap;
        word-break: break-word;
    }
}

/* Touch-Friendly Interactive Elements */
@media (max-width: 768px) {
    .dropdown-arrow {
        font-size: 0.875rem;
        margin-left: 8px;
    }
    
    .nav-dropdown .nav-link {
        position: relative;
        padding-right: 30px;
    }
    
    .nav-dropdown .dropdown-arrow {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-arrow {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .badge,
    .hero-badge,
    .transformation-badge {
        padding: 8px 16px;
        font-size: 0.875rem;
        border-radius: 8px;
    }
    
    .badge-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-badge {
        margin-top: 40px;
        padding: 4px 8px;
        margin-bottom: 16px;
    }
    
    .hero-badge .badge {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    
    .hero-badge .badge-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}
