/* Payroll Specific Styles */
:root {
    --pay-primary: #059669;
    --pay-accent: #34d399;
}

.product-hero {
    padding: 6rem 0;
    background: #f0fdf4;
}

.product-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.product-hero-content h1 span {
    color: var(--pay-primary);
}

.product-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.product-hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Payroll Mockup Graphic */
.payroll-mockup {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(5, 150, 105, 0.1);
    border: 1px solid #d1fae5;
}

.pay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.batch-title { font-weight: 700; color: #1e293b; }
.batch-status { font-size: 0.75rem; color: var(--pay-primary); font-weight: 700; background: #ecfdf5; padding: 4px 8px; border-radius: 4px; }

.pay-amount {
    margin-bottom: 2rem;
    text-align: center;
}

.pay-amount label { display: block; font-size: 0.85rem; color: #64748b; margin-bottom: 8px; }
.pay-amount .value { font-size: 2.5rem; font-weight: 800; color: #1e293b; }

.pay-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.b-row span { color: #64748b; }
.b-row strong { color: #1e293b; }

/* Features Grid */
.module-features {
    padding: 6rem 0;
    background: #fff;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover { transform: translateY(-10px); }

.feature-card i {
    font-size: 2rem;
    color: var(--pay-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .product-hero-split { grid-template-columns: 1fr; text-align: center; }
    .product-hero-btns { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
}
