/* ==========================================
   NEURAL TECHNOLOGY — Landing Page Styles
   Color Palette derived from VELORIS Apps:
   - Deep Navy: #060b18
   - Dark Panel: #0a1628
   - Card BG: #0d1f3c
   - Primary Blue: #0066ff
   - Cyan Accent: #00d4ff
   - Light Cyan: #00e5ff
   - Purple: #7c3aed
   - Green: #10b981
   - Amber: #f59e0b
   - Text: #e2e8f0
   ========================================== */

/* ---- CSS Reset & Variables ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --bg-primary: #060b18;
    --bg-secondary: #0a1628;
    --bg-card: #0d1f3c;
    --bg-card-hover: #112a4a;
    --bg-glass: rgba(13, 31, 60, 0.6);
    --bg-glass-light: rgba(13, 31, 60, 0.3);

    /* Accent Colors */
    --accent-blue: #0066ff;
    --accent-cyan: #00d4ff;
    --accent-light-cyan: #00e5ff;
    --accent-purple: #7c3aed;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-hero: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #00e5ff 100%);
    --gradient-card: linear-gradient(145deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.03));
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);

    /* Text */
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-color: rgba(0, 212, 255, 0.1);
    --border-hover: rgba(0, 212, 255, 0.25);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) var(--bg-secondary);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Neural Canvas Background ---- */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ---- Utility Classes ---- */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

.products-section,
.showcase-section,
.features-section,
.about-section,
.cta-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

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

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.btn-outline:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: var(--bg-glass-light);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(6, 11, 24, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.08);
}

.nav-link.active {
    color: var(--accent-cyan);
}

.nav-link-demo {
    display: none;
}

.nav-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.3);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 102, 255, 0.12);
    top: -100px;
    left: -200px;
    animation: glow-float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.08);
    bottom: -100px;
    right: -150px;
    animation: glow-float 10s ease-in-out infinite reverse;
}

@keyframes glow-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    display: inline;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.8s 0.3s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    border-radius: var(--radius-xl);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: float-card 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}
.card-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: 2s;
}
.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 4s;
}

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

.fc-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--accent-blue);
    flex-shrink: 0;
}
.fc-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}
.fc-icon-purple {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-purple);
}

.fc-info {
    display: flex;
    flex-direction: column;
}
.fc-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.fc-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: fadeInUp 1s 1s ease forwards;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---- Products Section (New Showcase Design) ---- */
.products-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 11, 24, 0) 0%, rgba(10, 22, 40, 0.5) 48%, rgba(6, 11, 24, 0) 100%),
        radial-gradient(circle at 50% 18%, rgba(0, 212, 255, 0.08), transparent 34%);
}

.products-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

.products-bg-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 102, 255, 0.07);
    top: 10%;
    left: -150px;
}

.products-bg-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.05);
    bottom: 10%;
    right: -100px;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 10px;
}

/* Product Showcase Card - Base */
.product-showcase-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background:
        linear-gradient(145deg, rgba(13, 31, 60, 0.92), rgba(6, 11, 24, 0.94)),
        var(--bg-card);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.22);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
    cursor: default;
    isolation: isolate;
    transform: none !important;
}

.product-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.11), transparent 26%),
        radial-gradient(circle at 18% 0%, rgba(0, 212, 255, 0.16), transparent 34%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.product-showcase-card:hover {
    border-color: rgba(0, 212, 255, 0.32);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 48px rgba(0, 102, 255, 0.12);
    transform: none !important;
}

.product-showcase-card.reveal,
.product-showcase-card.reveal.revealed,
.product-showcase-card.reveal-left,
.product-showcase-card.reveal-right {
    transform: none !important;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.product-showcase-card:hover::before {
    opacity: 1;
}

/* Product Image Area */
.product-showcase-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(3, 7, 18, 0.98), rgba(13, 31, 60, 0.82)),
        #050a14;
    z-index: 2;
}

.product-showcase-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.product-showcase-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
    pointer-events: none;
    z-index: 1;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 34px;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.42));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: none;
}

.product-showcase-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(13, 31, 60, 0.95) 0%, rgba(13, 31, 60, 0.28) 24%, transparent 48%),
        linear-gradient(110deg, rgba(0, 102, 255, 0.12), transparent 36%);
    pointer-events: none;
    z-index: 3;
}

.product-overlay-amber {
    background:
        linear-gradient(to top, rgba(13, 31, 60, 0.95) 0%, rgba(13, 31, 60, 0.28) 24%, transparent 48%),
        linear-gradient(115deg, rgba(245, 158, 11, 0.18), transparent 40%);
}

.product-overlay-green {
    background:
        linear-gradient(to top, rgba(13, 31, 60, 0.95) 0%, rgba(13, 31, 60, 0.28) 24%, transparent 48%),
        linear-gradient(115deg, rgba(16, 185, 129, 0.18), transparent 40%);
}

/* Product Showcase Badge */
.product-showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-cyan);
    background: rgba(6, 11, 24, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 8px 16px;
    border-radius: 9999px;
    z-index: 5;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.product-badge-amber {
    color: var(--accent-amber);
    border-color: rgba(245, 158, 11, 0.3);
}

.product-badge-green {
    color: var(--accent-green);
    border-color: rgba(16, 185, 129, 0.3);
}

.product-badge-cyan {
    color: var(--accent-cyan);
    border-color: rgba(0, 212, 255, 0.25);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Product Showcase Content */
.product-showcase-content {
    position: relative;
    padding: 28px 32px 34px;
    z-index: 3;
}

.product-showcase-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-blue);
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.product-showcase-card:hover .product-showcase-icon {
    background: rgba(0, 102, 255, 0.2);
    transform: none;
}

.product-showcase-icon.product-icon-amber {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-amber);
}
.product-showcase-card:hover .product-icon-amber {
    background: rgba(245, 158, 11, 0.2);
}

.product-showcase-icon.product-icon-green {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}
.product-showcase-card:hover .product-icon-green {
    background: rgba(16, 185, 129, 0.2);
}

.product-showcase-icon.product-icon-cyan {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
}
.product-showcase-card:hover .product-icon-cyan {
    background: rgba(0, 212, 255, 0.2);
}

.product-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-showcase-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 600px;
}

/* Product Pills */
.product-showcase-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-pill {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.product-pill:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.product-pill-amber {
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
}
.product-pill-amber:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.product-pill-green {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
}
.product-pill-green:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Product Showcase Glow */
.product-showcase-glow {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.product-glow-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.13) 0%, transparent 70%);
}

.product-glow-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, transparent 70%);
}

.product-glow-cyan {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

/* ---- Hero Card (PACS) ---- */
.product-showcase-hero .product-showcase-image {
    height: 520px;
}

.product-showcase-hero .product-showcase-image img {
    padding: 40px 40px 56px;
}

/* PACS Zero-Footprint Callout */
.zero-footprint-callout {
    position: absolute;
    top: 58px;
    left: 34px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 16px;
    background: rgba(6, 11, 24, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 26px rgba(0, 212, 255, 0.08);
    animation: zero-footprint-float 4s ease-in-out infinite;
}

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

.zero-footprint-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.12);
}

.zero-footprint-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.9;
}

.zero-footprint-callout span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.zero-footprint-callout small {
    display: block;
    margin-top: 4px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ---- PACS Floating Viewer Tools ---- */
.viewer-floating-tools {
    position: absolute;
    top: 96px;
    right: 34px;
    z-index: 4;
    display: grid;
    gap: 10px;
    width: 166px;
    padding: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    background: rgba(6, 11, 24, 0.66);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.viewer-floating-tools span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 10px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.viewer-floating-tools span:nth-child(3),
.viewer-floating-tools span:nth-child(4) {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.16);
}

.viewer-floating-tools svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: currentColor;
    stroke-width: 1.9;
}

.viewer-floating-tools em {
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-primary);
}

/* ---- Bottom Row: ECG + Mobile ---- */
.products-showcase-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

/* ECG Wide Card */
.product-showcase-wide .product-showcase-image {
    height: 380px;
}

.product-showcase-wide .product-showcase-image img {
    padding: 28px 28px 44px;
}

/* Mobile Compact Card */
.product-showcase-compact .product-showcase-image {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 40%, rgba(16, 185, 129, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(3, 7, 18, 0.98), rgba(13, 31, 60, 0.82));
}

.product-showcase-compact .product-showcase-image img.mobile-product-img {
    width: auto;
    max-width: 90%;
    max-height: 350px;
    object-fit: contain;
    margin: 0 auto;
    padding: 24px;
}

/* ---- RIS Card (Text-Only Premium) ---- */
.product-showcase-ris {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(13, 31, 60, 0.94) 0%, rgba(0, 212, 255, 0.05) 100%),
        var(--bg-card);
    padding: 0;
    min-height: 180px;
}

.product-ris-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.04) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.product-showcase-ris:hover .product-ris-bg {
    opacity: 1;
}

.product-ris-content {
    position: relative;
    z-index: 2;
    padding: 36px 40px;
    flex: 1;
}

.product-ris-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.ris-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.ris-feature-item svg {
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.ris-feature-item:hover {
    color: var(--text-primary);
}

/* ---- Responsive: Products ---- */
@media (max-width: 900px) {
    .products-showcase-row {
        grid-template-columns: 1fr;
    }
    .product-showcase-hero .product-showcase-image {
        height: 360px;
    }
    .product-showcase-wide .product-showcase-image {
        height: 300px;
    }
    .product-showcase-compact .product-showcase-image {
        height: 320px;
    }
    .product-showcase-image img,
    .product-showcase-hero .product-showcase-image img,
    .product-showcase-wide .product-showcase-image img {
        padding: 24px;
    }
    .product-ris-features {
        grid-template-columns: 1fr;
    }
    .viewer-floating-tools {
        top: auto;
        right: 24px;
        bottom: 24px;
        width: auto;
        grid-template-columns: repeat(4, auto);
    }
    .zero-footprint-callout {
        top: 44px;
        left: 24px;
    }
}

@media (max-width: 600px) {
    .product-showcase-hero .product-showcase-image {
        height: 310px;
    }
    .product-showcase-wide .product-showcase-image {
        height: 220px;
    }
    .product-showcase-compact .product-showcase-image {
        height: 280px;
    }
    .product-showcase-image::before {
        inset: 10px;
        border-radius: 12px;
    }
    .product-showcase-image img,
    .product-showcase-hero .product-showcase-image img,
    .product-showcase-wide .product-showcase-image img,
    .product-showcase-compact .product-showcase-image img.mobile-product-img {
        padding: 16px;
    }
    .product-showcase-badge {
        top: 14px;
        right: 14px;
        padding: 7px 12px;
        font-size: 0.62rem;
    }
    .product-showcase-hero > .product-showcase-badge {
        display: none;
    }
    .product-showcase-content {
        padding: 20px 20px 24px;
    }
    .product-showcase-hero .product-showcase-content {
        padding: 22px 18px 24px;
    }
    .product-showcase-title {
        font-size: 1.25rem;
    }
    .product-showcase-desc {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 16px;
    }
    .product-showcase-pills {
        gap: 7px;
    }
    .product-pill {
        font-size: 0.68rem;
        padding: 5px 11px;
    }
    .product-ris-content {
        padding: 24px 20px;
    }
    .viewer-floating-tools {
        left: 16px;
        right: 16px;
        bottom: 14px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
        padding: 8px;
        border-radius: 14px;
    }
    .viewer-floating-tools span {
        justify-content: center;
        min-height: 38px;
        padding: 7px 4px;
        gap: 5px;
    }
    .viewer-floating-tools svg {
        width: 15px;
        height: 15px;
    }
    .viewer-floating-tools em {
        display: inline;
        font-size: 0.58rem;
        line-height: 1;
    }
    .zero-footprint-callout {
        top: 16px;
        left: 16px;
        padding: 8px 11px 8px 8px;
        border-radius: 13px;
    }
    .zero-footprint-icon {
        width: 30px;
        height: 30px;
    }
    .zero-footprint-callout span {
        font-size: 0.72rem;
    }
    .zero-footprint-callout small {
        display: none;
    }
}



/* ---- Showcase Section ---- */
.showcase-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.showcase-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-img-contain {
    object-fit: contain;
    background: var(--bg-primary);
}

.showcase-item:hover .showcase-img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(6, 11, 24, 0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.showcase-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.showcase-main .showcase-image-wrapper {
    min-height: 450px;
}

.showcase-side .showcase-image-wrapper {
    min-height: 450px;
}

/* ---- Features Section ---- */
.features-section {
    padding: var(--section-padding);
    position: relative;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent-cyan);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.08);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- About Section ---- */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.value-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.value-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.about-img-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-item:hover img {
    transform: scale(1.05);
}

.about-img-1 {
    height: 350px;
}

.about-img-2 {
    height: 350px;
}

.about-counter-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 20px 36px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.counter-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.15);
    top: -100px;
    left: 20%;
    animation: glow-float 8s ease-in-out infinite;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.1);
    bottom: -80px;
    right: 20%;
    animation: glow-float 10s ease-in-out infinite reverse;
}

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

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Contact Section ---- */
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--accent-cyan);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        max-width: 700px;
        margin: 0 auto;
    }

    .card-1 { left: 0; }
    .card-2 { right: 0; }

    .products-showcase-row {
        grid-template-columns: 1fr 1fr;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content .section-title {
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    #neural-canvas,
    .hero-glow,
    .products-bg-glow,
    .cta-orb {
        display: none;
    }

    .hero-content,
    .hero-visual,
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .hero-section {
        min-height: auto;
        padding: 92px 0 48px;
    }

    .hero-container {
        gap: 28px;
        padding: 0 18px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-buttons {
        margin-bottom: 32px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        align-items: stretch;
    }

    .stat-number {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .stat-suffix {
        font-size: clamp(0.95rem, 5vw, 1.25rem);
    }

    .stat-label {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .stat-item {
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .stat-item > span:first-child,
    .stat-number + .stat-suffix {
        display: inline;
    }

    .stat-divider {
        display: none;
    }

    .hero-image {
        border-radius: 16px;
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
    }

    .section-header {
        margin-bottom: 42px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .section-desc {
        font-size: 0.96rem;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        min-height: 100dvh;
        background: rgba(6, 11, 24, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 92px 24px 32px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        display: block;
        width: min(100%, 320px);
        text-align: center;
        font-size: 1.05rem;
        padding: 13px 20px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        background: rgba(13, 31, 60, 0.42);
    }

    .nav-link-demo {
        display: block;
        margin-top: 8px;
        color: #fff;
        background: var(--gradient-primary);
        border-color: rgba(0, 212, 255, 0.32);
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.22);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-content {
        text-align: left;
    }

    .about-content .section-title {
        text-align: left;
    }

    .about-values {
        gap: 12px;
        margin-top: 24px;
    }

    .value-item {
        align-items: flex-start;
        gap: 13px;
        padding: 15px;
        text-align: left;
        border-radius: 14px;
    }

    .value-item:hover {
        transform: none;
    }

    .value-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .value-item h4 {
        font-size: 0.98rem;
        line-height: 1.25;
    }

    .value-item p {
        font-size: 0.82rem;
        line-height: 1.45;
        margin-top: 4px;
    }

    .about-image-grid {
        gap: 10px;
    }

    .about-img-item img {
        object-fit: contain;
        background: var(--bg-primary);
    }

    .about-counter-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin: 14px 0 0;
        padding: 14px 26px;
        border-radius: 16px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-suffix {
        font-size: 1.5rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-title {
        font-size: clamp(1.9rem, 9vw, 2.45rem);
        line-height: 1.16;
    }

    .cta-desc {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .stat-divider {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .products-showcase-row {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .about-img-1,
    .about-img-2 {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-img-2 {
        aspect-ratio: 3 / 4;
    }

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

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

    .scroll-indicator {
        display: none;
    }
}

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

    .logo-text {
        font-size: 1.05rem;
    }

    .logo-img {
        width: 34px;
        height: 34px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .contact-form {
        padding: 24px;
    }

    .about-grid {
        gap: 34px;
    }

    .about-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .value-item {
        padding: 14px;
    }

    .value-icon {
        width: 38px;
        height: 38px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-img-1,
    .about-img-2 {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-img-2 {
        aspect-ratio: 3 / 4;
    }

    .about-counter-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin: 12px 0 0;
        padding: 14px 18px;
    }

    .counter-number {
        font-size: 1.9rem;
    }

    .counter-suffix {
        font-size: 1.3rem;
    }

    .counter-label {
        font-size: 0.78rem;
    }

    .cta-title {
        font-size: clamp(1.75rem, 10vw, 2.2rem);
    }
}

@media (max-width: 900px) {
    .products-showcase-row {
        grid-template-columns: 1fr;
    }
}
