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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0a0a0f;
    position: relative;
}

/* Hero starfield background only */

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(92, 214, 214, 0.5),
                    0 0 10px rgba(92, 214, 214, 0.3),
                    0 0 15px rgba(92, 214, 214, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(92, 214, 214, 0.8),
                    0 0 20px rgba(92, 214, 214, 0.5),
                    0 0 30px rgba(92, 214, 214, 0.3);
    }
}

@keyframes dataStream {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes electric-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px #5CD6D6) drop-shadow(0 0 12px #3676E2);
    }
    20%, 24%, 55% {
        opacity: 0.8;
        filter: drop-shadow(0 0 4px #5CD6D6) drop-shadow(0 0 6px #3676E2);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(92, 214, 214, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: fadeIn 0.5s ease-out;
}

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

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
}

.lang-btn {
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, #5CD6D6, #3676E2);
    color: #0f172a;
}

.footer-lang-toggle {
    margin-top: 0.75rem;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5CD6D6, #3676E2);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #5CD6D6;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.shop-btn {
    background-color: #3676E2;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(54, 118, 226, 0.3);
}

.shop-btn::after {
    display: none;
}

.shop-btn:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 118, 226, 0.4);
}

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

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

@media (min-width: 1101px) {
    .nav-dropdown:hover .nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
}

@media (max-width: 1100px) {
    .nav-dropdown.open .nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    background: rgba(92, 214, 214, 0.1);
    color: #5CD6D6;
    padding-left: 1.5rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #5CD6D6;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
/* Show hamburger menu on tablets (iPad) and smaller to avoid wrapping */
@media (max-width: 1100px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(92, 214, 214, 0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .shop-btn {
        background-color: transparent;
        color: #cbd5e1 !important;
        padding: 0.75rem 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .shop-btn:hover {
        background-color: transparent;
        color: #5CD6D6 !important;
        transform: translateY(-2px);
        box-shadow: none;
    }
    
    .nav-menu .shop-btn::after {
        display: block;
    }

    .lang-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 6px;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        background: rgba(15, 23, 42, 0.95);
        border: none;
        border-radius: 4px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        box-shadow: none;
    }
    
    .nav-dropdown-menu::before {
        display: none;
    }
    
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    background: transparent;
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    margin-top: 70px;
    overflow: hidden; /* Contain the starfield within hero section */
}

#hero-galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#hero-galaxy-background canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(92, 214, 214, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(54, 118, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    color: #f1f5f9;
}

.highlight {
    color: #3676E2;
    background: linear-gradient(90deg, #5CD6D6, #3676E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    background-color: #3676E2;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(54, 118, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(54, 118, 226, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #3676E2;
    padding: 15px 30px;
    border: 2px solid #3676E2;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5CD6D6, #3676E2);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    border-color: #3676E2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(54, 118, 226, 0.3);
}

.btn-download {
    background-color: transparent;
    color: #00d4ff;
    padding: 15px 30px;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download:hover {
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-download svg {
    transition: transform 0.3s ease;
}

.btn-download:hover svg {
    transform: translateY(2px);
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background-color: #f8fafc;
}

.clients h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    font-weight: 500;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-item {
    text-align: center;
    padding: 1rem;
    color: #64748b;
    font-weight: 500;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Robots Section */
.robots-section {
    padding: 80px 0;
}

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

.robot-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.robot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.robot-image {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.robot-content {
    padding: 2rem;
}

.robot-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.robot-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: #5CD6D6;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
}

.learn-more:hover {
    text-decoration: underline;
}

.features-section,
.equipment-section,
.sensors-section {
    margin-bottom: 1.5rem;
}

.features-section h4,
.equipment-section h4,
.sensors-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-section ul,
.equipment-section ul,
.sensors-section ul {
    list-style: none;
    padding-left: 0;
}

.features-section li,
.equipment-section li,
.sensors-section li {
    padding: 0.25rem 0;
    color: #475569;
    font-size: 0.9rem;
}

.features-section li::before,
.equipment-section li::before,
.sensors-section li::before {
    content: "•";
    color: #5CD6D6;
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-btn,
.shop-btn {
    background-color: #3676E2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.contact-btn:hover,
.shop-btn:hover {
    background-color: #2c5aa0;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}

.services-overview .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.services-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.section-intro {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Software Hero Section */
.software-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    position: relative;
    padding: 120px 0 80px;
}

.software-hero .hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.software-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.software-hero .hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.software-hero-availability {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}


.software-hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.software-hero-visual {
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.ursanav-screenshot {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(92, 214, 214, 0.2);
    border: 1px solid rgba(92, 214, 214, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ursanav-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(92, 214, 214, 0.3);
}

@media (max-width: 768px) {
    .software-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .software-hero .hero-container {
        gap: 2rem;
    }

    .software-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .software-hero .hero-content p {
        font-size: 1.1rem;
    }

    .software-hero-visual {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .ursanav-screenshot {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .software-hero .hero-content h1 {
        font-size: 2rem;
    }

    .software-hero .hero-content p {
        font-size: 1rem;
    }

    .software-hero-visual {
        margin-top: 1rem;
    }
}

/* Software Section */
.software-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    position: relative;
}

.software-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.software-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.software-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
}


.software-availability {
    text-align: center;
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.availability-badge {
    font-size: 1rem;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    display: inline-block;
}

.availability-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 1rem 0 0;
    text-align: center;
}

.software-packages-group {
    margin-top: 4rem;
}

.package-choice-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.package-choice-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.package-choice-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.software-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.software-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.software-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(92, 214, 214, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.software-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.software-card:hover::before {
    opacity: 1;
}

.software-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 50px;
    color: #5CD6D6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.software-badge.outdoor {
    background: linear-gradient(135deg, rgba(54, 118, 226, 0.2) 0%, rgba(92, 214, 214, 0.2) 100%);
}

.software-card-header {
    margin-bottom: 2rem;
}

.software-card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.software-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.software-features {
    margin-bottom: 2rem;
}

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

.software-feature-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #5CD6D6;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.software-specs {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(92, 214, 214, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(92, 214, 214, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5CD6D6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.95rem;
    color: #cbd5e1;
    text-align: right;
}

.optional-text {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    display: inline;
    margin-right: 0.5rem;
}

@media (max-width: 968px) {
    .software-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .software-header h2 {
        font-size: 2.5rem;
    }

    .software-intro {
        font-size: 1.1rem;
    }

    .software-hero-availability {
        margin: 1.5rem 0 1rem;
        padding: 1.25rem;
    }

    .software-availability {
        margin: 2rem 0 3rem;
        padding: 1.5rem;
    }

    .availability-text {
        font-size: 1rem;
    }

    .package-choice-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .package-choice-header h3 {
        font-size: 1.75rem;
    }

    .package-choice-text {
        font-size: 1rem;
    }

    .software-card {
        padding: 2rem;
    }

    .software-card-header h3 {
        font-size: 1.75rem;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .spec-value {
        text-align: left;
    }

}

@media (max-width: 480px) {
    .software-header h2 {
        font-size: 2rem;
    }

    .software-hero-availability {
        padding: 1rem;
    }

    .software-availability {
        padding: 1rem;
    }

    .availability-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .availability-text {
        font-size: 0.95rem;
    }

    .package-choice-header {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .package-choice-header h3 {
        font-size: 1.5rem;
    }

    .package-choice-text {
        font-size: 0.95rem;
    }

    .software-card {
        padding: 1.5rem;
    }

    .software-card-header h3 {
        font-size: 1.5rem;
    }

    .optional-text {
        font-size: 0.8rem;
    }
}

/* Development Services Section - Ascento Style */
.development-services {
    padding: 100px 0;
    position: relative;
}

.development-services .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dev-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.dev-section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-intro {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
}

/* Feature Rows */
.dev-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dev-feature-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.dev-feature-row.reverse {
    direction: rtl;
}

.dev-feature-row.reverse > * {
    direction: ltr;
}

/* Feature Content */
.dev-feature-content {
    padding: 2rem;
    background: transparent;
}

.dev-feature-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.1) 0%, rgba(54, 118, 226, 0.1) 100%);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 50px;
    color: #5CD6D6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.dev-feature-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.dev-feature-content > p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature List */
.dev-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-feature-list li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(92, 214, 214, 0.1);
    transition: all 0.3s ease;
    color: #cbd5e1;
    line-height: 1.6;
    position: relative;
}

.dev-feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5CD6D6;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dev-feature-list li:last-child {
    border-bottom: none;
}

.dev-feature-list li:hover {
    padding-left: 2rem;
    border-bottom-color: rgba(92, 214, 214, 0.3);
    color: #e2e8f0;
}

.dev-feature-list li:hover::before {
    left: 0.5rem;
    color: #3676E2;
}

/* Visual Cards */
.dev-feature-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    background: transparent;
}

/* Hardware Grid Layout */
.dev-feature-visual.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: auto;
    min-height: 350px;
    max-width: 70%;
    margin: 0 auto;
    perspective: none;
}

.hardware-grid .visual-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 175px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(92, 214, 214, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform: none;
}

.hardware-grid .visual-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(92, 214, 214, 0.3);
    border-color: rgba(92, 214, 214, 0.5);
}

.visual-card {
    position: absolute;
    width: 375px;
    height: 270px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(92, 214, 214, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 1;
}

.visual-card.card-1 {
    top: 0px;
    left: 0px;
    transform: rotate(-5deg);
    z-index: 1;
}

.visual-card.card-2 {
    bottom: 0px;
    right: 0px;
    transform: rotate(5deg);
    z-index: 1;
}

.visual-card.card-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 2;
}

.dev-feature-row.visible .visual-card.card-1 {
    animation: floatCard1 3s ease-in-out infinite;
}

.dev-feature-row.visible .visual-card.card-2 {
    animation: floatCard2 3s ease-in-out infinite 0.5s;
}

.dev-feature-row.visible .visual-card.card-3 {
    animation: floatCard1 3s ease-in-out infinite 1s;
}

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

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

.visual-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(92, 214, 214, 0.3);
    border-color: rgba(92, 214, 214, 0.5);
}

.card-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 20px rgba(92, 214, 214, 0.4));
}

.image-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 12px rgba(92, 214, 214, 0.3));
    transition: all 0.4s ease;
}

.visual-card:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(92, 214, 214, 0.5));
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5CD6D6;
    text-align: center;
    text-shadow: 0 0 10px rgba(92, 214, 214, 0.3);
    margin-top: 0.5rem;
}

/* Use Cases Section */
.use-cases-section {
    display: none;
}

.use-cases-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.use-cases-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.use-cases-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.use-cases-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
}

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

.use-case-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.use-case-image {
    position: relative;
    width: 100%;
    height: 325px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.use-case-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.use-case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 230, 200, 0.04), rgba(0, 0, 0, 0.06));
    mix-blend-mode: soft-light;
    z-index: 1;
    pointer-events: none;
}

.use-case-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #475569;
    text-align: center;
    padding: 2rem;
}

.use-case-placeholder svg {
    color: #5CD6D6;
    opacity: 0.4;
}

.use-case-placeholder p {
    font-size: 0.9rem;
    color: #64748b;
}

.use-case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-img {
    transform: scale(1.1);
}

.use-case-content {
    padding: 2rem;
}

.use-case-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.use-case-content > p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.use-case-features {
    list-style: none;
    padding-left: 0;
}

.use-case-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    position: relative;
}

.use-case-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5CD6D6;
    font-weight: bold;
}

/* Full Width Section - Software */
.dev-feature-fullwidth {
    position: relative;
    min-height: 600px;
    margin-bottom: 120px;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dev-feature-fullwidth.visible {
    opacity: 1;
    transform: translateY(0);
}

.fullwidth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fullwidth-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.fullwidth-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.fullwidth-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.fullwidth-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.fullwidth-content > p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 800px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 10px 40px rgba(92, 214, 214, 0.2);
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Horizontal Scroll Section - Embedded */
.dev-feature-horizontal {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dev-feature-horizontal.visible {
    opacity: 1;
    transform: translateY(0);
}

.horizontal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.horizontal-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.horizontal-header > p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.horizontal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.horizontal-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.horizontal-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.card-image {
    width: 100%;
    height: 265px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.horizontal-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.dev-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .dev-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .dev-feature-row.reverse {
        direction: ltr;
    }
    
    .dev-feature-visual {
        height: 300px;
    }
    
    .dev-feature-visual.hardware-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        min-height: 280px;
        max-width: 100%;
        gap: 1rem;
    }
    
    .hardware-grid .visual-card {
        min-height: 120px;
    }
    
    .visual-card {
        width: 200px;
        height: 150px;
    }
    
    .dev-section-header h2 {
        font-size: 2.2rem;
    }
    
    .dev-feature-content h3 {
        font-size: 1.8rem;
    }
    
    .fullwidth-content {
        padding: 40px 20px;
    }
    
    .fullwidth-content h3 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .horizontal-header h3 {
        font-size: 2rem;
    }
    
    .horizontal-cards {
        grid-template-columns: 1fr;
    }
}

.consulting-services {
    padding: 60px 0;
    position: relative;
}

.consulting-services .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hesai-distribution {
    padding: 100px 0;
    position: relative;
}

.hesai-distribution .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.hesai-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hesai-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}

.hesai-intro-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.6s ease-out;
}

.hesai-intro-card p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

/* Features Grid */
.hesai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.hesai-feature-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.hesai-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.hesai-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.1) 0%, rgba(54, 118, 226, 0.1) 100%);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.hesai-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border-color: rgba(92, 214, 214, 0.5);
    transform: scale(1.1);
}

.hesai-feature-card .feature-icon svg {
    color: #5CD6D6;
    filter: drop-shadow(0 4px 12px rgba(92, 214, 214, 0.3));
}

.hesai-feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.hesai-feature-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Showroom Section */
.hesai-showroom {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.showroom-content,
.showroom-visual {
    background: transparent;
}

.hesai-showroom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(92, 214, 214, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.showroom-content {
    position: relative;
    z-index: 1;
}

.showroom-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 50px;
    color: #5CD6D6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.showroom-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.showroom-content > p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.highlight-item svg {
    flex-shrink: 0;
    color: #5CD6D6;
    filter: drop-shadow(0 2px 8px rgba(92, 214, 214, 0.3));
}

.highlight-item span {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.showroom-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.showroom-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    filter: none;
    -webkit-filter: none;
}

.showroom-visual .showroom-collage {
    display: none;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
}

.showroom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.showroom-image:hover {
    transform: scale(1.05);
}


.showroom-gallery .showroom-image:hover,
.showroom-gallery .announcement-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(92, 214, 214, 0.4);
}

.showroom-icon {
    position: relative;
    z-index: 2;
    color: #5CD6D6;
    filter: drop-shadow(0 0 20px rgba(92, 214, 214, 0.5));
    animation: float 3s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(92, 214, 214, 0.4);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(54, 118, 226, 0.4);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite 1.5s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

/* Showroom Collage Section */
.showroom-collage-section {
    margin: 5rem 0;
    padding: 3rem 0;
    text-align: center;
}

.showroom-collage-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.collage-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-collage {
    display: none;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(92, 214, 214, 0.3);
}

.collage-main {
    grid-row: 1 / 3;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Slideshow Styles */
.showroom-slideshow {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
}

.announcement-visual .showroom-slideshow {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

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

.slideshow-container .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideshow-container .slide.active {
    display: block;
    opacity: 1;
}

.slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: transparent;
    border: none;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.slideshow-prev {
    left: 0;
}

.slideshow-next {
    right: 0;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(92, 214, 214, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-dots .dot.active {
    background: #5CD6D6;
    border-color: #5CD6D6;
    transform: scale(1.2);
}

.announcement-visual .showroom-slideshow .slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 968px) {
    .showroom-visual .showroom-collage {
        display: none !important;
    }
    
    .showroom-collage {
        display: none !important;
    }
    
    .showroom-slideshow {
        display: block;
        height: 400px;
    }
    
    .showroom-visual {
        height: auto;
    }
}

@media (max-width: 480px) {
    .showroom-collage-section h3 {
        font-size: 2rem;
    }
    
    .showroom-slideshow {
        height: 300px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        width: 50%;
        height: 100%;
    }
    
    .slideshow-dots {
        bottom: 15px;
    }
    
    .slideshow-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Product Showcase */
.hesai-product-showcase {
    margin: 5rem 0;
}

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

.showcase-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.product-slide {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.product-slide:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #475569;
    text-align: center;
    padding: 2rem;
}

.product-placeholder svg {
    opacity: 0.3;
}

.product-placeholder p {
    font-size: 0.9rem;
    color: #64748b;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-slide:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.15) 0%, rgba(54, 118, 226, 0.15) 100%);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 20px;
    color: #5CD6D6;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.product-info > p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.product-specs {
    display: block;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(92, 214, 214, 0.1);
}

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

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.spec-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5CD6D6;
}

.product-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-slide-link:hover .product-slide {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(92, 214, 214, 0.3);
}

/* Applications Grid */
.hesai-applications {
    margin: 5rem 0;
    text-align: center;
}

.hesai-applications h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 3rem;
}

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

.application-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.application-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.application-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.app-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.1) 0%, rgba(54, 118, 226, 0.1) 100%);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.application-card:hover .app-icon-wrapper {
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border-color: rgba(92, 214, 214, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.app-icon-wrapper svg {
    color: #5CD6D6;
    filter: drop-shadow(0 4px 12px rgba(92, 214, 214, 0.3));
}

.application-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.application-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Catalog CTA */
.hesai-catalog-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.15);
    border-radius: 15px;
    animation: fadeInUp 0.6s ease-out;
}

.hesai-catalog-cta p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* Service Detail (Legacy - kept for consulting section) */
.service-detail {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail.reverse {
    direction: ltr;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.service-content > p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.feature-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-column ul {
    list-style: none;
    padding-left: 0;
}

.feature-column li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(92, 214, 214, 0.1);
}

.feature-column li:last-child {
    border-bottom: none;
}

/* Hesai Badge Cards */
.hesai-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.badge-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.badge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(54, 118, 226, 0.4),
                0 0 50px rgba(92, 214, 214, 0.3);
    border-color: rgba(92, 214, 214, 0.5);
}

.badge-card img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(92, 214, 214, 0.3));
    transition: all 0.3s ease;
}

.badge-card:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(92, 214, 214, 0.5));
}

.badge-content {
    text-align: center;
}

.badge-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(92, 214, 214, 0.3);
}

.badge-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.hesai-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.why-choose-us .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f1f5f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.benefit-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(92, 214, 214, 0.2);
    overflow: visible;
}


.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(92, 214, 214, 0.3);
}

.benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Electric Border Component Styles - Original from reactbits.dev */
.electric-border {
    --electric-light-color: color-mix(in oklch, var(--electric-border-color) 100%, white 20%);
    --eb-border-width: 2px;
    position: relative;
    border-radius: inherit;
    overflow: visible;
    isolation: isolate;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.electric-border:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(54, 118, 226, 0.6),
                0 0 60px rgba(92, 214, 214, 0.5);
}

.eb-svg {
    position: fixed;
    left: -10000px;
    top: -10000px;
    width: 10px;
    height: 10px;
    opacity: 0.001;
    pointer-events: none;
}

.eb-content {
    position: relative;
    border-radius: inherit;
    z-index: 1;
}

.eb-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(92, 214, 214, 0.5);
}

.eb-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.eb-layers {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

.eb-stroke,
.eb-glow-1,
.eb-glow-2,
.eb-overlay-1,
.eb-overlay-2,
.eb-background-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-sizing: border-box;
}

.eb-stroke {
    border: var(--eb-border-width) solid var(--electric-border-color);
}

.eb-glow-1 {
    border: var(--eb-border-width) solid color-mix(in oklch, var(--electric-border-color) 60%, transparent 40%);
    opacity: 0.5;
    filter: blur(calc(0.5px + (var(--eb-border-width) * 0.25)));
}

.eb-glow-2 {
    border: var(--eb-border-width) solid var(--electric-light-color);
    opacity: 0.5;
    filter: blur(calc(2px + (var(--eb-border-width) * 0.5)));
}

.eb-background-glow {
    z-index: -1;
    transform: scale(1.08);
    filter: blur(32px);
    opacity: 0.3;
    background: linear-gradient(-30deg, var(--electric-light-color), transparent, var(--electric-border-color));
}

/* Documentation Section */
.docs-section {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.docs-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.doc-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #5CD6D6;
    transition: transform 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-3px);
}

/* Co-founders Section */
.co-founders {
    padding: 80px 0;
    position: relative;
}

.co-founders .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.founder-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.founder-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(54, 118, 226, 0.4);
    border-color: rgba(92, 214, 214, 0.4);
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-image {
    height: auto;
    min-height: 400px;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.placeholder-founder {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.founder-content {
    padding: 2rem;
}

.founder-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.founder-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1.5rem;
}

.founder-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-expertise {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(92, 214, 214, 0.2);
}

.founder-expertise h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 0.75rem;
}

.founder-expertise ul {
    list-style: none;
    padding-left: 0;
}

.founder-expertise li {
    padding: 0.25rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.founder-expertise li::before {
    content: "•";
    color: #5CD6D6;
    font-weight: bold;
    margin-right: 0.5rem;
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials .container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 98%;
    width: 98%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f1f5f9;
}

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

.testimonial {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #5CD6D6;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(92, 214, 214, 0.3);
    border-left-width: 6px;
    border-color: rgba(92, 214, 214, 0.3);
}

.testimonial p {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5CD6D6, #3676E2, #5CD6D6);
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p,
.footer-section li {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5CD6D6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #5CD6D6;
}

.footer-info {
    display: flex;
    gap: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Section card backgrounds - responsive */
    .services-overview .container,
    .development-services .container,
    .consulting-services .container,
    .hesai-distribution .container,
    .why-choose-us .container,
    .co-founders .container,
    .testimonials .container {
        padding: 40px 20px;
        border-radius: 15px;
    }
    
    .robot-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-features,
    .hesai-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hesai-header h2 {
        font-size: 2.2rem;
    }
    
    .hesai-intro-card {
        padding: 2rem;
    }
    
    .hesai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hesai-showroom {
        grid-template-columns: 1fr;
        padding: 2rem;
        margin: 3rem 0;
        gap: 2rem;
    }
    
    .hesai-showroom::before {
        display: none;
    }
    
    .showroom-content,
    .showroom-visual {
        background: transparent;
        border: none;
    }
    
    .showroom-content h3 {
        font-size: 1.8rem;
    }
    
    .showroom-highlights {
        grid-template-columns: 1fr;
    }
    
    .showroom-visual {
        height: auto;
        min-height: 300px;
    }
    
    .showroom-visual .showroom-collage {
        min-height: 300px;
    }
    
    .showroom-image-container {
        height: 300px;
    }
    
    .showroom-image-container img {
        height: 100%;
    }
    
    .pulse-ring,
    .pulse-ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .showroom-icon {
        width: 150px;
        height: 150px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .hesai-cta,
    .showroom-cta {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-section h2,
    .custom-design h2,
    .docs-section h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    /* Section card backgrounds - mobile */
    .services-overview .container,
    .development-services .container,
    .consulting-services .container,
    .hesai-distribution .container,
    .why-choose-us .container,
    .co-founders .container,
    .testimonials .container {
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    .hesai-header h2 {
        font-size: 1.8rem;
    }
    
    .hesai-intro-card {
        padding: 1.5rem;
    }
    
    .hesai-feature-card {
        padding: 1.5rem;
    }
    
    .hesai-showroom {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .hesai-showroom::before {
        display: none;
    }
    
    .showroom-content,
    .showroom-visual {
        background: transparent;
        border: none;
    }
    
    .showroom-content h3 {
        font-size: 1.5rem;
    }
    
    .showroom-visual {
        height: auto;
        min-height: 250px;
    }
    
    .showroom-visual .showroom-collage {
        min-height: 250px;
    }
    
    .robot-content {
        padding: 1.5rem;
    }
    
    .hesai-badges {
        grid-template-columns: 1fr;
    }
    
    .badge-card {
        padding: 1.5rem;
    }
    
    .product-carousel {
        grid-template-columns: 1fr;
    }
    
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-header h3 {
        font-size: 1.8rem;
    }
    
    .hesai-applications h3 {
        font-size: 1.8rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-header h3 {
        font-size: 2rem;
    }
}

/* Showroom Announcement Section */
.showroom-announcement {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.showroom-announcement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(92, 214, 214, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.showroom-announcement .container {
    display: block;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.announcement-content {
    animation: fadeInUp 0.8s ease-out;
    background: transparent;
    border: none;
}

.announcement-visual {
    background: transparent;
    border: none;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.announcement-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 50px;
    color: #5CD6D6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.announcement-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.announcement-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.announcement-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    filter: none;
    -webkit-filter: none;
}

.announcement-content .announcement-visual .showroom-slideshow {
    width: 100%;
    height: 400px;
}

.announcement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.announcement-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .showroom-announcement .container {
        display: block;
    }
    
    .announcement-content .announcement-visual {
        margin: 1.5rem 0;
    }
    
    .announcement-content .announcement-visual .showroom-slideshow {
        height: 300px;
    }
    
    .showroom-announcement::before {
        display: none;
    }
    
    .announcement-content {
        background: transparent !important;
        border: none !important;
    }
    
    .announcement-content::before,
    .announcement-content::after {
        display: none !important;
    }
    
    .announcement-visual {
        background: transparent !important;
        border: none !important;
    }
    
    .announcement-visual::before,
    .announcement-visual::after {
        display: none !important;
    }
    
    .announcement-content h2 {
        font-size: 2rem;
    }
    
    .announcement-text {
        font-size: 1.1rem;
    }
    
    .announcement-visual .showroom-slideshow {
        height: 300px;
    }
    
    .announcement-visual {
        height: 300px;
    }
    
    .announcement-cta {
        flex-direction: column;
    }
    
    .announcement-visual .showroom-slideshow {
        height: 250px;
    }
    
    .announcement-visual .slideshow-prev,
    .announcement-visual .slideshow-next {
        width: 50%;
        height: 100%;
    }
    
    .announcement-visual .showroom-slideshow .slideshow-dots {
        bottom: 15px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 20 !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .announcement-visual .showroom-slideshow .slideshow-dots .dot {
        width: 10px !important;
        height: 10px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border: 2px solid rgba(92, 214, 214, 0.8) !important;
        display: block !important;
    }
    
    .announcement-visual .showroom-slideshow .slideshow-dots .dot.active {
        background: #5CD6D6 !important;
        border-color: #5CD6D6 !important;
    }
    
    .platforms-grid .platform-card:first-child .platform-image {
        background-image: url('images/merak.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .platforms-grid .platform-card:last-child .platform-image {
        background-image: url('images/Polaris.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .platform-image img {
        display: none;
    }
}

/* Product Announcement Section (LiCAM Coming Soon) */
.product-announcement {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 18, 35, 0.98) 0%, rgba(20, 30, 50, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.product-announcement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.product-announcement .container {
    display: block;
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 1400px;
    padding: 0 2rem;
}

.product-announcement .announcement-content {
    animation: fadeInUp 0.8s ease-out;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
}

.coming-soon-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 150, 200, 0.25) 100%) !important;
    border-color: rgba(0, 212, 255, 0.6) !important;
    color: #00d4ff !important;
    animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    }
}

.product-announcement .announcement-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(0, 212, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.product-announcement .product-preview-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.product-announcement .product-preview-image .preview-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.3) translateX(-7.5%);
    transition: transform 0.5s ease;
}

.product-announcement .product-preview-image:hover .preview-img {
    transform: scale(1.35) translateX(-7.5%);
}

.product-announcement .product-preview-image.mobile-only {
    display: none;
}

.product-announcement .product-highlights-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 550px;
    margin: 2rem 0;
    text-align: left;
}

.product-announcement .product-highlights-mini .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.product-announcement .product-highlights-mini .highlight-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.product-announcement .product-highlights-mini .highlight-item svg {
    color: #00d4ff;
    flex-shrink: 0;
}

.product-announcement .product-highlights-mini .highlight-item span {
    color: #e2e8f0;
    font-size: 0.95rem;
}

/* Scroll animations for highlight items */
.product-announcement .product-highlights-mini .highlight-item[data-scroll-anim] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.product-announcement .product-highlights-mini .highlight-item[data-scroll-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

.product-announcement .announcement-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Compact Product Announcement (POE Adapter style) */
.product-announcement-compact {
    padding: 4rem 0;
}

.product-announcement-compact .announcement-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3rem;
    align-items: center;
}

.product-announcement-compact .announcement-image-rotator {
    position: relative;
    width: 450px;
    height: 450px;
}

#licam .announcement-image-rotator.desktop-only {
    justify-self: end;
}

#licam .announcement-grid {
    grid-template-columns: minmax(0, 1fr) 450px;
}

.product-announcement-compact .announcement-image-rotator .rotator-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 16px;
}

.product-announcement-compact .announcement-image-rotator .rotator-img.active {
    opacity: 1;
}

.product-announcement-compact .announcement-content {
    max-width: none;
}

.product-announcement-compact .announcement-image-rotator.desktop-only {
    display: block;
}

@media (max-width: 1200px) {
    .product-announcement .product-preview-image.desktop-only {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 520px;
        margin: 2rem auto 0;
    }
    
    .product-announcement .container {
        text-align: center;
        padding: 0 2rem;
    }
    
    .product-announcement .announcement-content {
        max-width: 100%;
        text-align: center;
    }
}

.product-announcement-compact .announcement-image-rotator.mobile-only {
    display: none;
}

@media (max-width: 900px) {
    .product-announcement-compact .announcement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #licam .announcement-grid {
        grid-template-columns: 1fr;
    }
    
    .product-announcement-compact .announcement-image-rotator.desktop-only {
        display: none;
    }
    
    .product-announcement-compact .announcement-image-rotator.mobile-only {
        display: block;
        position: relative;
        width: 350px;
        height: 350px;
        margin: 1.5rem auto;
    }
    
    .product-announcement-compact .announcement-content {
        text-align: center;
    }
    
    .product-announcement-compact .product-highlights-mini {
        justify-content: center;
    }
    
    .product-announcement-compact .announcement-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-announcement {
        padding: 3rem 0;
    }
    
    .product-announcement .product-highlights-mini {
        grid-template-columns: 1fr;
    }
    
    .product-announcement .product-preview-image.desktop-only {
        display: none;
    }
    
    .product-announcement .product-preview-image.mobile-only {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        margin: 1.5rem auto;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .product-announcement .product-preview-image.mobile-only .preview-img {
        transform: none;
        width: 100%;
        border-radius: 16px;
    }
    
    .product-announcement .announcement-subtitle {
        font-size: 1.2rem;
    }
    
    .product-announcement .announcement-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .product-announcement .container {
        text-align: center;
    }
    
    .product-announcement .announcement-content {
        text-align: center;
        max-width: 100%;
    }
    
    .product-announcement .product-highlights-mini {
        margin: 2rem auto;
    }
}

/* Robotic Payload Solutions Section */
.custom-payload-section {
    padding: 5rem 0;
    background-image: url('images/Cusom Payload.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.custom-payload-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(30, 41, 59, 0.1) 100%);
    z-index: 0;
}


.custom-payload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(92, 214, 214, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Payload Announcement Banner */
.payload-announcement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.15) 0%, rgba(54, 118, 226, 0.15) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.announcement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.announcement-content {
    flex: 1;
}

.announcement-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #5CD6D6, #3676E2);
    border-radius: 20px;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.announcement-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.announcement-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5CD6D6;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-link:hover {
    color: #7de8e8;
    gap: 0.75rem;
}

/* Enhanced Layer Card */
.config-layer-card.featured-layer {
    border-color: rgba(92, 214, 214, 0.6);
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.15) 0%, rgba(54, 118, 226, 0.1) 100%);
}

.new-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #5CD6D6, #3676E2);
    border-radius: 10px;
    color: #0f172a;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.payload-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.payload-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 50px;
    color: #5CD6D6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.payload-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.payload-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.payload-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    position: relative;
    z-index: 2;
    z-index: 1;
}

.payload-config {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.payload-config h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2rem;
}

.config-group {
    margin-bottom: 2.5rem;
}

.config-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1rem;
}

.sensor-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sensor-list li {
    color: #cbd5e1;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(92, 214, 214, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
}

.sensor-list li[data-scroll-anim] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sensor-list li[data-scroll-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

.sensor-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: #5CD6D6;
    font-weight: 600;
}

.sensor-list li:hover {
    background: rgba(92, 214, 214, 0.1);
    border-color: rgba(92, 214, 214, 0.3);
    transform: translateX(5px);
}

.platform-info {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(92, 214, 214, 0.1);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 20px;
    color: #5CD6D6;
    font-size: 0.9rem;
    font-weight: 500;
}

.config-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(92, 214, 214, 0.2);
}

.payload-visualizer {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.payload-visualizer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.visualizer-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.file-upload-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 8px;
    color: #5CD6D6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.3) 0%, rgba(54, 118, 226, 0.3) 100%);
    border-color: rgba(92, 214, 214, 0.6);
    transform: translateY(-2px);
}

.visualizer-btn {
    padding: 12px 24px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 8px;
    color: #cbd5e1;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visualizer-btn:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(92, 214, 214, 0.5);
    color: #5CD6D6;
}

.model-viewer-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(92, 214, 214, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    perspective-origin: center center;
}

.viewer-placeholder {
    text-align: center;
    color: #5CD6D6;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.viewer-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.viewer-placeholder p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.viewer-placeholder small {
    color: #94a3b8;
    font-size: 0.9rem;
}

.viewer-info {
    margin-top: 1rem;
    text-align: center;
}

.viewer-info p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.payload-config-details {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(92, 214, 214, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.config-intro {
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(92, 214, 214, 0.2);
}

.config-layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.config-layer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(92, 214, 214, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.config-layer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5CD6D6, #3676E2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.config-layer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 8px 24px rgba(92, 214, 214, 0.2);
}

.config-layer-card:hover::before {
    opacity: 1;
}

.layer-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(92, 214, 214, 0.4);
}

.layer-content {
    text-align: center;
    flex: 1;
}

.layer-content h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #5CD6D6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.layer-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .config-layers {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .config-layer-card {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem;
    }
    
    .layer-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0;
        margin-right: 1.25rem;
        flex-shrink: 0;
    }
    
    .layer-content {
        text-align: left;
    }
    
    .layer-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .layer-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .payload-config-details {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .config-intro {
        font-size: 1rem;
        padding-bottom: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .config-layers {
        gap: 1rem;
    }
    
    .config-layer-card {
        padding: 1rem;
    }
    
    .layer-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
}

@media (max-width: 968px) {
    .payload-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payload-header h2 {
        font-size: 2rem;
    }
    
    .payload-intro {
        font-size: 1.1rem;
    }
    
    .model-viewer-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .custom-payload-section {
        padding: 3rem 0;
        background-image: none !important;
        background-size: contain;
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
    }
    
    .payload-announcement {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .announcement-icon {
        width: 40px;
        height: 40px;
    }
    
    .announcement-content h4 {
        font-size: 1.1rem;
    }
    
    .payload-header {
        margin-bottom: 2.5rem;
    }
    
    .payload-config,
    .payload-visualizer {
        padding: 1.5rem;
    }
    
    .visualizer-controls {
        flex-direction: column;
    }
    
    .file-upload-btn,
    .visualizer-btn {
        width: 100%;
        text-align: center;
    }
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 60px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

.product-breadcrumb {
    margin-bottom: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.product-breadcrumb a {
    color: #5CD6D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: #3676E2;
}

.product-breadcrumb span {
    color: #cbd5e1;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.product-hero-info {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border: 1px solid rgba(92, 214, 214, 0.4);
    border-radius: 20px;
    color: #5CD6D6;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.product-hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.product-hero-info h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.product-intro {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: left;
}

.product-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    display: block;
}

/* Product Highlights Section */
.product-highlights {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.4);
}

.product-highlights .container {
    max-width: 1200px;
}

.product-highlights h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 3rem;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 20px 60px rgba(54, 118, 226, 0.3);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.1) 0%, rgba(54, 118, 226, 0.1) 100%);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border-color: rgba(92, 214, 214, 0.5);
    transform: scale(1.1);
}

.highlight-icon svg {
    color: #5CD6D6;
    filter: drop-shadow(0 4px 12px rgba(92, 214, 214, 0.3));
}

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Technical Specifications Section */
section.product-specs {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.6);
}

section.product-specs .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
}

section.product-specs h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 3rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.spec-category {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
}

.spec-category:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 10px 40px rgba(92, 214, 214, 0.2);
}

.spec-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(92, 214, 214, 0.1);
}

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

.spec-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    min-width: 0;
}

.spec-value {
    font-size: 1rem;
    color: #f1f5f9;
    font-weight: 600;
    min-width: 0;
}

/* Applications Section */
.product-applications {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.4);
}

.product-applications h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 3rem;
    text-align: center;
}

/* Product CTA Section */
.product-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(92, 214, 214, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.product-cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.product-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.product-cta-section p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

.application-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: 0 10px 40px rgba(92, 214, 214, 0.2);
}

.application-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5CD6D6;
    margin-bottom: 0.5rem;
}

.application-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Product Pages */
@media (max-width: 968px) {
    .product-hero {
        min-height: 500px;
    }
    
    .product-hero-content {
        max-width: 100%;
    }
    
    .product-hero-info h1 {
        font-size: 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 40px;
        min-height: 400px;
    }
    
    .product-hero-info h1 {
        font-size: 2rem;
    }
    
    .product-hero-info h2 {
        font-size: 1.2rem;
    }
    
    .product-highlights h2,
    section.product-specs h2,
    .product-applications h2,
    .product-cta-section h2 {
        font-size: 2rem;
    }
    
    .product-cta-section {
        padding: 60px 0;
    }
    
    .product-cta-section p {
        font-size: 1.1rem;
    }
    
    .product-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   LiCAM Product Page Styles
   ============================================= */

/* LiCAM Hero Enhancements */
.licam-hero .product-hero-image img {
    object-position: 65% center;
}

.licam-hero .powered-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(92, 214, 214, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    font-size: 0.85rem;
    padding: 10px 24px;
}

.licam-hero h2 {
    font-size: 1.4rem;
    color: rgba(241, 245, 249, 0.9);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

/* Quick Features Strip */
.quick-features {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-feature-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-feature-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.quick-feature-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.quick-feature-label {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* LiCAM Specifications - Glassmorphism Card */
.licam-specs {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.98) 0%, rgba(15, 25, 45, 0.98) 100%);
}

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

.licam-specs .specs-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.licam-specs .specs-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
}

.specs-glassmorphism-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.specs-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.specs-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row .spec-label {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}

.spec-row .spec-value {
    font-size: 0.95rem;
    color: #f1f5f9;
    font-weight: 600;
    text-align: left;
    max-width: 60%;
}

.specs-diagram {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.specs-diagram img {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: invert(1);
    display: block;
    object-fit: contain;
}

/* LiCAM Applications - 2x2 Grid */
.licam-applications {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 15, 30, 0.98) 100%);
}

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

.licam-applications .applications-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
    font-family: 'Orbitron', sans-serif;
}

.licam-applications .applications-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
}

.licam-applications .applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.licam-applications .application-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.licam-applications .application-card:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.licam-applications .application-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 150, 200, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.licam-applications .application-icon svg {
    color: #00d4ff;
}

.licam-applications .application-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.licam-applications .application-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.licam-applications .application-card:hover .application-image img {
    transform: scale(1.05);
}

.licam-applications .application-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
}

.licam-applications .application-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* LiCAM Responsive */
@media (max-width: 768px) {
    .quick-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-feature-value {
        font-size: 1.4rem;
    }
    
    .quick-feature-label {
        font-size: 0.8rem;
    }
    
    .specs-glassmorphism-card {
        padding: 1.5rem;
    }
    
    .specs-two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .specs-column:first-child .spec-row:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .licam-applications .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .licam-specs .specs-header h2,
    .licam-applications .applications-header h2 {
        font-size: 2rem;
    }
}

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

/* Supported Software Section */
.supported-software {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
}

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

.supported-software .software-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.supported-software .software-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
}

.software-partners {
    max-width: 800px;
    margin: 0 auto;
}

.software-partner-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.software-partner-card:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.partner-logo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 150, 200, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.25);
    overflow: hidden;
    padding: 0.5rem;
}

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

.partner-logo svg {
    color: #00d4ff;
}

.partner-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
}

.partner-info p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.software-partner-card:hover .partner-link {
    gap: 0.75rem;
}

.partner-link svg {
    transition: transform 0.3s ease;
}

.software-partner-card:hover .partner-link svg {
    transform: translate(3px, -3px);
}

@media (max-width: 600px) {
    .software-partner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .supported-software .software-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .quick-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-feature-card {
        padding: 1rem 0.75rem;
    }
    
    .quick-feature-value {
        font-size: 1.2rem;
    }
}

/* Variant Selector Styles */
.variant-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 12px 30px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.variant-btn:hover {
    border-color: rgba(92, 214, 214, 0.6);
    background: rgba(15, 23, 42, 0.8);
    color: #5CD6D6;
}

.variant-btn.active {
    background: linear-gradient(135deg, rgba(92, 214, 214, 0.2) 0%, rgba(54, 118, 226, 0.2) 100%);
    border-color: rgba(92, 214, 214, 0.6);
    color: #5CD6D6;
    box-shadow: 0 4px 15px rgba(92, 214, 214, 0.2);
}

.variant-specs {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.variant-specs.active {
    display: grid;
}

.variant-highlights {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.variant-highlights.active {
    display: block;
}

/* Ursa Robots Section */
.ursa-platforms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.ursa-platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(92, 214, 214, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.platforms-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.platforms-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #5CD6D6 0%, #3676E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platforms-intro-bullets {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
}

.platforms-intro-bullets li {
    font-size: 1.15rem;
    color: #f1f5f9;
    line-height: 1.7;
    padding: 1rem 1.5rem 1rem 3rem;
    position: relative;
    background: rgba(92, 214, 214, 0.1);
    border: 1px solid rgba(92, 214, 214, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
}

.platforms-intro-bullets li[data-scroll-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.platforms-intro-bullets li[data-scroll-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

.platforms-intro-bullets li:hover {
    background: rgba(92, 214, 214, 0.15);
    border-color: rgba(92, 214, 214, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(92, 214, 214, 0.2);
}

.platforms-intro-bullets li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #5CD6D6;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(92, 214, 214, 0.5);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 214, 214, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 214, 214, 0.4);
    box-shadow: 0 12px 48px rgba(92, 214, 214, 0.2);
}

.platform-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    position: relative;
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-image img {
    transform: scale(1.05);
}

.rendered-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    color: #5CD6D6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(92, 214, 214, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.rendered-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    color: #5CD6D6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(92, 214, 214, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.platform-content {
    padding: 2.5rem;
}

.platform-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.platform-type {
    font-size: 1rem;
    color: #5CD6D6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.platform-availability {
    font-size: 1rem;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    display: inline-block;
}

.platform-description {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.platform-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(92, 214, 214, 0.1);
}

.spec-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5CD6D6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.spec-item p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.platform-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-cta .btn-primary,
.platform-cta .btn-secondary {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

@media (max-width: 968px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platforms-header h2 {
        font-size: 2.5rem;
    }
    
    .platforms-intro-bullets {
        gap: 0.75rem;
        margin: 1.5rem auto 0;
    }
    
    .platforms-intro-bullets li {
        font-size: 1rem;
        padding: 0.875rem 1.25rem 0.875rem 2.5rem;
    }
    
    .platforms-intro-bullets li::before {
        left: 0.75rem;
        font-size: 1.2rem;
    }
    
    .platform-content {
        padding: 2rem;
    }
    
    .platform-specs {
        grid-template-columns: 1fr;
    }
    
    .platform-cta {
        flex-direction: column;
    }
    
    .platform-cta .btn-primary,
    .platform-cta .btn-secondary {
        width: 100%;
    }
}

/* View Cube Navigation */
.view-cube {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(45deg);
    cursor: grab;
    z-index: 100;
    margin: 10px;
    pointer-events: auto;
    will-change: transform;
}

.view-cube:active {
    cursor: grabbing;
}

.view-cube .cube-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(92, 214, 214, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 600;
    color: #5CD6D6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    user-select: none;
    pointer-events: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: center center;
    box-shadow: inset 0 0 10px rgba(92, 214, 214, 0.2);
}

.view-cube:not(.dragging) .cube-face:hover {
    background: rgba(92, 214, 214, 0.3);
    border-color: #5CD6D6;
    box-shadow: 0 0 15px rgba(92, 214, 214, 0.8), inset 0 0 15px rgba(92, 214, 214, 0.3);
    color: #ffffff;
}

.view-cube.dragging .cube-face:hover {
    background: rgba(92, 214, 214, 0.2);
    border-color: rgba(92, 214, 214, 0.5);
    box-shadow: none;
}

.view-cube .cube-face[data-view="front"] {
    transform: rotateY(0deg) translateZ(30px);
}

.view-cube .cube-face[data-view="back"] {
    transform: rotateY(180deg) translateZ(30px);
}

.view-cube .cube-face[data-view="right"] {
    transform: rotateY(90deg) translateZ(30px);
}

.view-cube .cube-face[data-view="left"] {
    transform: rotateY(-90deg) translateZ(30px);
}

.view-cube .cube-face[data-view="top"] {
    transform: rotateX(90deg) translateZ(30px);
}

.view-cube .cube-face[data-view="bottom"] {
    transform: rotateX(-90deg) translateZ(30px);
}

@media (max-width: 768px) {
    .view-cube {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
        margin: 5px;
    }
    
    .view-cube .cube-face {
        width: 50px;
        height: 50px;
        font-size: 0.45rem;
    }
    
    .view-cube .cube-face[data-view="front"] {
        transform: rotateY(0deg) translateZ(25px);
    }
    
    .view-cube .cube-face[data-view="back"] {
        transform: rotateY(180deg) translateZ(25px);
    }
    
    .view-cube .cube-face[data-view="right"] {
        transform: rotateY(90deg) translateZ(25px);
    }
    
    .view-cube .cube-face[data-view="left"] {
        transform: rotateY(-90deg) translateZ(25px);
    }
    
    .view-cube .cube-face[data-view="top"] {
        transform: rotateX(90deg) translateZ(25px);
    }
    
    .view-cube .cube-face[data-view="bottom"] {
        transform: rotateX(-90deg) translateZ(25px);
    }
}
