/* ===== MYSTRO EMPLOYMENT SERVICES - GLOBAL STYLES ===== */

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

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

:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --blue: #1a4bbd;
  --blue-light: #2563eb;
  --cyan: #06b6d4;
  --accent: #00c4f4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue-light); color: var(--white); border-color: var(--blue-light); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--blue-light); border-color: var(--blue-light); }
.btn-outline-dark:hover { background: var(--blue-light); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* BADGES */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-blue { background: #dbeafe; color: var(--blue); }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-orange { background: #ffedd5; color: #ea580c; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }
.badge-purple { background: #ede9fe; color: #7c3aed; }

/* SECTION HEADERS */
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--blue-light); }
.section-subtitle { font-size: 17px; color: var(--gray-600); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 80px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy-mid); padding: 20px 24px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); padding: 12px 16px; border-radius: 8px; font-weight: 500; transition: var(--transition); }
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-menu .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0c2451 100%);
  padding: 160px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 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.02'%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 { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,196,244,0.15); border: 1px solid rgba(0,196,244,0.3);
  color: var(--accent); padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 28px;
}
.hero-badge::before { content: '🌍'; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 580px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat {}
.hero-stat-number { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-number span { color: var(--accent); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* SEARCH BOX */
.search-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 8px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch;
  box-shadow: var(--shadow-lg); margin-bottom: 48px; max-width: 780px;
}
.search-field { display: flex; align-items: center; flex: 1; min-width: 160px; gap: 10px; padding: 10px 16px; }
.search-field-icon { color: var(--gray-400); font-size: 18px; flex-shrink: 0; }
.search-field input, .search-field select {
  border: none; outline: none; font-size: 15px; color: var(--text);
  background: transparent; width: 100%; min-width: 0;
}
.search-field select { cursor: pointer; }
.search-divider { width: 1px; background: var(--gray-200); align-self: stretch; margin: 6px 0; }
.search-box .btn { flex-shrink: 0; border-radius: 8px; }

/* QUICK LINKS */
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.quick-link-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-right: 4px; }
.quick-link {
  font-size: 13px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08);
  padding: 5px 14px; border-radius: 20px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.quick-link:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ===== INDUSTRY STRIPS ===== */
.industries { background: var(--gray-50); padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.industries-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.industry-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 12px 22px; border-radius: 40px;
  font-size: 14px; font-weight: 500; color: var(--gray-800);
  cursor: pointer; transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.industry-pill:hover { border-color: var(--blue-light); color: var(--blue-light); box-shadow: 0 4px 16px rgba(37,99,235,0.15); transform: translateY(-2px); }
.industry-pill-icon { font-size: 20px; }

/* ===== JOB CARDS ===== */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.job-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition); cursor: pointer; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.job-card:hover { border-color: var(--blue-light); box-shadow: 0 8px 32px rgba(37,99,235,0.12); transform: translateY(-3px); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.job-company-logo {
  width: 52px; height: 52px; border-radius: 12px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.job-card-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.job-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.job-title:hover { color: var(--blue-light); }
.job-company { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; font-weight: 500; }
.job-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-600); }
.job-meta-item svg { flex-shrink: 0; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.job-tag { font-size: 12px; background: var(--gray-100); color: var(--gray-600); padding: 4px 10px; border-radius: 6px; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-100); gap: 8px; }
/* Share button */
.job-share-btn {
  display: flex; align-items: center; gap: 5px; position: relative;
  background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-600);
  border-radius: 6px; padding: 5px 10px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.job-share-btn:hover { background: var(--blue-light); border-color: var(--blue-light); color: white; }
.share-toast {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #0a1628; color: white; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 6px; white-space: nowrap; z-index: 999;
  pointer-events: none; animation: fadeInUp 0.15s ease;
}
.share-toast::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: #0a1628;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateX(-50%) translateY(4px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.job-salary { font-size: 15px; font-weight: 700; color: var(--navy); }
.job-date { font-size: 12px; color: var(--gray-400); }
.job-featured-banner {
  position: absolute; top: -1px; left: 20px;
  background: var(--blue-light); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ===== FILTERS (JOBS PAGE) ===== */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-title { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue-light); cursor: pointer; }
.filter-option label { font-size: 14px; color: var(--gray-600); cursor: pointer; flex: 1; }
.filter-option span { font-size: 12px; color: var(--gray-400); background: var(--gray-100); padding: 2px 8px; border-radius: 10px; }
.filter-input { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 14px; outline: none; color: var(--text); }
.filter-input:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

.jobs-main {}
.jobs-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.jobs-count { font-size: 15px; color: var(--gray-600); }
.jobs-count strong { color: var(--navy); }
.jobs-sort { display: flex; align-items: center; gap: 8px; }
.jobs-sort select { border: 1px solid var(--gray-200); border-radius: 8px; padding: 8px 14px; font-size: 14px; outline: none; color: var(--text); background: var(--white); cursor: pointer; }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--gray-200);
  background: var(--white); cursor: pointer; font-size: 14px; font-weight: 500;
  color: var(--gray-600); transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--blue-light); color: var(--blue-light); }
.page-btn.active { background: var(--blue-light); border-color: var(--blue-light); color: var(--white); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); text-align: center;
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.service-icon.blue { background: #dbeafe; }
.service-icon.cyan { background: #cffafe; }
.service-icon.green { background: #dcfce7; }
.service-icon.purple { background: #ede9fe; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ===== GLOBAL REACH ===== */
.global { background: linear-gradient(135deg, var(--navy) 0%, #0c2451 100%); color: var(--white); }
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.global-content .section-title { color: var(--white); }
.global-content .section-label { color: var(--accent); }
.global-content p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.global-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.global-stat-box {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.global-stat-box .number { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.global-stat-box .label { font-size: 13px; color: rgba(255,255,255,0.65); }
.global-map { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: center; }
.globe-visual { font-size: 120px; text-align: center; line-height: 1; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; position: relative; }
.step { text-align: center; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; background: var(--blue-light);
  color: var(--white); font-size: 22px; font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-stars { font-size: 18px; margin-bottom: 16px; color: #f59e0b; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  color: var(--white); text-align: center; padding: 80px 0;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===== CONTACT / APPLY FORM ===== */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 8px;
  font-size: 14px; color: var(--text); outline: none; transition: var(--transition);
  background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-required { color: #ef4444; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 12px; color: var(--gray-500); margin-top: 10px; line-height: 1.5; }
.form-note code { background: #f1f5f9; padding: 1px 5px; border-radius: 4px; font-size: 11px; color: var(--navy); }
.form-success {
  display: none; background: #dcfce7; border: 1px solid #bbf7d0;
  color: #15803d; padding: 20px 24px; border-radius: var(--radius); margin-top: 24px;
  font-weight: 500; text-align: center;
}
.form-success.show { display: block; }

/* FILE UPLOAD */
.file-upload-area {
  border: 2px dashed var(--gray-200); border-radius: 8px; padding: 24px;
  text-align: center; cursor: pointer; transition: var(--transition);
  background: var(--gray-50);
}
.file-upload-area:hover { border-color: var(--blue-light); background: #eff6ff; }
.file-upload-area p { font-size: 14px; color: var(--gray-600); margin-top: 8px; }
.file-upload-area span { font-size: 12px; color: var(--gray-400); }
.file-upload-area input { display: none; }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--navy), #0c2451); color: var(--white); padding: 140px 0 80px; }
.about-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.value-card { text-align: center; padding: 36px 24px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700;
  color: var(--white); margin: 0 auto 16px;
}
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--gray-600); }

/* ===== EMPLOYERS PAGE ===== */
.employers-hero { background: linear-gradient(135deg, var(--navy), #0c2451); color: var(--white); padding: 140px 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); position: relative; text-align: center;
}
.pricing-card.featured { border-color: var(--blue-light); box-shadow: 0 8px 40px rgba(37,99,235,0.15); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue-light); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 16px; }
.pricing-price { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.pricing-period { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); }
.pricing-feature::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-hero { background: linear-gradient(135deg, var(--navy), #0c2451); color: var(--white); padding: 140px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 18px; }
.contact-info-icon { width: 52px; height: 52px; border-radius: 14px; background: #dbeafe; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand {}
.footer-brand img { height: 72px; width: auto; margin-bottom: 20px; object-fit: contain; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: var(--transition); color: rgba(255,255,255,0.8);
}
.social-link:hover { background: var(--blue-light); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* PAGE HERO INNER */
.page-hero { background: linear-gradient(135deg, var(--navy), #0c2451); color: var(--white); padding: 140px 0 80px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 580px; line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ALERT / INFO BOXES */
.info-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; }
.info-box-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-box p { font-size: 14px; color: var(--blue); line-height: 1.6; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto; padding: 48px; position: relative;
}
.modal-close {
  position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
  border-radius: 8px; border: 1px solid var(--gray-200); background: var(--white);
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--gray-600);
}
.modal-close:hover { background: var(--gray-100); }
.modal h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal-subtitle { font-size: 14px; color: var(--gray-600); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .jobs-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .global-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .search-box { flex-direction: column; }
  .search-divider { width: auto; height: 1px; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .global-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
