cat > public/css/components.css << 'EOF'
.product-hero {
    padding: 160px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.highlight-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.features-detail {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-row {
    margin-bottom: 80px;
}

.feature-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.feature-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary-color);
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
EOF