/* ============================================
   V3bridge.com — Corporate Styles
   CSS v4 · System-UI Stack · Mobile-First
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --brand-navy: #0a1628;
  --brand-dark: #0d2137;
  --brand-blue: #1a5276;
  --brand-mid: #2980b9;
  --brand-cyan: #00b4d8;
  --brand-light: #90e0ef;
  --brand-accent: #f0a500;
  --brand-accent-hover: #d49000;
  --brand-white: #ffffff;
  --brand-offwhite: #f4f7fa;
  --brand-gray: #6b7b8d;
  --brand-gray-light: #dce4ec;
  --brand-success: #27ae60;
  --brand-danger: #e74c3c;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-light: #ffffff;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-xl: 0 16px 48px rgba(10,22,40,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --container-narrow: 900px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--brand-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--brand-accent);
  color: var(--brand-navy);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--brand-white);
  border: 2px solid var(--brand-white);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--brand-white);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--brand-mid);
  color: var(--brand-white);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-navy);
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--container-max);
  margin-inline: auto;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-logo span {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-white);
  letter-spacing: -0.5px;
}

.nav-logo .logo-v3 {
  color: var(--brand-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--brand-white);
  background: rgba(255,255,255,0.08);
}

.nav-links .nav-cta {
  background: var(--brand-accent);
  color: var(--brand-navy);
  font-weight: 700;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--brand-accent-hover);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--brand-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 40%, var(--brand-blue) 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--text-light);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--brand-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--brand-accent);
}

.hero-subtext {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  max-width: 480px;
}

.hero-trust .trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(39,174,96,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-trust p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 380px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  color: var(--brand-white);
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-accent);
  display: block;
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  display: block;
}

/* --- Section Common --- */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--brand-offwhite);
}

.section--dark {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-mid);
  margin-bottom: 12px;
}

.section--dark .section-label {
  color: var(--brand-cyan);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* --- What We Do --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-gray-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(26,82,118,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-mid), var(--brand-accent));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-white);
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
  border: 4px solid var(--brand-white);
}

.section--alt .step-num {
  border-color: var(--brand-offwhite);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin-inline: auto;
}

/* --- Roles Section --- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.role-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.role-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.role-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.role-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-white);
}

/* --- Post a Job Form --- */
.form-container {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 48px 40px;
  max-width: 860px;
  margin-inline: auto;
}

.form-container h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

.form-container > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--brand-danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--brand-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--brand-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px 14px;
  border: 1.5px solid var(--brand-gray-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 500;
}

.checkbox-label:hover {
  border-color: var(--brand-mid);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  width: auto;
  padding: 0;
  accent-color: var(--brand-mid);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn--reset {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--brand-gray-light);
}

.btn--reset:hover {
  background: var(--brand-offwhite);
  border-color: var(--brand-gray);
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.form-success h3 {
  color: var(--brand-success);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-secondary);
}

/* --- Offshore Support --- */
.offshore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.offshore-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

.offshore-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.75;
}

.offshore-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.offshore-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--brand-offwhite);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-cyan);
}

.offshore-item-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
}

.offshore-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.offshore-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.offshore-cta {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--brand-white);
  text-align: center;
}

.offshore-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.offshore-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-gray-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(26,82,118,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--brand-mid);
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--brand-cyan);
}

/* --- Job Display Page --- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  padding: 48px 0;
  text-align: center;
  color: var(--brand-white);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--brand-white);
}

.breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

/* Job Cards Grid */
.jobs-section {
  padding: 60px 0 80px;
  background: var(--brand-offwhite);
  min-height: 50vh;
}

.jobs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.jobs-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.jobs-count strong {
  color: var(--text-primary);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-gray-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-mid));
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-mid);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}

.job-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
  flex: 1;
}

.job-date {
  font-size: 0.78rem;
  color: var(--brand-gray);
  white-space: nowrap;
  background: var(--brand-offwhite);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.job-meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--brand-offwhite);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.job-tag .tag-icon {
  font-size: 0.9rem;
}

.job-skills {
  margin-top: 4px;
}

.job-skills-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-gray);
  margin-bottom: 8px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-pill {
  font-size: 0.78rem;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(26,82,118,0.08));
  color: var(--brand-blue);
  border-radius: 50px;
  font-weight: 600;
}

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

.job-type-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--fulltime {
  background: rgba(39,174,96,0.1);
  color: var(--brand-success);
}

.badge--parttime {
  background: rgba(41,128,185,0.1);
  color: var(--brand-mid);
}

.badge--hourly {
  background: rgba(240,165,0,0.12);
  color: #b87d00;
}

.job-apply-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-mid);
  transition: color var(--transition);
}

.job-apply-link:hover {
  color: var(--brand-blue);
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-subtext {
    margin-inline: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust {
    margin-inline: auto;
  }
  .hero-stats {
    margin-inline: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid::before {
    display: none;
  }
  .offshore-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }
  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding: 50px 0 60px;
  }
  .section {
    padding: 56px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .nav-toggle {
    display: none;
  }
  .hero {
    background: none;
    color: #000;
    padding: 20px 0;
  }
  .section--dark {
    background: none;
    color: #000;
  }
}
