/* ============================================
   EHON VMI Page - Advanced Visual Styles
   ============================================ */

/* ============================================
   Hero Section
   ============================================ */
.vmi-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.vmi-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.vmi-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.vmi-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Metrics with Animated Rings */
.hero-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.metric-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 6;
}

.ring-fill {
    fill: none;
    stroke: var(--accent-primary);
    stroke-width: 6;
    stroke-linecap: round;
    animation: ringFill 2s ease-out forwards;
    filter: drop-shadow(0 0 8px rgba(237, 28, 36, 0.5));
}

.ring-fill.ring-blue {
    stroke: var(--accent-blue);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.ring-fill.ring-green {
    stroke: var(--accent-green);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

@keyframes ringFill {
    from {
        stroke-dashoffset: 283;
    }
}

.metric-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Data Stream Animation */
.hero-data-stream {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: dataStream 8s linear infinite;
}

.data-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.data-particle:nth-child(2) { left: 25%; animation-delay: 1s; }
.data-particle:nth-child(3) { left: 40%; animation-delay: 2s; }
.data-particle:nth-child(4) { left: 55%; animation-delay: 3s; }
.data-particle:nth-child(5) { left: 70%; animation-delay: 4s; }
.data-particle:nth-child(6) { left: 85%; animation-delay: 5s; }
.data-particle:nth-child(7) { left: 15%; animation-delay: 1.5s; }
.data-particle:nth-child(8) { left: 65%; animation-delay: 2.5s; }

@keyframes dataStream {
    0% {
        top: -10px;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Hero Visual - Dashboard Hologram */
.vmi-hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.dashboard-hologram {
    position: relative;
    padding: 60px;
}

.hologram-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-ring {
    position: absolute;
    border: 1px solid rgba(237, 28, 36, 0.2);
    border-radius: 50%;
    animation: hologramSpin 20s linear infinite;
}

.h-ring.ring-1 {
    width: 100%;
    height: 100%;
    animation-duration: 25s;
}

.h-ring.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(42, 54, 144, 0.2);
    animation-duration: 20s;
    animation-direction: reverse;
}

.h-ring.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(59, 130, 246, 0.15);
    animation-duration: 15s;
}

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

.dashboard-screen {
    position: relative;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 
        var(--shadow-lg),
        0 0 60px rgba(237, 28, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: var(--transition-slow);
}

.dashboard-screen:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 
        var(--shadow-lg),
        0 0 80px rgba(237, 28, 36, 0.3);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: #ff5f56; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #27ca40; }

.screen-title {
    flex: 1;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.screen-content {
    padding: 8px;
}

.dashboard-preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Floating Data Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(21, 29, 53, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.fc-1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: -2s;
}

.fc-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: -4s;
}

.fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 36, 0.15);
    border-radius: 10px;
}

.fc-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
}

.fc-data {
    display: flex;
    flex-direction: column;
}

.fc-value {
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
}

.fc-status {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fc-status.success {
    background: rgba(16, 185, 129, 0.2);
}

.fc-status.success svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-green);
}

.fc-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.fc-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
}

.chart-bar {
    width: 8px;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out forwards;
}

@keyframes chartGrow {
    from { height: 0 !important; }
}

/* ============================================
   Cloud Portal Section
   ============================================ */
.cloud-portal {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.portal-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.portal-visual {
    position: relative;
}

.portal-frame {
    position: relative;
    z-index: 2;
}

.portal-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transition: var(--transition-slow);
}

.portal-img:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Connection Web Nodes */
.connection-web {
    position: absolute;
    inset: -20%;
    pointer-events: none;
}

.web-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(21, 29, 53, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

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

.node-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.node-1 { top: 15%; left: 8%; animation-delay: 0s; }
.node-2 { top: 15%; right: 12%; animation-delay: -1.5s; }
.node-3 { bottom: 20%; left: 4%; animation-delay: -3s; }
.node-4 { bottom: 10%; right: 10%; animation-delay: -4.5s; }

/* Portal Features */
.portal-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-base);
}

.pf-item:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateX(8px);
}

.pf-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 36, 0.15);
    border-radius: 14px;
}

.pf-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-primary);
}

.pf-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pf-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Features Bento Grid
   ============================================ */
.vmi-features {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

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

.bento-item:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-4px);
}

.bento-item.bento-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-item.bento-wide {
    grid-column: span 2;
}

.bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(237, 28, 36, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-slow);
}

.bento-item:hover .bento-glow {
    opacity: 1;
}

.bento-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 36, 0.15);
    border-radius: 14px;
    margin-bottom: 24px;
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.bento-icon.icon-blue {
    background: rgba(59, 130, 246, 0.15);
}

.bento-icon.icon-blue svg {
    stroke: var(--accent-blue);
}

.bento-icon.icon-green {
    background: rgba(16, 185, 129, 0.15);
}

.bento-icon.icon-green svg {
    stroke: var(--accent-green);
}

.bento-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pulse Wave Animation */
.bento-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-height: 180px;
}

.pulse-wave {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: pulseWave 3s ease-out infinite;
    z-index: 1;
}

.pulse-wave.delay-1 { animation-delay: 1s; }
.pulse-wave.delay-2 { animation-delay: 2s; }

@keyframes pulseWave {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.pulse-center-img {
    position: relative;
    z-index: 2;
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(237, 28, 36, 0.4));
    animation: floatPulse 4s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

/* Comparison Bars */
.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.cmp-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmp-label {
    width: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.cmp-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.cmp-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    animation: fillBar 1.5s ease-out forwards;
}

.cmp-fill.fill-blue {
    background: var(--gradient-blue);
}

.cmp-fill.fill-green {
    background: linear-gradient(135deg, var(--accent-green) 0%, #34d399 100%);
}

@keyframes fillBar {
    from { width: 0 !important; }
}

/* ============================================
   Sites Section
   ============================================ */
.sites-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.sites-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.sites-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.ss-number {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ss-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.sites-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sites-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.sites-visual:hover .sites-img {
    transform: scale(1.03);
}

/* ============================================
   Integration Section
   ============================================ */
.vmi-integration {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

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

.device-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.orbit-device {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(237, 28, 36, 0.2);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
}

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

.orbit-item {
    position: absolute;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(237, 28, 36, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
    /* Counter-rotate the entire item so it stays upright while orbiting */
    animation: orbitCounterSpin 30s linear infinite;
}

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

/* Position items without transform (since animation uses transform for counter-rotation) */
.oi-1 { top: -5%; left: 50%; margin-left: -45px; }
.oi-2 { top: 50%; right: -5%; margin-top: -20px; }
.oi-3 { bottom: -5%; left: 50%; margin-left: -35px; }
.oi-4 { top: 50%; left: -5%; margin-top: -20px; }

.int-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.int-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.ib-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
}

.ib-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent-green);
}

.ib-item span {
    font-size: 14px;
    color: var(--text-primary);
}

/* ============================================
   Industries Section
   ============================================ */
.vmi-industries {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ind-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: var(--transition-base);
}

.ind-card:hover {
    border-color: rgba(237, 28, 36, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ind-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid rgba(237, 28, 36, 0.3);
    border-radius: 14px;
}

.ind-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ind-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ind-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   Dashboard Preview Section
   ============================================ */
.dash-preview {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.dash-showcase {
    text-align: center;
}

.dash-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.dash-header p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.dash-image-container {
    position: relative;
    margin-bottom: 60px;
    padding: 40px;
}


@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 
            0 0 15px rgba(237, 28, 36, 0.3),
            inset 0 0 15px rgba(237, 28, 36, 0.05);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 25px rgba(237, 28, 36, 0.6),
            inset 0 0 20px rgba(237, 28, 36, 0.15);
    }
}

/* Additional corner brackets */
.dash-image-container .dash-frame::before,
.dash-image-container .dash-frame::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
}


/* Scan Line Effect */
.dash-image-container .dash-frame {
    overflow: visible;
}


@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        top: calc(100% - 3px);
        opacity: 0;
    }
}


.dash-image-container:hover .laptop-frame::after {
    opacity: 1;
}


/* Circuit Lines Decoration - Left */
.dash-image-container > .dash-frame.laptop-frame + .circuit-line-left,
.dash-image-container .circuit-line-left {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 200px;
    opacity: 0.6;
}

/* HUD Elements */
.dash-image-container .hud-element {
    position: absolute;
    padding: 8px 14px;
    background: rgba(21, 29, 53, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 28, 36, 0.3);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 20;
    animation: hudFloat 5s ease-in-out infinite;
}

.dash-image-container .hud-element.hud-top-left {
    top: 20px;
    left: 60px;
    animation-delay: 0s;
}

.dash-image-container .hud-element.hud-top-right {
    top: 20px;
    right: 60px;
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    animation-delay: -2.5s;
}

.dash-image-container .hud-element.hud-bottom-left {
    bottom: 20px;
    left: 60px;
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
    animation-delay: -1.25s;
}

.dash-image-container .hud-element.hud-bottom-right {
    bottom: 20px;
    right: 60px;
    animation-delay: -3.75s;
}

@keyframes hudFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Animated Particles Background */
.dash-image-container .particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.dash-image-container .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 8s ease-in-out infinite;
}

.dash-image-container .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.dash-image-container .particle:nth-child(2) { left: 25%; animation-delay: 1.5s; }
.dash-image-container .particle:nth-child(3) { left: 50%; animation-delay: 3s; background: var(--accent-blue); }
.dash-image-container .particle:nth-child(4) { left: 75%; animation-delay: 4.5s; }
.dash-image-container .particle:nth-child(5) { left: 90%; animation-delay: 6s; background: var(--accent-green); }

@keyframes particleRise {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 0.8;
        transform: scale(1);
    }
    90% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Glow Ring Effect */
.dash-image-container .glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px solid rgba(237, 28, 36, 0.1);
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
    animation: glowRingPulse 4s ease-in-out infinite;
}

.dash-image-container .glow-ring:nth-child(2) {
    width: 115%;
    height: 115%;
    border-color: rgba(59, 130, 246, 0.08);
    animation-delay: -2s;
}

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

/* Center Focus Glow */
.dash-image-container .center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(
        ellipse at center,
        rgba(237, 28, 36, 0.08) 0%,
        rgba(42, 54, 144, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Status Bar */
.dash-image-container .status-bar {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    background: rgba(21, 29, 53, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    z-index: 20;
}

.dash-image-container .status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-image-container .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: statusPulse 2s ease-in-out infinite;
}

.dash-image-container .status-dot.warning {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

.dash-image-container .status-dot.processing {
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Tech Lines */
.dash-image-container .tech-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.dash-image-container .tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(237, 28, 36, 0.4), transparent);
    height: 1px;
}

.dash-image-container .tech-line.line-h-1 {
    top: 30%;
    left: 0;
    width: 15%;
    animation: techLineExpand 3s ease-in-out infinite;
}

.dash-image-container .tech-line.line-h-2 {
    top: 70%;
    right: 0;
    width: 15%;
    animation: techLineExpand 3s ease-in-out infinite 1.5s;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dash-image-container {
        padding: 30px;
    }
    
    .dash-image-container .hud-element {
        display: none;
    }
    
    .dash-image-container .status-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .dash-image-container {
        padding: 20px;
    }
    
    .dash-image-container .glow-ring {
        display: none;
    }
}

.dash-frame {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(237, 28, 36, 0.1);
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.frame-dots {
    display: flex;
    gap: 6px;
}

.frame-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.frame-dots span:nth-child(1) { background: #ff5f56; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:nth-child(3) { background: #27ca40; }

.frame-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 6px;
}

.frame-actions svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-green);
}

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

/* ============================================
   Laptop Frame Showcase
   ============================================ */
.laptop-frame {
    position: relative;
    display: inline-block;
    padding: 20px 20px 20px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.05) 0%, rgba(42, 54, 144, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: var(--transition-slow);
}

.laptop-frame:hover {
    border-color: rgba(237, 28, 36, 0.2);
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(237, 28, 36, 0.15);
}

.laptop-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    border-radius: 16px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.laptop-frame:hover .laptop-img {
    transform: scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(237, 28, 36, 0.3),
        0 0 40px rgba(237, 28, 36, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Subtle Glow Base */
.laptop-glow-base {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(237, 28, 36, 0.25) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    opacity: 0.6;
    transition: var(--transition-slow);
}

.laptop-frame:hover .laptop-glow-base {
    opacity: 1;
    width: 80%;
}

/* Responsive */
@media (max-width: 768px) {
    .laptop-frame {
        padding: 24px 24px 40px;
    }
}

.dash-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dh-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: left;
    transition: var(--transition-base);
}

.dh-item:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-4px);
}

.dh-number {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.dh-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.dh-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.vmi-faq {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.faq-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(237, 28, 36, 0.3);
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .vmi-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vmi-hero-content {
        order: 1;
    }
    
    .vmi-hero-visual {
        order: 2;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .vmi-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .portal-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .portal-visual {
        order: -1;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sites-visual {
        order: -1;
    }
    
    .integration-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .int-visual {
        order: -1;
    }
    
    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .float-card {
        display: none;
    }
}

@media (max-width: 1024px) {
    .features-bento {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-item.bento-large {
        grid-row: auto;
    }
    
    .bento-item.bento-wide {
        grid-column: span 2;
    }
    
    .dash-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vmi-hero {
        padding: 120px 16px 60px;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .features-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-item.bento-wide {
        grid-column: auto;
    }
    
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .sites-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .int-benefits {
        grid-template-columns: 1fr;
    }
    
    .device-orbit {
        width: 300px;
        height: 300px;
    }
    
    .orbit-device {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .vmi-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .metric-ring {
        width: 60px;
        height: 60px;
    }
    
    .metric-value {
        font-size: 14px;
    }
    
    .dashboard-hologram {
        padding: 20px;
    }
    
    .ind-grid {
        grid-template-columns: 1fr;
    }
    
    .dash-highlights {
        grid-template-columns: 1fr;
    }
    
    .pf-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bento-item {
        padding: 24px;
    }
}

