.product-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.product-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.product-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}
.quick-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.quick-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.quick-feature i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.quick-feature span {
    display: block;
    font-size: 0.875rem;
}
.screenshot-container {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(122, 122, 169, 0.15);
    margin-bottom: 2rem;
}
.screenshot-container img {
    width: 100%;
    border-radius: 8px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(122, 122, 169, 0.1);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(122, 122, 169, 0.15);
}
.feature-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feature-card h4 i {
    color: var(--primary-color);
}
.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}
.hardware-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0;
}
.hardware-item {
    background: var(--light-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
}
.hardware-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.hardware-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}