/* Shared styles for the employer-track pages (/for-employers/*, /for-law-firms).
   One file instead of five duplicated inline <style> blocks — see Global
   Constraints in docs/superpowers/plans/2026-08-09-employer-track.md for why. */

:root {
    --primary-color: #1B9C85;
    --text-dark: #0F172A;
    --text-light: #f8fafc;
    --background-light: #EDF6EE;
    --background-white: #FFFFFF;
    --border-color: #e2e8f0;
}
body { font-family: 'Open Sans', Arial, Helvetica, sans-serif; margin: 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
main { min-height: 70vh; }
header { background-color: var(--background-white); box-shadow: 0 2px 4px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: 80px; overflow: visible; }
header .container { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 20px; height: 80px; box-sizing: border-box; }
.logo img { max-height: 70px; width: 70px; height: 70px; }
section { padding: 3rem 0; }
section:nth-of-type(even) { background: var(--background-light); }

/* Hub (for-employers/index.php) */
#employer-hero { background: var(--text-dark); color: var(--text-light); padding: 4rem 0; }
#employer-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
#employer-hero p { font-size: 1.15rem; max-width: 700px; line-height: 1.6; }
.service-line-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.service-line-card { border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; }
.service-line-card h3 { margin-top: 0; }
.service-line-card a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.engagement-steps { list-style: decimal; padding-left: 1.25rem; line-height: 1.8; }

/* Sub-pages (i9-compliance, physician-immigration, immigration-counsel-retainer, for-law-firms) */
#page-hero { background: var(--text-dark); color: var(--text-light); padding: 3rem 0; }
#page-hero h1 { font-size: 2.25rem; margin-bottom: 0.75rem; }
.deliverable-list { line-height: 1.8; }

/* physician-immigration only */
.cycle-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.cycle-table th, .cycle-table td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border-color); }
.cycle-table th { background: var(--background-white); }

/* immigration-counsel-retainer only */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.tier-card { border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; background: var(--background-white); }
.tier-card h3 { margin-top: 0; }
.tier-card ul { padding-left: 1.1rem; line-height: 1.7; }

/* Employer contact form (for-employers/contact.php) */
.employer-form { max-width: 820px; }
.employer-form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.employer-form .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.5rem; }
.employer-form .form-group { margin-bottom: 1.25rem; }
.employer-form .form-group--full { grid-column: 1 / -1; }
.employer-form label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--text-dark); }
.employer-form input,
.employer-form select,
.employer-form textarea {
    width: 100%; padding: 0.7rem 0.75rem; border: 1px solid var(--border-color);
    border-radius: 6px; font-size: 1rem; font-family: inherit; box-sizing: border-box; background: #fff;
}
.employer-form input:focus,
.employer-form select:focus,
.employer-form textarea:focus {
    outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(27,156,133,0.12);
}
.employer-form .required { color: #dc2626; }
.employer-form .disclaimer-label { display: flex; align-items: flex-start; gap: 0.5rem; font-weight: 400; font-size: 0.9rem; color: #555; line-height: 1.45; cursor: pointer; }
.employer-form .disclaimer-label input { width: auto; margin-top: 0.2rem; }
.employer-form .error-message { color: #dc2626; font-size: 0.85rem; margin-top: 0.25rem; }
.employer-form .btn { margin-top: 0.5rem; }
#employer-form-status { display: none; margin-top: 1.25rem; padding: 1rem; border-radius: 6px; text-align: center; font-weight: 600; }
#employer-form-status.success { background: #d1fae5; color: #065f46; }
#employer-form-status.error { background: #fee2e2; color: #991b1b; }
@media (max-width: 640px) {
    .employer-form .form-grid { grid-template-columns: 1fr; }
}
