.solution-hero { padding-top: 140px; min-height: auto; padding-bottom: 50px; }
.solution-hero h1 span { color: #0088ff; }

.solution-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    gap: 80px;
}

.hero-text-side { flex: 1.2; text-align: left; }
.hero-card-side { flex: 1; display: flex; justify-content: flex-end; perspective: 1000px; }

.floating-card { width: 100%; max-width: 400px; }

.solution-card-display {
    background: radial-gradient(circle at 30% 30%, #1a2a44 0%, #050914 100%);
    transform: rotateY(-10deg) rotateX(5deg);
    min-height: auto;
    padding: 40px;
}

.solution-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.metric-item { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.metric-val { font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; font-weight: 800; color: #60efff; }
.metric-label { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.4); letter-spacing: 1px; font-weight: 700; }

/* --- Neural Core Engine - Professional Animation Overhaul --- */
.neural-core-engine {
    height: 220px !important;
    background: radial-gradient(circle at center, #0a1931 0%, #050914 100%) !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 136, 255, 0.2) !important;
}

.core-hub {
    width: 60px;
    height: 60px;
    background: rgba(0, 136, 255, 0.1);
    border: 2px solid #0088ff;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
    animation: corePulse 3s ease-in-out infinite;
}

.core-inner-glow {
    position: absolute;
    inset: 10px;
    background: #60efff;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.6;
    animation: innerGlowPulse 1.5s alternate infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 136, 255, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(0, 136, 255, 0.8); }
}

@keyframes innerGlowPulse {
    from { opacity: 0.3; transform: scale(0.8); }
    to { opacity: 0.8; transform: scale(1.1); }
}

/* Node Mesh & Data Flow */
.node-mesh { position: absolute; width: 100%; height: 100%; z-index: 5; }
.mesh-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 255, 0.3), transparent);
    height: 1.5px; width: 120px;
    top: 50%; left: 50%; transform-origin: left center;
}
.mesh-line.l1 { transform: rotate(0deg) translateX(30px); animation: lineFlow 4s infinite; }
.mesh-line.l2 { transform: rotate(120deg) translateX(30px); animation: lineFlow 4s infinite 1.3s; }
.mesh-line.l3 { transform: rotate(240deg) translateX(30px); animation: lineFlow 4s infinite 2.6s; }

@keyframes lineFlow {
    0% { opacity: 0; width: 0; }
    30% { opacity: 1; }
    100% { opacity: 0; width: 150px; }
}

.node-dot {
    position: absolute; width: 6px; height: 6px; background: #0088ff;
    border-radius: 50%; box-shadow: 0 0 10px #0088ff; top: 50%; left: 50%;
}
.node-dot.d1 { animation: dotOrbit1 6s linear infinite; }
.node-dot.d2 { animation: dotOrbit2 8s linear infinite; }
.node-dot.d3 { animation: dotOrbit3 5s linear infinite; }

@keyframes dotOrbit1 { from { transform: rotate(0deg) translateX(80px); } to { transform: rotate(360deg) translateX(80px); } }
@keyframes dotOrbit2 { from { transform: rotate(180deg) translateX(100px); } to { transform: rotate(-180deg) translateX(100px); } }
@keyframes dotOrbit3 { from { transform: rotate(90deg) translateX(60px); } to { transform: rotate(450deg) translateX(60px); } }

.data-stream-horizontal {
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 239, 255, 0.05), transparent);
    z-index: 2; animation: dataSweep 5s linear infinite;
}
@keyframes dataSweep { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }

.status-terminal {
    background: rgba(0, 0, 0, 0.8) !important;
    font-family: 'JetBrains Mono', monospace !important;
    color: #2ed573 !important;
    border: 1px solid rgba(46, 213, 115, 0.4) !important;
    padding: 6px 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}
.status-terminal::after { content: '_'; animation: cursorBlink 0.8s infinite; }
@keyframes cursorBlink { 50% { opacity: 0; } }

/* --- Enhanced Feature Cards Section --- */
.productivity-section {
    padding: 100px 0;
}

.prod-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: none;
    overflow: hidden;
}

.prod-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 136, 255, 0.15);
}

.prod-card-top {
    height: 200px;
    background: linear-gradient(165deg, #0088ff 0%, #003db3 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Pattern background for blue section */
.prod-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
}

.feature-icon-wrapper {
    width: 90px !important;
    height: 90px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-icon-main {
    font-size: 2.8rem;
    z-index: 3;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.icon-pulse-ring {
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    animation: iconRingPulse 2s infinite;
}

@keyframes iconRingPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.icon-glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #60efff 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(10px);
}

.prod-card-bottom {
    padding: 35px 30px;
    flex-grow: 1;
    text-align: left;
}

.prod-card-bottom h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.prod-card-bottom p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Overrides for dynamic themes */
body:not(.light-theme) .solution-hero h1 { color: #ffffff; }
body.light-theme .solution-hero h1 { color: #0f172a; }
body.light-theme .hero-text-side .subtitle { color: #475569 !important; }

body:not(.light-theme) .prod-card-bottom {
    background: #0f172a;
    color: #f8fafc;
}
body:not(.light-theme) .prod-card-bottom p { color: #94a3b8; }

body.light-theme .prod-card-bottom {
    background: #ffffff;
    color: #0f172a;
}

@media (max-width: 992px) {
    .solution-hero .hero-content { flex-direction: column; text-align: center; }
    .solution-hero .hero-text-side { align-items: center; text-align: center; }
    .solution-hero .hero-card-side { margin-top: 40px; width: 100%; }
    .solution-card-display { transform: none; max-width: 450px; }
}