/* ============================================
   HEALTHBRIDGE STAFFING — style.css
   ============================================
   1.  Variables & Reset
   2.  Base & Typography
   3.  Utilities
   4.  Navbar
   5.  Buttons
   6.  Page Transition
   7.  Scroll To Top
   8.  Hero Section
   9.  Page Hero Banner
   10. What We Do / Roles Grid
   11. How It Works / Steps
   12. Stats Strip
   13. Why Apply
   14. Screening Notice
   15. Resume Submit (Quick Form)
   16. Application CTA
   17. Contact Strip
   18. Footer
   19. About — Who We Are
   20. About — Core Values
   21. About — Recruit Grid
   22. About — Timeline
   23. About — Team Cards
   24. Roles — Filter Bar
   25. Roles — Role Categories & Cards
   26. Apply — Layout & Sidebar
   27. Apply — Progress Bar
   28. Apply — Form Steps & Float Labels
   29. Apply — Pill Radios & Checkboxes
   30. Apply — File Drop Zone
   31. Apply — Review Box
   32. Apply — Success State
   33. Contact — Info Cards
   34. Contact — Two Col Layout
   35. Contact — Tabs
   36. Contact — Map & Extras
   37. Contact — FAQ
   38. Scroll Reveal & Animations
   39. Media Queries — Fully Responsive
   ============================================ */

/* ============================================
   1. VARIABLES & RESET
   ============================================ */
:root {
  --primary:       #0A2540;
  --primary-mid:   #0d3560;
  --teal:          #2EC4B6;
  --teal-dark:     #22a99d;
  --teal-light:    #e6faf8;
  --bg:            #f4f8fb;
  --white:         #ffffff;
  --text:          #1A1A1A;
  --text-muted:    #6b7280;
  --border:        #e2e8f0;
  --orange:        #E67E22;
  --purple:        #8E44AD;
  --red:           #E74C3C;
  --green:         #27AE60;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 50px rgba(0,0,0,0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   50px;
  --font:          'Inter', sans-serif;
  --transition:    all 0.3s ease;
  --nav-h:         78px;
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img     { max-width: 100%; display: block; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
button  { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ============================================
   2. BASE & TYPOGRAPHY
   ============================================ */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem;    font-weight: 600; }
p  { color: var(--text-muted); font-size: 0.96rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--teal), #56e0d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.teal-text { color: var(--teal); }

/* ============================================
   3. UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 90px 0; }

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin: 0.4rem 0 0.6rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  justify-content: center;
}
.breadcrumb a    { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i    { font-size: 0.6rem; }
.breadcrumb span { color: var(--white); font-weight: 600; }

/* ============================================
   4. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 66px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}
.logo-icon {
  position: relative;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.logo-icon i:first-child { font-size: 1rem; color: var(--white); }
.logo-cross {
  position: absolute;
  top: 4px; right: 4px;
  font-size: 0.55rem !important;
  color: var(--teal) !important;
}
.logo span   { line-height: 1.2; }
.logo strong { font-weight: 800; }
.logo em     { font-style: normal; opacity: 0.75; font-size: 0.85em; }

.navbar.scrolled .logo { color: var(--primary); }
.navbar.scrolled .logo-icon { background: var(--teal-light); }
.navbar.scrolled .logo-icon i:first-child { color: var(--primary); }

.logo-light { color: var(--white) !important; }
.logo-light .logo-icon { background: rgba(255,255,255,0.15) !important; }
.logo-light .logo-icon i:first-child { color: var(--white) !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 3px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary); }

.nav-cta { font-size: 0.85rem !important; padding: 10px 20px !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(10,37,64,0.25);
}
.btn-primary:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,37,64,0.32);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(46,196,182,0.3);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,196,182,0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  background: rgba(10,37,64,0.04);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white-teal {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-full      { width: 100%; justify-content: center; }
.btn-step-full { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ============================================
   6. PAGE TRANSITION
   ============================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.page-transition.enter { opacity: 1; pointer-events: all; }

/* ============================================
   7. SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
}
.scroll-top.show  { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal); transform: translateY(-3px); }

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #071a30 0%, #0A2540 45%, #0d4f4a 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--teal);
}
.hero-circle.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-circle.c2 { width: 350px; height: 350px; bottom: -80px; left: -80px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,196,182,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,182,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 1.5rem 6rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46,196,182,0.12);
  border: 1px solid rgba(46,196,182,0.3);
  color: #7de8e0;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.hero-text h1    { color: var(--white); margin-bottom: 1.1rem; }
.hero-text > p   { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 500px; margin-bottom: 2rem; }
.hero-btns       { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.trust-item i  { color: var(--teal); font-size: 0.9rem; }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.hero-center-icon {
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-center-icon i { font-size: 5rem; color: rgba(255,255,255,0.2); }

.hero-card-main {
  position: absolute;
  top: 0; left: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hc-icon {
  width: 38px; height: 38px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-icon i        { color: var(--teal-dark); font-size: 1rem; }
.hc-header strong { display: block; font-size: 0.88rem; color: var(--text); }
.hc-header span   { font-size: 0.75rem; color: var(--text-muted); }
.hc-badge {
  margin-left: auto;
  background: rgba(46,196,182,0.1);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.hc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.hc-tags span {
  font-size: 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-card-mini {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  bottom: 60px; left: -10px;
}
.hero-card-mini.right { left: auto; right: -10px; bottom: 20px; }
.hero-card-mini i      { font-size: 1.5rem; color: var(--teal); }
.hero-card-mini strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); }
.hero-card-mini span   { font-size: 0.72rem; color: var(--text-muted); }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ============================================
   9. PAGE HERO BANNER
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #071a30 0%, #0A2540 50%, #0d4f4a 100%);
  padding: calc(var(--nav-h) + 3.5rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg      { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1      { color: var(--white); margin: 0.5rem 0 0.8rem; }
.page-hero > .container > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.page-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46,196,182,0.12);
  border: 1px solid rgba(46,196,182,0.28);
  color: #7de8e0;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ============================================
   10. WHAT WE DO / ROLES GRID
   ============================================ */
.what-we-do { background: var(--white); }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.role-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.role-card:hover::before { transform: scaleX(1); }

.role-icon {
  width: 54px; height: 54px;
  background: color-mix(in srgb, var(--rc) 10%, transparent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.role-icon i { font-size: 1.4rem; color: var(--rc); }
.role-card:hover .role-icon { transform: scale(1.1) rotate(5deg); }
.role-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.role-card p  { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }

.role-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.role-link:hover { gap: 0.7rem; }

/* ============================================
   11. HOW IT WORKS / STEPS
   ============================================ */
.how-it-works { background: var(--bg); }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.step-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.step-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.step-num {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0.5rem auto 1.1rem;
  transition: var(--transition);
}
.step-icon-wrap i { font-size: 1.5rem; color: var(--teal-dark); }
.step-item:hover .step-icon-wrap   { background: var(--primary); }
.step-item:hover .step-icon-wrap i { color: var(--white); }
.step-item h4 { margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.85rem; }
.step-arrow   { color: var(--teal); font-size: 1.3rem; }

/* ============================================
   12. STATS STRIP
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, #071a30, #0A2540);
  padding: 55px 0;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.strip-stat strong { font-size: 2.4rem; font-weight: 900; color: var(--white); }
.strip-stat span   { font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.strip-stat p      { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.strip-divider     { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ============================================
   13. WHY APPLY
   ============================================ */
.why-apply { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 5rem;
}

.why-text h2  { margin: 0.5rem 0 1rem; }
.why-text > p { margin-bottom: 1.5rem; }

.why-list { margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border: none; }
.why-check {
  width: 28px; height: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check i { font-size: 0.75rem; color: var(--teal-dark); }
.why-list li strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.why-list li p      { font-size: 0.85rem; }

.why-visual { position: relative; display: flex; justify-content: center; }
.why-img-box {
  width: 380px; height: 420px;
  background: linear-gradient(135deg, var(--teal-light), #d0f5f2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.why-img-box i { font-size: 9rem; color: var(--teal); opacity: 0.3; }

.why-card-float {
  position: absolute;
  bottom: -15px; right: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.why-card-float i      { font-size: 1.6rem; color: var(--orange); }
.why-card-float strong { display: block; font-size: 0.88rem; }
.why-card-float span   { font-size: 0.74rem; color: var(--text-muted); }

/* ============================================
   14. SCREENING NOTICE
   ============================================ */
.screening-notice {
  background: linear-gradient(135deg, #0A2540, #0d4a45);
  padding: 50px 0;
}
.screening-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.screening-icon {
  width: 60px; height: 60px;
  background: rgba(46,196,182,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.screening-icon i { font-size: 1.6rem; color: var(--teal); }
.screening-text   { flex: 1; min-width: 260px; }
.screening-text h3 { color: var(--white); margin-bottom: 0.4rem; }
.screening-text p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ============================================
   15. RESUME SUBMIT (QUICK FORM)
   ============================================ */
.resume-submit { background: var(--bg); }

.quick-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.quick-form   { display: block; }
.qf-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.qf-group     { display: flex; flex-direction: column; gap: 0.4rem; }
.qf-full      { margin-bottom: 1.2rem; }

.qf-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.qf-group input,
.qf-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.qf-group input:focus,
.qf-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.12);
}
.qf-group textarea { resize: vertical; }
.qf-error {
  font-size: 0.74rem;
  color: var(--red);
  display: none;
}
.qf-group.invalid input,
.qf-group.invalid .qf-file-wrap { border-color: var(--red) !important; }
.qf-group.invalid .qf-error { display: block; }

.qf-file-wrap {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bg);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.qf-file-wrap:hover { border-color: var(--teal); background: var(--teal-light); }
.qf-file-wrap i    { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }
.qf-file-wrap span { font-size: 0.83rem; color: var(--text-muted); }
.qf-file-wrap input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}

.qf-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  animation: fadeSlideIn 0.5s ease;
}
.qf-success.show { display: block; }
.qs-icon {
  width: 72px; height: 72px;
  background: rgba(46,196,182,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.qs-icon i     { font-size: 2.2rem; color: var(--teal); }
.qf-success h3 { margin-bottom: 0.6rem; }

/* ============================================
   16. APPLICATION CTA
   ============================================ */
.app-cta {
  background: linear-gradient(135deg, var(--primary), #0d4f4a);
  padding: 65px 0;
}
.app-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.app-cta-text h2 { color: var(--white); margin-bottom: 0.4rem; }
.app-cta-text p  { color: rgba(255,255,255,0.72); }

/* ============================================
   17. CONTACT STRIP
   ============================================ */
.contact-strip { background: var(--bg); }
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cs-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.cs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cs-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: var(--transition);
}
.cs-icon i { font-size: 1.4rem; color: var(--teal-dark); }
.cs-card:hover .cs-icon   { background: var(--primary); }
.cs-card:hover .cs-icon i { color: var(--white); }
.cs-card h4 { margin-bottom: 0.4rem; }
.cs-card p  { font-size: 0.86rem; margin-bottom: 0.75rem; }
.cs-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.cs-link:hover { gap: 0.7rem; }

/* ============================================
   18. FOOTER
   ============================================ */
.footer { background: #07192e; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
  line-height: 1.8;
}

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.footer-col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-contact li i   { color: var(--teal); font-size: 0.85rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact li a   { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-contact li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p   { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom div { display: flex; gap: 1.5rem; }
.footer-bottom a   { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================
   19. ABOUT — WHO WE ARE
   ============================================ */
.who-we-are { background: var(--white); }
.who-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 5rem;
}

.who-visual { position: relative; display: flex; justify-content: center; }
.who-img-box {
  width: 380px; height: 420px;
  background: linear-gradient(135deg, var(--teal-light), #c8f5f1);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.who-img-box i { font-size: 9rem; color: var(--teal); opacity: 0.3; }

.who-badge, .who-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.who-badge   { top: 20px; left: -15px; }
.who-badge-2 { bottom: 30px; right: -15px; }
.who-badge i, .who-badge-2 i       { font-size: 1.4rem; color: var(--teal); }
.who-badge strong, .who-badge-2 strong { display: block; font-size: 0.88rem; }
.who-badge span,   .who-badge-2 span   { font-size: 0.72rem; color: var(--text-muted); }

.who-text h2  { margin: 0.5rem 0 1rem; }
.who-text > p { margin-bottom: 1rem; }

.who-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.who-mini-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.who-mini-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.wmc-icon {
  width: 42px; height: 42px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wmc-icon i { font-size: 1.1rem; color: var(--c); }
.who-mini-card h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.who-mini-card p  { font-size: 0.85rem; }

/* ============================================
   20. ABOUT — CORE VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vc-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(10,37,64,0.05);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
}
.vc-icon {
  width: 52px; height: 52px;
  background: color-mix(in srgb, var(--vc) 10%, transparent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.vc-icon i { font-size: 1.3rem; color: var(--vc); }
.value-card:hover .vc-icon { transform: scale(1.1) rotate(6deg); }
.value-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.value-card p  { font-size: 0.87rem; line-height: 1.7; }

/* ============================================
   21. ABOUT — RECRUIT GRID
   ============================================ */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.recruit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  font-size: 0.87rem;
  font-weight: 500;
  transition: var(--transition);
}
.recruit-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal-light); }
.recruit-item i { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================
   22. ABOUT — TIMELINE
   ============================================ */
.timeline-section { background: var(--bg); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
}
.tl-dot {
  position: absolute;
  left: 50%; top: 20px;
  width: 14px; height: 14px;
  background: var(--teal);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--teal-light);
  z-index: 1;
}
.tl-content {
  width: 44%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tl-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tl-content.tl-left  { margin-right: auto; text-align: right; }
.tl-content.tl-right { margin-left: auto; }

.tl-year {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}
.tl-content h4 { margin-bottom: 0.35rem; }
.tl-content p  { font-size: 0.86rem; }

/* ============================================
   23. ABOUT — TEAM CARDS
   ============================================ */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card { height: 260px; perspective: 1000px; cursor: pointer; }
.tc-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}
.team-card:hover .tc-inner { transform: rotateY(180deg); }

.tc-front, .tc-back {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.8rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.tc-front { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.tc-back  { background: linear-gradient(135deg, var(--primary), #0d4f4a); transform: rotateY(180deg); }
.tc-back h4 { color: var(--white); margin-bottom: 0.5rem; }
.tc-back p  { color: rgba(255,255,255,0.8); font-size: 0.83rem; line-height: 1.6; margin-bottom: 0.9rem; }

.tc-avatar {
  width: 72px; height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.tc-avatar i   { font-size: 2rem; color: var(--teal-dark); }
.tc-front h4   { margin-bottom: 0.25rem; }
.tc-front span { font-size: 0.8rem; color: var(--teal-dark); font-weight: 500; }

.tc-social { display: flex; gap: 0.6rem; }
.tc-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}
.tc-social a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ============================================
   24. ROLES — FILTER BAR
   ============================================ */
.filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.83rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover  { border-color: var(--teal); color: var(--teal-dark); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ============================================
   25. ROLES — CATEGORIES & CARDS
   ============================================ */
.roles-listing { background: var(--bg); }

.role-category { margin-bottom: 4rem; opacity: 1; transition: opacity 0.3s ease; }
.role-category.hidden { display: none; }

.rcat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.rcat-icon {
  width: 52px; height: 52px;
  background: color-mix(in srgb, var(--rc) 12%, transparent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rcat-icon i    { font-size: 1.3rem; color: var(--rc); }
.rcat-header h2 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.rcat-header p  { font-size: 0.88rem; margin: 0; }

.role-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.role-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.role-listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }

.rlc-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.rlc-badge, .rlc-type { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); }
.rlc-badge.urgent { background: rgba(231,76,60,0.1);  color: var(--red); }
.rlc-badge.new    { background: rgba(46,196,182,0.1); color: var(--teal-dark); }
.rlc-type.remote  { background: rgba(10,37,64,0.08);  color: var(--primary); }
.rlc-type.onsite  { background: rgba(230,126,34,0.1); color: var(--orange); }
.rlc-type.hybrid  { background: rgba(142,68,173,0.1); color: var(--purple); }

.role-listing-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.rlc-company, .rlc-location {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.35rem;
  margin-bottom: 0.25rem;
}
.rlc-company i, .rlc-location i { color: var(--teal); font-size: 0.72rem; }

.rlc-meta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 0.7rem 0; }
.rlc-meta span { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.rlc-meta i    { color: var(--primary); font-size: 0.7rem; }
.rlc-tags      { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; margin-bottom: 0.5rem; }
.rlc-tags span {
  font-size: 0.68rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px 9px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   26. APPLY — LAYOUT & SIDEBAR
   ============================================ */
.apply-section { background: var(--bg); }
.apply-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.apply-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  display: flex; flex-direction: column;
  gap: 1.5rem;
}

.sidebar-block h3 { font-size: 0.92rem; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-block h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.75rem; }

.sidebar-benefits { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-benefits li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.83rem; font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-benefits li:last-child { border: none; }
.sidebar-benefits li i { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; }

.sidebar-step-list { display: flex; flex-direction: column; gap: 0.3rem; }
.sb-step {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid transparent;
}
.sb-step.active    { background: var(--teal-light); color: var(--teal-dark); border-color: rgba(46,196,182,0.25); font-weight: 700; }
.sb-step.completed { color: var(--green); }
.sb-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.sb-step.active .sb-num    { background: var(--teal);  color: var(--white); }
.sb-step.completed .sb-num { background: var(--green); color: var(--white); }

.sidebar-screening {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  border: 1px solid rgba(46,196,182,0.2);
}
.sidebar-screening i  { color: var(--teal-dark); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.sidebar-screening h4 { font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--primary); }
.sidebar-screening p  { font-size: 0.78rem; }

.sidebar-contact-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
}
.sidebar-contact-row i      { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-row strong { display: block; font-size: 0.82rem; color: var(--text); }
.sidebar-contact-row a,
.sidebar-contact-row span   { font-size: 0.78rem; color: var(--text-muted); }
.sidebar-contact-row a:hover { color: var(--teal); }

/* ============================================
   27. APPLY — PROGRESS BAR
   ============================================ */
.apply-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-notice {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(46,196,182,0.07);
  border: 1px solid rgba(46,196,182,0.2);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.8rem;
}
.form-notice i { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.form-notice p { font-size: 0.83rem; color: var(--text); }

.progress-wrap { margin-bottom: 2rem; }
.progress-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.prog-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.prog-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.prog-step.active    .prog-circle { background: var(--primary); color: var(--white); border-color: var(--primary); }
.prog-step.completed .prog-circle { background: var(--teal);    color: var(--white); border-color: var(--teal); }
.prog-step span { font-size: 0.68rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.prog-step.active    span { color: var(--primary);   font-weight: 700; }
.prog-step.completed span { color: var(--teal-dark); }

.prog-line {
  flex: 1; height: 2px;
  background: var(--border);
  margin-bottom: 24px;
  transition: background 0.4s ease;
}
.prog-line.done { background: var(--teal); }

.prog-track { height: 4px; background: var(--border); border-radius: 10px; overflow: hidden; }
.prog-fill  {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* ============================================
   28. APPLY — FORM STEPS & FLOAT LABELS
   ============================================ */
.form-step        { display: none; animation: fadeSlideIn 0.4s ease; }
.form-step.active { display: block; }

.step-title {
  font-size: 1.05rem; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 0.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal-light);
  margin-bottom: 1.5rem;
}
.step-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; margin-top: -0.8rem; }

.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.3rem; position: relative; }

.float-group input,
.float-group select,
.float-group textarea {
  width: 100%;
  padding: 18px 14px 8px 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.float-group textarea {
  resize: vertical; min-height: 100px;
  padding-top: 22px; padding-left: 14px;
}
.float-group select { padding-left: 42px; }

.float-group label {
  position: absolute;
  left: 42px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.87rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}
.float-group textarea ~ label { top: 18px; transform: none; left: 14px; }

.float-group input:focus,
.float-group select:focus,
.float-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.1);
}
.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label,
.float-group select:focus ~ label,
.float-group select.has-value ~ label,
.float-group textarea:focus ~ label,
.float-group textarea:not(:placeholder-shown) ~ label {
  top: 7px; transform: none;
  font-size: 0.68rem;
  color: var(--teal-dark);
  font-weight: 600;
  left: 42px;
}
.float-group textarea:focus ~ label,
.float-group textarea:not(:placeholder-shown) ~ label { left: 14px; }

.fi {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.3s;
}
.float-group input:focus ~ .fi,
.float-group select:focus ~ .fi { color: var(--teal); }

.err { display: none; font-size: 0.74rem; color: var(--red); margin-top: 4px; padding-left: 2px; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(231,76,60,0.08); }
.form-group.invalid .err { display: block; }
.form-group.valid   input,
.form-group.valid   select,
.form-group.valid   textarea { border-color: var(--teal); }

.form-step-btns { display: flex; gap: 1rem; justify-content: space-between; margin-top: 2rem; }

.interview-info-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(10,37,64,0.04);
  border: 1px solid rgba(10,37,64,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.interview-info-box i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.interview-info-box p { font-size: 0.84rem; color: var(--text); }

/* ============================================
   29. APPLY — PILL RADIOS & CHECKBOXES
   ============================================ */
.form-question { margin-bottom: 1.4rem; }
.q-label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.pill-radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-radio { cursor: pointer; }
.pill-radio input { display: none; }
.pill-radio span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.83rem; font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}
.pill-radio:hover span { border-color: var(--teal); color: var(--teal-dark); }
.pill-radio input:checked ~ span { background: var(--primary); border-color: var(--primary); color: var(--white); }

.checkbox-wrap { margin-bottom: 0.9rem; }
.cb-label {
  display: flex; align-items: flex-start; gap: 0.7rem;
  cursor: pointer; font-size: 0.86rem;
  line-height: 1.5; color: var(--text);
}
.cb-label input[type="checkbox"] { display: none; }
.cb-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  background: var(--white);
}
.cb-label input:checked ~ .cb-box { background: var(--teal); border-color: var(--teal); }
.cb-label input:checked ~ .cb-box::after { content: '✓'; color: var(--white); font-size: 0.68rem; font-weight: 800; }
.cb-label a { color: var(--teal-dark); text-decoration: underline; }

/* ============================================
   30. APPLY — FILE DROP ZONE
   ============================================ */
.upload-label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.file-drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}
.file-drop-zone:hover,
.file-drop-zone.drag-over  { border-color: var(--teal); background: var(--teal-light); }
.file-drop-zone i          { font-size: 2.4rem; color: var(--teal); opacity: 0.6; margin-bottom: 0.6rem; display: block; }
.file-drop-zone p          { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.file-drop-zone span       { color: var(--teal-dark); font-weight: 600; }
.file-drop-zone small      { font-size: 0.74rem; color: var(--text-muted); }
.file-preview { margin-top: 0.6rem; font-size: 0.83rem; color: var(--teal-dark); font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }

/* ============================================
   31. APPLY — REVIEW BOX
   ============================================ */
.review-section { margin-top: 1.8rem; }
.review-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.review-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  max-height: 260px;
  overflow-y: auto;
}
.review-row {
  display: flex; justify-content: space-between;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  gap: 1rem;
}
.review-row:last-child            { border: none; }
.review-row span:first-child      { color: var(--text-muted); flex-shrink: 0; }
.review-row span:last-child       { font-weight: 600; color: var(--text); text-align: right; }

/* ============================================
   32. APPLY — SUCCESS STATE
   ============================================ */
.form-success       { display: none; text-align: center; padding: 3rem 2rem; animation: fadeSlideIn 0.5s ease; }
.form-success.show  { display: block; }
.fs-icon {
  width: 78px; height: 78px;
  background: rgba(46,196,182,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.fs-icon i       { font-size: 2.4rem; color: var(--teal); }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.form-success p  { font-size: 0.92rem; }
.fs-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ============================================
   33. CONTACT — INFO CARDS
   ============================================ */
.contact-cards-section { background: var(--white); padding-bottom: 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ci-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.ci-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ci-icon {
  width: 58px; height: 58px;
  background: color-mix(in srgb, var(--cic) 10%, transparent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: var(--transition);
}
.ci-icon i                 { font-size: 1.4rem; color: var(--cic); }
.ci-card:hover .ci-icon    { transform: scale(1.1) rotate(5deg); }
.ci-card h4                { margin-bottom: 0.4rem; }
.ci-card p                 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.ci-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--teal-dark); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition); word-break: break-all;
}
.ci-link:hover { gap: 0.7rem; }
.ci-hours { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.open-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }

/* ============================================
   34. CONTACT — TWO COLUMN LAYOUT
   ============================================ */
.contact-main { background: var(--bg); }
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
  padding-top: 3rem;
}
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.cfb-header        { margin-bottom: 1.5rem; }
.cfb-header h2     { margin: 0.4rem 0 0.5rem; }

.captcha-row { margin-bottom: 1rem; }
.captcha-box {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.captcha-box i    { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.captcha-box span { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.captcha-box input {
  width: 80px; padding: 6px 10px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  outline: none; transition: var(--transition);
  margin-left: auto;
}
.captcha-box input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,196,182,0.1); }

/* ============================================
   35. CONTACT — TABS
   ============================================ */
.contact-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.ctab {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}
.ctab:hover { border-color: var(--teal); color: var(--teal-dark); }
.ctab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.tab-fields        { display: none; }
.tab-fields.active { display: block; }

/* ============================================
   36. CONTACT — MAP & EXTRAS
   ============================================ */
.contact-right { display: flex; flex-direction: column; gap: 1.5rem; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--teal-light), #c8f5f1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
}
.map-placeholder i    { font-size: 3rem; color: var(--teal-dark); opacity: 0.5; }
.map-placeholder p    { font-size: 0.95rem; font-weight: 700; color: var(--primary); }
.map-placeholder span { font-size: 0.8rem; color: var(--text-muted); }

.contact-extra-list { display: flex; flex-direction: column; gap: 0.8rem; }
.ce-item {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ce-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.ce-icon {
  width: 42px; height: 42px;
  background: color-mix(in srgb, var(--ce) 10%, transparent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ce-icon i      { font-size: 1.1rem; color: var(--ce); }
.ce-item h4     { font-size: 0.85rem; margin-bottom: 0.15rem; }
.ce-item a,
.ce-item span   { font-size: 0.8rem; color: var(--text-muted); word-break: break-all; }
.ce-item a:hover { color: var(--teal); }

.quick-apply-card {
  background: linear-gradient(135deg, var(--primary), #0d4f4a);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.quick-apply-card i   { font-size: 1.6rem; color: var(--teal); }
.quick-apply-card h4  { color: var(--white); margin-bottom: 0.2rem; }
.quick-apply-card p   { font-size: 0.83rem; color: rgba(255,255,255,0.7); }

/* ============================================
   37. CONTACT — FAQ
   ============================================ */
.faq-section { background: var(--white); }
.faq-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.faq-col     { display: flex; flex-direction: column; gap: 0; }
.faq-item    { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0;
  background: none; border: none;
  text-align: left; font-size: 0.92rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: var(--transition);
}
.faq-btn:hover         { color: var(--teal-dark); }
.faq-btn i             { font-size: 0.85rem; color: var(--teal); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-btn i { transform: rotate(45deg); }
.faq-item.open .faq-btn   { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.88rem; line-height: 1.8; padding-bottom: 1rem; color: var(--text-muted); }

/* ============================================
   38. SCROLL REVEAL & ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed   { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: 0.1s; }
.reveal-delay-2    { transition-delay: 0.2s; }
.reveal-delay-3    { transition-delay: 0.3s; }
.reveal-delay-4    { transition-delay: 0.4s; }

.floating      { animation: floating 4s ease-in-out infinite; }
.floating-slow { animation: floating 6s ease-in-out infinite reverse; }

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* ============================================
   39. MEDIA QUERIES — FULLY RESPONSIVE
   Breakpoints:
   1200px — Large Desktop
   1024px — Laptop / Small Desktop
   900px  — Tablet Landscape
   768px  — Tablet Portrait
   600px  — Large Mobile
   480px  — Mobile
   380px  — Small Mobile
   ============================================ */

/* ---- GLOBAL OVERFLOW SAFE FIX ---- */
html, body { overflow-x: hidden; width: 100%; }
* { min-width: 0; word-break: break-word; }
img, video, iframe { max-width: 100%; height: auto; }
table { display: block; overflow-x: auto; white-space: nowrap; max-width: 100%; }

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .container      { padding: 0 2rem; }
  .hero-inner     { gap: 2.5rem; padding: 4rem 2rem 5rem; }
  .hero-card-main { min-width: 200px; }
  .why-inner      { gap: 3rem; }
  .who-inner      { gap: 3rem; }
  .footer-grid    { gap: 2rem; }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  :root { --nav-h: 70px; }

  h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
  h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }

  .nav-links   { gap: 1.4rem; }
  .nav-links a { font-size: 0.88rem; }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3.5rem 2rem 5rem;
  }
  .hero-card-main     { min-width: 180px; padding: 0.85rem 1rem; }
  .hero-center-icon   { width: 150px; height: 150px; }
  .hero-center-icon i { font-size: 4rem; }

  .roles-grid        { grid-template-columns: repeat(3, 1fr); }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .recruit-grid      { grid-template-columns: repeat(3, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .role-cards-grid   { grid-template-columns: repeat(2, 1fr); }

  .steps-row  { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .step-arrow { display: none; }

  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .strip-divider     { display: none; }

  .why-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-visual  { order: -1; justify-content: center; }
  .why-img-box { width: 100%; max-width: 420px; height: 340px; }

  .who-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-visual  { order: -1; justify-content: center; }
  .who-img-box { width: 100%; max-width: 420px; height: 340px; }

  .contact-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .apply-inner     { grid-template-columns: 260px 1fr; gap: 1.5rem; }

  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    padding: 0.5rem 0 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a {
    color: var(--text) !important;
    padding: 0.9rem 1.8rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem !important;
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem 5rem;
    gap: 0;
  }
  .hero-text > p { margin: 0 auto 2rem; }
  .hero-btns     { justify-content: center; }
  .hero-trust    { justify-content: center; }
  .hero-visual   { display: none; }

  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 0 4rem; }
  .section   { padding: 70px 0; }

  .roles-grid      { grid-template-columns: repeat(2, 1fr); }
  .role-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row       { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

  .apply-inner { grid-template-columns: 1fr; }
  .apply-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .sidebar-block:first-child { grid-column: 1 / -1; }

  .contact-two-col { grid-template-columns: 1fr; }
  .contact-right   { order: -1; }
  .map-box         { display: none; }

  .faq-grid  { grid-template-columns: 1fr; gap: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline::before      { left: 16px; transform: none; }
  .tl-item               { justify-content: flex-start; padding-left: 44px; }
  .tl-dot                { left: 16px; transform: none; }
  .tl-content            { width: 100%; }
  .tl-content.tl-left    { text-align: left; margin-right: 0; }

  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .screening-inner { flex-direction: column; text-align: center; }
  .app-cta-inner   { flex-direction: column; text-align: center; }

  .qf-row          { grid-template-columns: 1fr; }
  .quick-form-wrap { padding: 1.8rem; }
  .prog-step span  { font-size: 0.62rem; }
  .recruit-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .section   { padding: 60px 0; }
  .container { padding: 0 1.25rem; }

  .hero              { min-height: auto; padding-bottom: 3rem; }
  .hero-btns         { flex-direction: column; align-items: center; }
  .hero-btns .btn    { width: 100%; max-width: 320px; justify-content: center; }

  .stats-strip           { padding: 40px 0; }
  .stats-strip-inner     { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .strip-stat strong     { font-size: 2rem; }

  .roles-grid      { grid-template-columns: 1fr; gap: 1.2rem; }
  .role-cards-grid { grid-template-columns: 1fr; }

  .rcat-header    { flex-wrap: wrap; gap: 0.75rem; }
  .rcat-header h2 { font-size: 1.25rem; }

  .filter-section { top: var(--nav-h); overflow-x: auto; }
  .filter-bar {
    flex-wrap: nowrap; overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0.5rem;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; font-size: 0.78rem; padding: 7px 14px; flex-shrink: 0; }

  .values-grid { grid-template-columns: 1fr; }
  .value-card  { padding: 1.8rem 1.5rem; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-card { height: 240px; }

  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-tabs      { flex-direction: column; }
  .ctab              { justify-content: center; }

  .apply-form-wrapper  { padding: 1.5rem; }
  .apply-sidebar       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .form-step-btns      { flex-direction: column-reverse; }
  .form-step-btns .btn { width: 100%; justify-content: center; }
  .progress-steps-row  { gap: 0; overflow-x: auto; }
  .prog-step span      { display: none; }
  .prog-circle         { width: 28px; height: 28px; font-size: 0.75rem; }

  .pill-radio-group { gap: 0.4rem; }
  .pill-radio span  { padding: 7px 13px; font-size: 0.8rem; }

  .file-drop-zone   { padding: 1.5rem 1rem; }
  .file-drop-zone i { font-size: 2rem; }

  .review-row               { flex-direction: column; gap: 0.2rem; }
  .review-row span:last-child { text-align: left; }

  .footer-grid   { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-brand  { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom div { justify-content: center; }

  .breadcrumb    { font-size: 0.82rem; }
  .section-header { margin-bottom: 2.5rem; }

  .who-badge   { display: none; }
  .who-badge-2 { display: none; }
  .why-img-box    { height: 260px; }
  .why-card-float { display: none; }
  .who-img-box    { height: 260px; }

  .screening-inner { gap: 1.2rem; }
  .screening-icon  { margin: 0 auto; }

  .app-cta         { padding: 50px 0; }
  .app-cta-inner   { gap: 1.5rem; }
  .app-cta-text h2 { font-size: 1.4rem; }

  .contact-extra-list   { gap: 0.6rem; }
  .quick-apply-card     { flex-direction: column; text-align: center; }
  .quick-apply-card .btn { width: 100%; justify-content: center; }

  .recruit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row    { grid-template-columns: 1fr; }
  .step-item    { padding: 1.5rem; }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .section   { padding: 50px 0; }
  .container { padding: 0 1rem; }

  .hero       { padding-top: var(--nav-h); }
  .hero-inner { padding: 2.5rem 1rem 4rem; }
  .hero-pill  { font-size: 0.76rem; padding: 6px 14px; }
  .hero-trust { flex-direction: column; gap: 0.75rem; align-items: center; }
    .trust-divider { display: none; }

  .logo      { font-size: 0.95rem; }
  .logo-icon { width: 30px; height: 30px; }

  .page-hero      { padding: calc(var(--nav-h) + 2rem) 0 3rem; }
  .page-hero h1   { font-size: clamp(1.5rem, 7vw, 2rem); }
  .page-hero-pill { font-size: 0.74rem; }

  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .strip-stat strong { font-size: 1.8rem; }
  .strip-stat span   { font-size: 1.5rem; }

  .role-cards-grid { grid-template-columns: 1fr; }
  .role-card       { padding: 1.5rem; }

  .filter-btn { font-size: 0.75rem; padding: 6px 12px; }

  .value-card { padding: 1.5rem 1.2rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { height: 220px; }

  .apply-form-wrapper { padding: 1.2rem; }
  .step-title         { font-size: 0.95rem; }

  .faq-btn { font-size: 0.88rem; }

  .footer      { padding: 50px 0 0; }
  .footer-grid { gap: 1.5rem; }

  .screening-notice { padding: 36px 0; }

  .tl-content    { padding: 1rem 1.2rem; }
  .tl-content h4 { font-size: 0.95rem; }

  .recruit-grid { grid-template-columns: 1fr; }

  .contact-info-grid { grid-template-columns: 1fr; }

  .contact-form-box { padding: 1.5rem 1.2rem; }

  .progress-steps-row { justify-content: space-between; }
  .prog-line          { min-width: 20px; }

  .review-box { padding: 0.8rem; }

  .quick-form-wrap  { padding: 1.5rem 1rem; }
  .section-header   { padding: 0 0.5rem; }

  .btn-lg { padding: 12px 24px; font-size: 0.88rem; }

  .app-cta        { padding: 40px 0; }
  .app-cta-text h2 { font-size: 1.25rem; }

  .contact-strip-grid { grid-template-columns: 1fr; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .section { padding: 44px 0; }

  .hero-inner { padding: 2rem 1rem 3.5rem; }
  h1 { font-size: clamp(1.4rem, 8vw, 1.9rem); }
  h2 { font-size: clamp(1.2rem, 6vw, 1.6rem); }

  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .strip-stat strong { font-size: 1.6rem; }

  .role-listing-card { padding: 1.2rem; }
  .rlc-top           { flex-wrap: wrap; }

  .sidebar-block:nth-child(2) { display: none; }

  .apply-form-wrapper { padding: 1rem; border-radius: var(--radius); }
  .step-title         { font-size: 0.9rem; }

  .progress-steps-row { gap: 2px; }
  .prog-circle        { width: 26px; height: 26px; font-size: 0.7rem; }
  .prog-line          { min-width: 12px; }

  .pill-radio-group { gap: 0.4rem; }
  .pill-radio span  { padding: 6px 11px; font-size: 0.77rem; }

  .ctab { font-size: 0.8rem; padding: 7px 14px; }

  .form-step-btns { gap: 0.6rem; }

  .faq-btn      { font-size: 0.85rem; padding: 0.9rem 0; }
  .faq-answer p { font-size: 0.84rem; }

  .fs-btns { flex-direction: column; align-items: center; }
  .fs-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  .footer-col ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }
  .footer-col ul li { margin-bottom: 0; }

  .scroll-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; font-size: 0.9rem; }

  .captcha-box       { flex-wrap: wrap; gap: 0.5rem; }
  .captcha-box input { width: 70px; }

  .file-drop-zone   { padding: 1.2rem 0.8rem; }
  .file-drop-zone p { font-size: 0.8rem; }

  .contact-tabs { flex-direction: row; flex-wrap: wrap; }
  .ctab         { flex: 1; justify-content: center; min-width: 120px; }

  .team-card    { height: 200px; }
  .tc-front,
  .tc-back      { padding: 1.2rem; }
  .tc-avatar    { width: 58px; height: 58px; }
  .tc-avatar i  { font-size: 1.6rem; }
}

/* ---- 380px ---- */
@media (max-width: 380px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 0.85rem; }

  .logo      { font-size: 0.88rem; gap: 0.45rem; }
  .logo em   { display: none; }

  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }

  .hero-pill  { font-size: 0.72rem; padding: 5px 11px; }
  .hero-inner { padding: 1.8rem 0.85rem 3rem; }

  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .strip-stat strong { font-size: 1.4rem; }

  .rlc-meta              { flex-direction: column; gap: 0.4rem; }
  .rlc-tags              { gap: 0.3rem; }
  .rlc-tags span         { font-size: 0.64rem; }

  .prog-circle { width: 24px; height: 24px; font-size: 0.65rem; }
  .prog-line   { min-width: 8px; }

  .pill-radio-group { flex-direction: column; }
  .pill-radio       { width: 100%; }
  .pill-radio span  { justify-content: center; width: 100%; }

  .btn    { padding: 10px 18px; font-size: 0.82rem; }
  .btn-lg { padding: 11px 20px; font-size: 0.85rem; }

  .float-group input,
  .float-group select,
  .float-group textarea { font-size: 0.85rem; padding: 17px 12px 7px 38px; }
  .float-group label    { font-size: 0.82rem; left: 38px; }
  .fi                   { left: 12px; }

  .faq-btn   { font-size: 0.82rem; }

  .section-tag { font-size: 0.7rem; padding: 5px 12px; }

  .breadcrumb { gap: 0.3rem; font-size: 0.76rem; }

  .screening-notice  { padding: 28px 0; }
  .screening-text h3 { font-size: 1.05rem; }

  .footer      { padding: 40px 0 0; }
  .footer-col ul { gap: 0.3rem 0.8rem; }

  .quick-form-wrap { padding: 1.2rem 0.85rem; }

  .review-row { gap: 0.15rem; }

  .contact-form-box { padding: 1rem 0.85rem; }

  .cfb-header h2 { font-size: 1.1rem; }

  .page-hero h1       { font-size: 1.3rem; }
  .page-hero-pill     { font-size: 0.7rem; padding: 5px 12px; }

  .apply-form-wrapper { padding: 0.85rem; }
  .step-title         { font-size: 0.85rem; gap: 0.4rem; }

  .fs-icon    { width: 64px; height: 64px; }
  .fs-icon i  { font-size: 2rem; }

  .form-success h3 { font-size: 1.2rem; }
  .form-success p  { font-size: 0.85rem; }

  .qf-success h3 { font-size: 1.1rem; }
}
