/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #c8102e;
    --primary-dark: #9a0c24;
    --primary-light: #fef2f4;
    --secondary: #00247d;
    --accent: #ffd700;
    --success: #10b981;
    --bg: #f7f8fa;
    --bg-alt: #fafbfc;
    --card: #ffffff;
    --text: #1a1a1a;
    --text-light: #4b5563;
    --muted: #6b7280;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === HEADER === */
header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-icon { font-size: 1.6rem; }
.logo-text span { color: var(--primary); }

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

nav a:hover { color: var(--primary); text-decoration: none; }

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover { background: var(--primary-dark); color: white !important; }

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-subtitle strong { font-weight: 700; }

/* === SEARCH BAR === */
.search-bar {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--muted);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-field input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-alt);
    transition: all 0.2s;
}

.search-field input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-search:hover { background: var(--primary-dark); }

/* === QUICK FILTERS === */
.quick-filters {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.quick-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.quick-filters a {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}

.quick-filters a:hover {
    background: rgba(255,255,255,0.25);
    text-decoration: none;
    transform: translateY(-1px);
}

/* === STATS BAR === */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === SECTION HEADERS === */
section.container {
    padding: 3.5rem 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.875rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.count {
    color: var(--muted);
    font-weight: 600;
    font-size: 1.25rem;
}

.see-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* === VIEW TOGGLE === */
.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--bg);
    padding: 0.25rem;
    border-radius: 8px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.2s;
}

.view-btn.active {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* === JOBS LAYOUT === */
.jobs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
}

.filters-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.filters-sidebar h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.95rem;
}

.filter-group input { cursor: pointer; }

.btn-block { width: 100%; margin-top: 1rem; }

.jobs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.jobs-list.list-view {
    grid-template-columns: 1fr;
}

/* === JOB CARDS === */
.job-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    text-decoration: none;
}

.job-card.featured {
    border-left: 4px solid var(--accent);
}

.job-card.premium {
    border-left: 4px solid var(--primary);
    background: linear-gradient(180deg, #fffbf0 0%, white 30%);
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.tier-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-free { background: var(--bg); color: var(--text-light); }
.tier-featured { background: var(--accent); color: var(--text); }
.tier-premium { background: var(--primary); color: white; }

.job-card h3 {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.3;
}

.job-card h3 a { color: var(--text); text-decoration: none; }
.job-card h3 a:hover { color: var(--primary); }

.company {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.trade {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg);
    color: var(--text);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.salary-badge {
    background: #ecfdf5;
    color: #065f46;
    border-color: #d1fae5;
    font-weight: 600;
}

.job-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.job-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.job-date {
    color: var(--muted);
    font-size: 0.85rem;
}

.apply-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary:hover { background: var(--primary-dark); text-decoration: none; transform: translateY(-1px); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* === EMPTY STATE === */
.empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.empty p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--bg-alt);
    padding: 5rem 0;
    margin-top: 2rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.how-it-works .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius);
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.85rem;
}

/* === NEWSLETTER CTA === */
.newsletter-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-cta h2 {
    color: white;
}

.newsletter-cta > .container > p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0.5rem 0 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    background: var(--accent);
    color: var(--text);
    font-weight: 700;
}

.newsletter-form button:hover {
    background: #ffed4e;
}

.newsletter-cta .muted {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* === CTA EMPLOYER === */
.cta-employer {
    background: var(--bg-alt);
    padding: 5rem 0;
}

.cta-employer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-employer h2 { margin-bottom: 1rem; }

.cta-employer p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1.05rem;
}

.cta-stats {
    display: grid;
    gap: 1.5rem;
}

.cta-stat {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cta-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.cta-stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === FOOTER === */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social {
    display: flex;
    gap: 0.5rem;
}

.social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social a:hover {
    background: var(--primary);
    text-decoration: none;
}

footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer a {
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer a:hover { color: white; text-decoration: none; }

footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.85rem;
}

/* === FORM STYLES === */
.form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--text);
    transition: all 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

textarea { resize: vertical; min-height: 120px; }

.tier-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.tier-option {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    text-align: center;
}

.tier-option input { display: none; }

.tier-option strong { display: block; margin-bottom: 0.25rem; }
.tier-option span { color: var(--muted); font-size: 0.85rem; }

.tier-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-weight: 500;
}

.back:hover { color: var(--primary); text-decoration: none; }

/* === JOB DETAIL === */
.job-detail {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.job-detail.featured { border-top: 4px solid var(--accent); }
.job-detail.premium { border-top: 4px solid var(--primary); }

.job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.job-detail-header > div:first-child {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.job-detail-header .company-logo {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.job-detail-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.company-large { color: var(--text-light); font-size: 1.1rem; font-weight: 500; }

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.job-description {
    margin: 2rem 0;
    line-height: 1.8;
    white-space: pre-line;
    color: var(--text-light);
}

.apply-section {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.muted { color: var(--muted); font-size: 0.9rem; }

.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.share-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.share-whatsapp { background: #25D366; }
.share-facebook { background: #1877F2; }
.share-telegram { background: #0088cc; }
.share-copy { background: var(--text); }

.thanks {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: var(--shadow);
}

.thanks h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.thanks p { margin-bottom: 1.5rem; color: var(--text-light); }

/* === ADMIN === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.admin-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.admin-table th, .admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: var(--bg-alt); }

/* === COMPANIES === */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.company-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
    text-decoration: none;
}

.company-card h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.company-card p { margin: 0; font-size: 0.85rem; }

.company-card .company-logo {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* === SALARIES === */
.salary-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.salary-header, .salary-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
}

.salary-header {
    background: var(--text);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-row {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.salary-row:hover { background: var(--bg-alt); }
.salary-row:last-child { border-bottom: none; }

.salary-avg {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.salary-info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.salary-info h2 { margin-bottom: 1rem; }
.salary-info p { color: var(--text-light); line-height: 1.7; }

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fffbf0 0%, white 50%);
}

.pricing-card.premium {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-light) 0%, white 50%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-badge.premium { background: var(--primary); color: white; }

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price { color: var(--primary); }
.price-period {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === ABOUT === */
.about .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 1rem 0 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-stat {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    text-align: center;
}

.about-stat .num {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.about-stat {
    font-size: 0.9rem;
    opacity: 0.95;
}

.about h2 { margin-top: 2rem; margin-bottom: 1rem; }
.about p { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }

/* === LEGAL === */
.legal h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.legal p { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }

/* === EMPLOYER === */
.employer-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-light);
    text-decoration: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero h1 { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .search-bar { grid-template-columns: 1fr; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .steps, .testimonials-grid, .footer-grid, .cta-employer-content, .jobs-layout, .form-row, .tier-options, .stats-grid, .pricing-grid, .about-stats, .benefits-grid, .salary-header, .salary-row {
        grid-template-columns: 1fr;
    }
    .filters-sidebar { position: static; }
    .job-detail, .form { padding: 1.5rem; }
    .job-detail-header { flex-direction: column; }
    nav { gap: 0.75rem; }
    nav a { font-size: 0.85rem; }
    .logo-text { font-size: 1.1rem; }
    .quick-filters { font-size: 0.85rem; }
    section.container { padding: 2.5rem 1.5rem; }
}
