﻿.hero-image {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.mockup-screen {
    width: 100%;
    max-width: 500px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mockup-header {
    height: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.bar {
    height: 10px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 10px;
}

.chart {
    height: 120px;
    background: #eff6ff;
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    gap: 6px;
}

.chart-bar {
    flex: 1;
    background: var(--primary);
    opacity: 0.7;
    border-radius: 2px;
    transition: height 0.3s ease;
}
