@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

:root {
  --primary: #1e293b;
  --primary-light: #1e40af;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-band: #f1f5f9;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid #e2e8f0; padding: 0 2rem; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--accent); color: var(--white); padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-size: 0.95rem; }
.nav-cta:hover { background: var(--accent-hover); transform: scale(1.02); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('hero-bg.png') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.88), rgba(30,64,175,0.82)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero h1 { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--accent); }
.hero h2 { font-size: 1.25rem; font-weight: 400; color: #cbd5e1; line-height: 1.6; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-solid { background: var(--accent); color: var(--white); padding: 0.9rem 2rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-solid:hover { background: var(--accent-hover); transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--white); padding: 0.9rem 2rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--white); transition: all 0.2s; cursor: pointer; }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: scale(1.02); }

/* TRUST BAND */
.trust-band { background: var(--bg-band); padding: 3rem 2rem; }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.metrics { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.metric { text-align: center; }
.metric .num { font-size: 2.8rem; font-weight: 900; color: var(--primary-light); }
.metric .label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; margin-top: 0.25rem; }
.logos-title { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; opacity: 0.5; }
.logo-row span { font-size: 1.3rem; font-weight: 800; color: var(--primary); letter-spacing: 1px; }

/* MARKETPLACE */
.marketplace { padding: 5rem 2rem; background: var(--bg); }
.marketplace .section-title { text-align: center; font-size: 2.2rem; font-weight: 800; margin-bottom: 0.75rem; }
.marketplace .section-sub { text-align: center; color: var(--text-light); font-size: 1.05rem; margin-bottom: 3rem; }
.market-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.market-card { background: var(--bg-alt); border: 1px solid #e2e8f0; border-radius: 16px; padding: 2.5rem; transition: all 0.3s; }
.market-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.market-card .icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.market-card.employer .icon { background: #dbeafe; color: var(--primary-light); }
.market-card.employee .icon { background: #fef3c7; color: #b45309; }
.market-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.market-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.market-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }
.market-card li svg { flex-shrink: 0; margin-top: 3px; }

/* COMPLIANCE */
.compliance { background: var(--primary); padding: 5rem 2rem; }
.compliance .section-title { text-align: center; font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.compliance .section-sub { text-align: center; color: #94a3b8; font-size: 1.05rem; margin-bottom: 3rem; }
.comp-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.comp-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 2rem; transition: all 0.3s; }
.comp-card:hover { background: rgba(255,255,255,0.1); }
.comp-card .icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(245,158,11,0.15); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.comp-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.comp-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }

/* ABOUT */
.about { padding: 5rem 2rem; background: var(--bg); }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: 16px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--text-light); line-height: 1.8; font-size: 1rem; margin-bottom: 1rem; }
.about-text .highlight { color: var(--accent); font-weight: 700; }

/* CONTACT */
.contact { padding: 5rem 2rem; background: var(--bg-alt); }
.contact .section-title { text-align: center; font-size: 2.2rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact .section-sub { text-align: center; color: var(--text-light); margin-bottom: 3rem; }
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: 10px; background: #dbeafe; color: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ci-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.contact-item .ci-value { font-size: 0.95rem; color: var(--text); font-weight: 500; margin-top: 2px; }
.contact-form { background: var(--white); padding: 2rem; border-radius: 16px; border: 1px solid #e2e8f0; }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input, .form-group select { width: 100%; padding: 0.7rem 1rem; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(30,64,175,0.1); }
.form-submit { width: 100%; padding: 0.85rem; background: var(--accent); color: var(--white); border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.form-submit:hover { background: var(--accent-hover); transform: scale(1.02); }

/* FOOTER */
.footer { background: var(--primary); padding: 2rem; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer p { color: #64748b; font-size: 0.8rem; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Small laptops & landscape tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .metrics { gap: 3rem; }
  .market-grid, .comp-grid { max-width: 100%; }
  .about-inner, .contact-grid { max-width: 100%; }
  .nav { padding: 0 1.5rem; }
}

/* Tablets portrait (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 2rem; gap: 1.5rem; transform: translateY(-120%); transition: transform 0.3s ease; border-bottom: 1px solid #e2e8f0; z-index: 99; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero h2 { font-size: 1.1rem; }
  .hero-content { padding: 1.5rem; }
  .metrics { gap: 2rem; }
  .metric .num { font-size: 2.2rem; }
  .market-grid, .comp-grid, .about-inner, .contact-grid { grid-template-columns: 1fr; }
  .marketplace, .compliance, .about, .contact { padding: 3.5rem 1.5rem; }
  .marketplace .section-title, .compliance .section-title, .contact .section-title { font-size: 1.8rem; }
  .about-text h2 { font-size: 1.7rem; }
  .logo-row { gap: 1.5rem; }
  .logo-row span { font-size: 1rem; }
  .about-img img { max-height: 350px; }
}

/* Large phones / phablets (max-width: 640px) */
@media (max-width: 640px) {
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.1rem; }
  .hero h2 { font-size: 1rem; margin-bottom: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-solid, .btn-outline { width: 80%; text-align: center; padding: 0.85rem 1.5rem; }
  .trust-band { padding: 2.5rem 1.25rem; }
  .metrics { gap: 1rem; }
  .metric { min-width: 45%; }
  .metric .num { font-size: 2rem; }
  .metric .label { font-size: 0.8rem; }
  .market-card { padding: 2rem 1.5rem; }
  .comp-card { padding: 1.5rem; }
  .comp-grid { gap: 1rem; }
  .contact-form { padding: 1.5rem; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
}

/* Regular phones (max-width: 480px) */
@media (max-width: 480px) {
  .nav { padding: 0 1rem; }
  .nav-inner { height: 64px; }
  .nav-logo-img { height: 44px; }
  .nav-links { top: 64px; }
  .hero { min-height: 70vh; padding: 0; }
  .hero h1 { font-size: 1.8rem; line-height: 1.15; }
  .hero h2 { font-size: 0.95rem; line-height: 1.5; }
  .hero-content { padding: 1rem; }
  .btn-solid, .btn-outline { width: 100%; font-size: 0.95rem; }
  .marketplace, .compliance, .about, .contact { padding: 3rem 1rem; }
  .marketplace .section-title, .compliance .section-title, .contact .section-title { font-size: 1.5rem; }
  .marketplace .section-sub, .compliance .section-sub, .contact .section-sub { font-size: 0.9rem; }
  .market-card h3 { font-size: 1.2rem; }
  .market-card li { font-size: 0.9rem; }
  .comp-card h3 { font-size: 1.05rem; }
  .comp-card p { font-size: 0.85rem; }
  .about-text h2 { font-size: 1.5rem; }
  .about-text p { font-size: 0.9rem; }
  .about-img img { max-height: 280px; }
  .contact-info h3, .contact-form h3 { font-size: 1.15rem; }
  .form-group input, .form-group select { padding: 0.65rem 0.85rem; font-size: 0.9rem; }
  .logo-row span { font-size: 0.85rem; }
  .logo-row { gap: 1rem; }
}

/* Small phones (max-width: 375px) — iPhone SE, Galaxy S series */
@media (max-width: 375px) {
  .hero h1 { font-size: 1.55rem; }
  .hero h2 { font-size: 0.88rem; }
  .metric { min-width: 42%; }
  .metric .num { font-size: 1.7rem; }
  .marketplace .section-title, .compliance .section-title, .contact .section-title { font-size: 1.35rem; }
  .market-card { padding: 1.5rem 1.2rem; }
  .comp-card { padding: 1.25rem 1rem; }
  .nav-logo-img { height: 40px; }
}

/* Very small phones (max-width: 320px) — iPhone 5/SE 1st gen */
@media (max-width: 320px) {
  .hero h1 { font-size: 1.4rem; }
  .hero h2 { font-size: 0.82rem; }
  .metric .num { font-size: 1.5rem; }
  .metric .label { font-size: 0.75rem; }
  .btn-solid, .btn-outline { padding: 0.75rem 1rem; font-size: 0.88rem; }
  .nav-logo-img { height: 36px; }
}

/* iOS Safe Areas — notch handling for iPhone X+ */
@supports (padding: env(safe-area-inset-top)) {
  .nav { padding-top: env(safe-area-inset-top); padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
  .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .hero { padding-top: env(safe-area-inset-top); }
}

/* Touch-friendly tap targets for mobile */
@media (pointer: coarse) {
  .nav-links a { padding: 0.5rem 0; min-height: 44px; display: flex; align-items: center; }
  .btn-solid, .btn-outline { min-height: 48px; }
  .form-group input, .form-group select { min-height: 48px; }
  .form-submit { min-height: 50px; }
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
  .contact-item .ci-icon { width: 48px; height: 48px; }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 3rem 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero h2 { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .metrics { gap: 2rem; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .market-card:hover { transform: none; }
  .btn-solid:hover, .btn-outline:hover, .nav-cta:hover, .form-submit:hover { transform: none; }
}

/* ========== HIRE WIZARD STYLES ========== */

.page-header { background-color: var(--primary); color: white; padding: 6rem 2rem 4rem; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; color: #cbd5e1; max-width: 600px; margin: 0 auto; }

.wizard-section { padding: 4rem 2rem; background-color: var(--bg); min-height: 60vh; }
.wizard-container { max-width: 900px; margin: 0 auto; background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); padding: 2rem; }

/* Stepper */
.stepper { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; padding: 0 1rem; overflow-x: auto; scrollbar-width: none; }
.stepper::-webkit-scrollbar { display: none; }
.step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; z-index: 2; min-width: 80px; }
.step-circle { width: 40px; height: 40px; border-radius: 50%; background-color: #f1f5f9; color: #64748b; display: flex; align-items: center; justify-content: center; font-weight: 600; border: 2px solid #e2e8f0; transition: all 0.3s; }
.step-label { font-size: 0.85rem; font-weight: 500; color: #64748b; transition: all 0.3s; }
.step.active .step-circle { background-color: var(--primary); color: white; border-color: var(--primary); }
.step.active .step-label { color: var(--primary); font-weight: 600; }
.step.completed .step-circle { background-color: var(--secondary); color: white; border-color: var(--secondary); }
.step-line { flex-grow: 1; height: 2px; background-color: #e2e8f0; margin: 0 -30px 25px -30px; position: relative; z-index: 1; min-width: 30px; }
.step.completed + .step-line { background-color: var(--secondary); }

/* Form Steps */
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.step-header { margin-bottom: 2rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 1rem; }
.step-header h2 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.step-header p { color: var(--text-light); font-size: 0.95rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.form-group.full-width { grid-column: 1 / -1; }
.subsection-title { font-size: 1.1rem; color: var(--primary); margin-top: 1rem; border-bottom: 1px dashed #cbd5e1; padding-bottom: 0.5rem; }

.required { color: #ef4444; }

/* Inputs */
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; font-size: 1rem; transition: border-color 0.2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1); }
.form-group input.error, .form-group select.error { border-color: #ef4444; background-color: #fef2f2; }

.input-with-icon { position: relative; }
.input-with-icon .icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #64748b; font-weight: 500; }
.input-with-icon input { padding-left: 2.5rem; }

.file-upload input { padding: 0.5rem; border: 1px dashed #cbd5e1; background: #f8fafc; cursor: pointer; }

/* Actions */
.form-actions { display: flex; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }
.form-actions.right { justify-content: flex-end; }
.form-actions.split { justify-content: space-between; }
.form-actions button { padding: 0.75rem 2rem; font-size: 1rem; }

/* Success */
.success-message { display: none; text-align: center; padding: 3rem 1rem; }
.success-message svg { margin: 0 auto 1.5rem; }
.success-message h3 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem; }
.success-message p { color: var(--text-light); font-size: 1.1rem; max-width: 400px; margin: 0 auto; }

/* Mobile Wizard */
@media (max-width: 768px) {
  .wizard-container { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stepper { padding: 0; }
  .step-label { display: none; } /* Hide text on mobile */
  .step-line { margin: 0 -15px; /* ========== GET HIRED DASHBOARD STYLES ========== */

.dashboard-bg { background-color: #f8fafc; min-height: 100vh; }
.dash-header { background-color: var(--primary); padding: 7rem 2rem 3rem; color: white; }
.dash-header-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.dash-title h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.dash-title p { color: #cbd5e1; font-size: 1.05rem; }
.user-badge { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.1); padding: 0.75rem 1.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.user-avatar { width: 44px; height: 44px; background: var(--secondary); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; font-size: 1.2rem; }
.user-info { display: flex; flex-direction: column; }
.user-name { font-weight: 600; font-size: 1rem; }
.user-id { font-size: 0.8rem; color: #cbd5e1; }

.dash-container { max-width: 1200px; margin: -2rem auto 4rem; padding: 0 2rem; position: relative; z-index: 10; display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

/* Cards */
.dash-card { background: white; border-radius: 12px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01); padding: 2rem; border: 1px solid #e2e8f0; margin-bottom: 2rem; }
.dash-card-title { font-size: 1.3rem; color: var(--primary); font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }

/* Job Search Widget */
.job-search-wrapper { display: flex; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; margin-bottom: 1.5rem; transition: border-color 0.2s; }
.job-search-wrapper:focus-within { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }
.search-icon-box { padding: 1rem; color: #64748b; display: flex; align-items: center; }
.job-search-input { flex-grow: 1; border: none; background: transparent; padding: 1rem 0; font-size: 1.05rem; color: var(--primary); outline: none; }
.job-search-btn { background: var(--secondary); color: white; border: none; padding: 0 1.5rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.job-search-btn:hover { background: #d97706; }

/* Action Grid */
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.action-btn { background: white; border: 1px solid #e2e8f0; border-radius: 8px; padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; cursor: pointer; transition: all 0.2s ease; color: var(--primary); font-weight: 500; font-size: 0.95rem; }
.action-btn:hover { border-color: var(--secondary); transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.action-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; justify-content: center; align-items: center; background: #f8fafc; color: var(--primary); transition: all 0.2s ease; }
.action-btn:hover .action-icon { background: var(--secondary); color: white; }

/* Status Widget */
.status-list { display: flex; flex-direction: column; gap: 1rem; }
.status-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 8px; border: 1px solid #e2e8f0; background: #f8fafc; }
.status-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.status-icon.verified { background: #dcfce7; color: #16a34a; }
.status-icon.pending { background: #fef3c7; color: #d97706; }
.status-icon.info { background: #e0e7ff; color: #4f46e5; }
.status-text h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.25rem; font-weight: 600; }
.status-text p { font-size: 0.85rem; font-weight: 500; }
.status-text p.verified { color: #16a34a; }
.status-text p.pending { color: #d97706; }
.status-text p.info { color: #4f46e5; }

/* Mobile Adjustments */
@media (max-width: 992px) {
  .dash-container { grid-template-columns: 1fr; margin-top: 2rem; padding: 0 1.5rem; }
  .dash-header-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .job-search-wrapper { flex-direction: column; }
  .job-search-btn { padding: 1rem; }
  .search-icon-box { display: none; }
  .job-search-input { padding: 1rem; }
}
  .page-header { padding: 5rem 1rem 3rem; }
}
