
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 15vw, 10rem) !important;
    font-weight: 900;
    line-height: 0.87;
    letter-spacing: -0.03em;
    background-image: url(https://groupbayport.com/wp-content/uploads/2024/08/Diverse-Team-1024x853-2.jpg);
    background-size: cover;
    background-position: center top;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: saturate(1.4) contrast(1.1);
}



/* ================================================================
   GROUP BAYPORT — CAREER PREMIUM (LIGHT THEME)
   WordPress Integration CSS
   Same fonts & structure as career-premium.html,
   all dark navy/indigo backgrounds converted to light.
   Add via: Appearance > Customize > Additional CSS
   ================================================================ */

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --navy: #212c40;
  --forest: #134830;
  --indigo: #67BD50;
  --indigo-light: #8dba81;
  --gold: #134830;
  --gold-light: #67BD50;
  --white: #ffffff;
  --off-white: #f6f5f0;
  --gray-50: #f1f3f2;
  --gray-100: #e9f0e4;
  --gray-200: #d7e3d2;
  --gray-300: #c5d5c0;
  --gray-400: #7a8a76;
  --gray-500: #5b6758;
  --gray-600: #3f4a3d;
  --gray-700: #2b332a;
  --gray-900: #111926;
  --font-display: 'Wix Madefor Display', system-ui, sans-serif;
  --font-body: 'Wix Madefor Display', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   BASE RESETS (scoped to career page sections)
   ================================================================ */
.hero, .achievements, .why-work, .cobsession, .benefits,
.voices, .emp-t, .career-wrap, .faq, .cta-bar,
.career-nav, .core-values, .life-gbp, .pillars, .lead-cta,
.career-banner, .founders-note, .driving-force, .bnx, .ldn {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  box-sizing: border-box;
}

.hero *, .achievements *, .why-work *, .cobsession *,
.benefits *, .voices *, .emp-t *, .career-wrap *,
.faq *, .cta-bar *, #current-openings *,
.career-nav *, .core-values *, .life-gbp *, .pillars *, .lead-cta *,
.career-banner *, .founders-note *, .driving-force *, .bnx *, .ldn * {
  box-sizing: border-box;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}

/* ================================================================
   HERO — light version (was dark navy)
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Soft light orbs instead of dark glowing ones */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: rgba(103,189,80,0.06);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.05);
  bottom: -100px; right: 5%;
  animation-delay: -5s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: rgba(245,158,11,0.06);
  top: 35%; left: 38%;
  animation-delay: -9s;
}

@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(50px,35px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Photo-clipped title — keep exactly as-is, works on any bg */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.03em;
  background-image: url('https://groupbayport.com/wp-content/uploads/2024/08/Diverse-Team-1024x853-2.jpg');
  background-size: cover;
  background-position: center top;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: saturate(1.4) contrast(1.1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(103,189,80,0.25);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  background: rgba(103,189,80,0.04);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.16;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: normal; color: var(--gold); }

.hero-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 36rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.stat-card:hover {
  background: rgba(103,189,80,0.04);
  border-color: rgba(103,189,80,0.2);
  box-shadow: 0 4px 16px rgba(103,189,80,0.08);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ================================================================
   KEY ACHIEVEMENTS — light version (was dark navy)
   ================================================================ */
.achievements {
  background: var(--gray-50);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.achievements::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,189,80,0.2), transparent);
}
.achievements::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.2), transparent);
}

.achievements-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.achievements-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.achievements-label::before,
.achievements-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200));
}
.achievements-label::after {
  background: linear-gradient(90deg, var(--gray-200), transparent);
}

.achievements-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
}

.achievements-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

.achievements-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.ach-stat {
  padding: 2.25rem 2rem;
  background: var(--white);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.ach-stat:hover { background: var(--gray-50); }

.ach-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ach-number.gold { color: var(--gold); }
.ach-number.indigo { color: var(--indigo); }
.ach-number.white { color: var(--gray-900); }
.ach-number.teal { color: #0d9488; }

.ach-label {
  font-size: 0.825rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
}

/* ================================================================
   WHY WORK HERE — already light, keep as-is
   ================================================================ */
.why-work {
  background: var(--white);
  padding: 7rem 2rem;
}
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-subtitle {
  max-width: 50rem;
  margin: 1.5rem auto 0;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.78;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border-radius: 1.125rem;
  padding: 1.875rem;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(103,189,80,0.1), rgba(245,158,11,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-top: 0.1rem;
}
.why-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.why-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ================================================================
   COBSESSION — light version (was dark navy)
   ================================================================ */
.cobsession {
  background: var(--off-white);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.cobsession::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(103,189,80,0.15) 50%, transparent 100%);
}
.cobsession-deco {
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  line-height: 0.7;
  color: rgba(103,189,80,0.04);
  top: -2rem;
  left: -1rem;
  pointer-events: none;
  user-select: none;
}

.cobsession-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cobsession-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
}
.cobsession-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.13;
  margin-bottom: 2rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cobsession-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.82;
  max-width: 38rem;
}

.cobsession-img-wrap { position: relative; }
.cobsession-img-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--indigo), rgba(255,255,255,0), var(--gold));
  border-radius: 1.375rem;
  opacity: 0.15;
  z-index: 0;
}
.cobsession-img-wrap img {
  width: 100%;
  border-radius: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ================================================================
   SECTION SHARED
   ================================================================ */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
}
.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--gold));
  border-radius: 2px;
  margin-top: 1.25rem;
}
.title-line.centered { margin-left: auto; margin-right: auto; }

/* ================================================================
   BENEFITS — already light, keep as-is
   ================================================================ */
.benefits {
  background: var(--off-white);
  padding: 7rem 2rem;
}
.benefits-inner { max-width: 1100px; margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 3.5rem; }
.benefits-desc {
  max-width: 54rem;
  margin: 1.5rem auto 0;
  color: var(--gray-600);
  font-size: 1.025rem;
  line-height: 1.78;
}

.tab-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.75rem;
  border-radius: 9999px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.25s;
  cursor: pointer;
  font-family: var(--font-body);
}
.tab-btn img { width: 22px; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.tab-btn.active {
  border-color: var(--indigo);
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(103,189,80,0.28);
}
.tab-btn:not(.active):hover { border-color: var(--indigo); color: var(--indigo); }

.tab-content { display: none; }
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.b-card {
  background: var(--white);
  border-radius: 1.125rem;
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.b-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--indigo), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.b-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.09); border-color: transparent; }
.b-card:hover::before { opacity: 1; }

.b-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(103,189,80,0.1), rgba(245,158,11,0.08));
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.b-card h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.b-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.68; }

/* ================================================================
   VOICES — light version (was dark navy)
   ================================================================ */
.voices {
  background: var(--gray-50);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.voices::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,189,80,0.2), transparent);
}
.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.voices-header { text-align: center; margin-bottom: 4rem; }
.voices-header .eyebrow { color: var(--indigo); }
.voices-header .section-title { color: var(--gray-900); }
.voices-header .title-line { background: linear-gradient(90deg, var(--indigo), var(--gold)); }

.voices-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.voices-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.voice-tab-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.875rem;
  text-align: left;
  color: var(--gray-500);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-body);
}
.voice-tab-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--indigo), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}
.voice-tab-btn.active {
  background: rgba(103,189,80,0.06);
  border-color: rgba(103,189,80,0.2);
  color: var(--gray-900);
}
.voice-tab-btn.active::before { opacity: 1; }
.voice-tab-btn:hover:not(.active) {
  background: var(--gray-50);
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.vtb-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-300);
  min-width: 2rem;
  transition: color 0.25s;
}
.voice-tab-btn.active .vtb-num { color: var(--gold); }
.vtb-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

.voices-panel { position: relative; }
.voice-content {
  display: none;
  animation: fadeSlide 0.4s var(--ease);
}
.voice-content.active { display: block; }

.voice-deco-q {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 0.7;
  color: rgba(103,189,80,0.1);
  user-select: none;
  pointer-events: none;
  margin-bottom: -1.5rem;
}
.voice-paragraphs p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.voice-paragraphs p:last-child { margin-bottom: 0; }
.voice-author {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.voice-author-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--indigo-light));
  border-radius: 1px;
  flex-shrink: 0;
}
.voice-author-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
}
.voice-author-role {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

/* ================================================================
   EMPLOYEE TESTIMONIALS — department tabbed filter
   ================================================================ */
.emp-t {
  background: var(--white);
  padding: 7rem 2rem;
}
.emp-t-inner { max-width: 1200px; margin: 0 auto; }
.emp-t-header { text-align: center; margin-bottom: 3rem; }

/* Department filter tabs */
.dept-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.dept-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.dept-tab:hover:not(.active) {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(103,189,80,0.04);
}
.dept-tab.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(103,189,80,0.25);
}

/* Count badge on each tab */
.dept-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  color: inherit;
}
.dept-tab:not(.active) .dept-tab-count {
  background: var(--gray-100);
  color: var(--gray-500);
}

.emp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Card hide/show with animation */
.emp-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.875rem;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s, opacity 0.25s, scale 0.25s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform-origin: top center;
}
.emp-card.hidden {
  display: none;
}
.emp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
  border-color: rgba(103,189,80,0.2);
}
.emp-card-q {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gray-100);
  pointer-events: none;
  user-select: none;
}
.emp-quote {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.78;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.emp-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--gray-100);
}
.emp-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--gray-900);
}
.emp-role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--indigo);
}
.emp-dept-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(103,189,80,0.07);
  color: var(--indigo);
  width: fit-content;
}

/* Empty state */
.emp-empty {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.95rem;
  padding: 3rem 0;
  font-style: italic;
}

/* ================================================================
   CAREER FORM — light indigo tint (was dark purple gradient)
   ================================================================ */
.career-wrap {
  background: linear-gradient(135deg, #e9f0e4 0%, #f6f5f0 50%, #e1f2dc 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.career-wrap::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: rgba(103,189,80,0.08);
  border-radius: 50%;
  top: -250px; right: -150px;
}
.career-wrap::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(19,72,48,0.06);
  border-radius: 50%;
  bottom: -100px; left: -80px;
}

.career-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.career-header { text-align: center; margin-bottom: 3.5rem; }
.career-header .eyebrow { color: var(--indigo); }
.career-header .section-title { color: var(--gray-900); }
.career-header .title-line { background: linear-gradient(90deg, var(--indigo), var(--gold)); }
.career-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-top: 1.5rem;
  max-width: 36rem;
  margin-left: auto; margin-right: auto;
}

.form-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.75rem;
  box-shadow: 0 24px 64px rgba(19,72,48,0.1);
  border: 1px solid rgba(19,72,48,0.08);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.f-group { display: flex; flex-direction: column; gap: 0.45rem; }
.f-group label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); letter-spacing: 0.02em; }
.career-wrap .f-group input[type="text"],
.career-wrap .f-group input[type="email"],
.career-wrap .f-group input[type="tel"] {
  display: block !important;
  width: 100% !important;
  min-height: 50px !important;
  height: 50px !important;
  padding: 0.78rem 1rem !important;
  border: 1.5px solid #c5d5c0 !important;
  border-radius: 0.625rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: var(--gray-900) !important;
  background: #fff !important;
  outline: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}
.career-wrap .f-group input:focus {
  border-color: #67BD50 !important;
  box-shadow: 0 0 0 3px rgba(103,189,80,0.18) !important;
}
.career-wrap .f-group input.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.drop-zone {
  border: 2px dashed var(--gray-200);
  border-radius: 0.875rem;
  padding: 2.25rem;
  text-align: center;
  cursor: pointer;
  background: var(--gray-50);
  position: relative;
  transition: all 0.2s;
}
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--indigo); background: rgba(103,189,80,0.04); }
.drop-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.dz-icon { font-size: 2.25rem; margin-bottom: 0.6rem; }
.dz-text { font-size: 0.9rem; color: var(--gray-600); font-weight: 500; }
.dz-text strong { color: var(--indigo); }
.dz-hint { font-size: 0.775rem; color: var(--gray-400); margin-top: 0.3rem; }
.dz-file { font-size: 0.85rem; color: var(--indigo); font-weight: 600; margin-top: 0.5rem; }

.f-full { grid-column: 1 / -1; }
.f-submit { grid-column: 1 / -1; text-align: center; padding-top: 0.5rem; }

.submit-btn {
  display: inline-flex !important; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #134830, #67BD50) !important;
  color: var(--white) !important;
  font-size: 0.95rem !important; font-weight: 700 !important; letter-spacing: 0.04em;
  padding: 0.9rem 2.75rem !important;
  border-radius: 9999px !important; border: none !important;
  box-shadow: 0 10px 28px rgba(19,72,48,0.28);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  font-family: var(--font-body) !important;
  text-transform: none !important;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(103,189,80,0.4); }
.submit-btn svg { width: 16px; height: 16px; }

/* ================================================================
   FAQ — already light, keep as-is
   ================================================================ */
.faq { background: var(--white); padding: 7rem 2rem; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }

.faq-cat {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 0.75rem;
}
.faq-cat::before {
  content: '';
  display: inline-block;
  width: 5px; height: 20px;
  background: linear-gradient(180deg, var(--indigo), var(--gold));
  border-radius: 3px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: 0.875rem;
  margin-bottom: 0.625rem;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.faq-item.open { border-color: rgba(103,189,80,0.2); box-shadow: 0 6px 20px rgba(103,189,80,0.08); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem;
  background: none; border: none; width: 100%; text-align: left;
  font-size: 1rem; font-weight: 500; color: var(--gray-900);
  gap: 1rem; transition: color 0.2s;
  cursor: pointer; font-family: var(--font-body);
}
.faq-q:hover { color: var(--indigo); }
.faq-item.open .faq-q { color: var(--indigo); font-weight: 600; }

.faq-chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.faq-chev svg { width: 10px; height: 10px; stroke: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-chev { background: var(--indigo); border-color: var(--indigo); }
.faq-item.open .faq-chev svg { transform: rotate(180deg); stroke: white; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem; color: var(--gray-600); line-height: 1.78;
}
.faq-a-inner a { color: var(--indigo); }
.faq-a-inner ul { padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-a-inner ul li { margin-bottom: 0.35rem; }

/* ================================================================
   CTA BANNER — keep as one dark accent section (intentional)
   ================================================================ */
.cta-bar {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(103,189,80,0.13), transparent 60%, rgba(245,158,11,0.06));
  pointer-events: none;
}
.cta-bar-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-bar h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-bar p { color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.72; margin-bottom: 2.25rem; }
.cta-bar-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--navy);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.9rem 2.25rem; border-radius: 9999px;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.cta-bar-btn:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,158,11,0.38);
}

/* ================================================================
   CURRENT OPENINGS EMBED
   ================================================================ */
#current-openings { padding: 3rem 2rem; max-width: 1100px; margin: 0 auto; }
.kch-navbar, .kch-header-section, .kh-footer, .kch-footer { display: none !important; }

/* ================================================================
   FLOATING SCROLL BUTTON
   ================================================================ */
.scroll-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white); border: none;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(103,189,80,0.35);
  z-index: 900;
  opacity: 0; transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.scroll-float.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-float:hover { background: #134830; transform: translateY(-3px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 480px) {
  .achievements-strip { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .emp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .voices-layout {
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .voices-tabs { position: sticky; top: 100px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 8rem 4rem 6rem; }
  .cobsession-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .emp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero, .achievements, .why-work, .cobsession, .benefits,
  .voices, .emp-t, .career-wrap, .faq, .cta-bar,
  .core-values, .life-gbp, .pillars { padding: 5rem 1.5rem; }
}

.pbmit-title-bar-wrapper{display:none;}

/* ================================================================
   ONE-PAGE CAREER NAV
   ================================================================ */
.career-nav {
  position: sticky;
  top: 90px;
  z-index: 80;
  background: #134830;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.career-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.65rem 1.25rem;
  scrollbar-width: none;
}
.career-nav-inner::-webkit-scrollbar { display: none; }
.career-nav a {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.career-nav a:hover,
.career-nav a.is-active {
  color: #fff;
  background: rgba(103,189,80,0.35);
}
.career-nav a.nav-apply {
  margin-left: auto;
  background: #67BD50;
  color: #fff !important;
}
.career-nav a.nav-apply:hover { background: #57a844; }

.hero, .achievements, .why-work, .cobsession, .benefits,
.voices, .emp-t, .career-wrap, .faq, .cta-bar,
.core-values, .life-gbp, .pillars {
  scroll-margin-top: 170px;
}

/* ================================================================
   SECTION CTA
   ================================================================ */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}
.section-cta a,
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.7rem;
  border-radius: 9999px;
  box-shadow: 0 8px 22px rgba(103,189,80,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.section-cta a:hover,
.hero-cta:hover {
  background: #134830;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(103,189,80,0.32);
  color: var(--white);
}
.hero-cta {
  margin-top: 1.75rem;
}
.hero-cta-ghost {
  background: transparent;
  color: var(--indigo);
  border: 1.5px solid rgba(103,189,80,0.35);
  box-shadow: none;
  margin-left: 0.75rem;
}
.hero-cta-ghost:hover {
  background: rgba(103,189,80,0.08);
  color: var(--indigo);
  box-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

/* ================================================================
   OUR PILLARS
   ================================================================ */
.pillars {
  background: var(--white);
  padding: 7rem 2rem;
}
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.pillars-header { text-align: center; margin-bottom: 3.5rem; }
.pillars-sub {
  max-width: 46rem;
  margin: 1.35rem auto 0;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.78;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pillar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(103,189,80,0.18);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.pillars-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ================================================================
   CORE VALUES
   ================================================================ */
.core-values {
  background: var(--gray-50);
  padding: 7rem 2rem;
}
.core-values-inner { max-width: 1100px; margin: 0 auto; }
.core-values-header { text-align: center; margin-bottom: 3.25rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.15rem;
  padding: 1.75rem;
}
.value-card.featured {
  background: linear-gradient(135deg, rgba(103,189,80,0.06), rgba(245,158,11,0.06));
  border-color: rgba(103,189,80,0.18);
}
.value-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.45rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.value-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.72; }

/* ================================================================
   BENEFITS DISCLAIMER
   ================================================================ */
.benefits-disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: rgba(103,189,80,0.05);
  border: 1px dashed rgba(103,189,80,0.22);
  border-radius: 0.85rem;
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* ================================================================
   LIFE AT GROUP BAYPORT
   ================================================================ */
.life-gbp {
  background: var(--white);
  padding: 7rem 2rem;
}
.life-inner { max-width: 1100px; margin: 0 auto; }
.life-header { text-align: center; margin-bottom: 3rem; }
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.life-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  min-height: 220px;
}
.life-card.wide { grid-column: 1 / -1; min-height: 280px; }
.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s var(--ease);
}
.life-card:hover img { transform: scale(1.04); }
.life-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(to top, rgba(5,13,26,0.72), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================================================================
   LEADERSHIP CAROUSEL extras
   ================================================================ */
.voices-rotate-hint {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}
.voices-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--gray-300);
  padding: 0;
}
.voices-dot.active { background: var(--indigo); width: 22px; border-radius: 9999px; }

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.form-note a { color: var(--indigo); font-weight: 600; }
.submit-btn:disabled { opacity: 0.75; cursor: not-allowed; }
.form-status {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  text-align: center;
}
.form-status.ok { color: #059669; }
.form-status.err { color: #dc2626; }

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid-6 .value-card.featured { grid-column: auto; }
  .life-grid { grid-template-columns: 1.4fr 1fr; }
  .benefits-cols { grid-template-columns: 1fr 1fr; }
  .founder-feature { grid-template-columns: 240px 1fr; }
  .founder-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .career-nav { top: 72px; }
  .hero-cta-ghost { margin-left: 0; margin-top: 0.6rem; }
}

/* ================================================================
   CAREERS BANNER
   ================================================================ */
.career-banner {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  scroll-margin-top: 170px;
}
.career-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(19,72,48,0.88) 0%, rgba(33,44,64,0.55) 70%);
}
.career-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 8vw;
}
.career-banner .eyebrow { color: #c5ebbc; }
.career-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0.4rem 0 1rem;
}
.career-banner p {
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 0.25rem;
}
.career-banner .hero-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: none;
}
.career-banner .hero-cta-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hero, .achievements, .why-work, .cobsession, .benefits,
.voices, .emp-t, .career-wrap, .faq, .cta-bar,
.core-values, .life-gbp, .pillars, .career-banner, .founders-note {
  scroll-margin-top: 170px;
}

/* ================================================================
   BENEFITS SIDE BY SIDE
   ================================================================ */
.benefits-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.benefits-col-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #67BD50;
}
.benefits-col-title img { width: 26px; border-radius: 3px; }
.benefits-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ================================================================
   FOUNDERS NOTE
   ================================================================ */
.founders-note {
  background: #f6f5f0;
  padding: 7rem 2rem;
}
.founders-inner { max-width: 1100px; margin: 0 auto; }
.founders-header { text-align: center; margin-bottom: 3.25rem; }
.founder-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid #d7e3d2;
  border-radius: 1.25rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.founder-photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  background: #e9f0e4;
}
.founder-copy h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.founder-role {
  color: #67BD50;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.founder-copy p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.founder-card {
  background: #fff;
  border: 1px solid #d7e3d2;
  border-radius: 1.15rem;
  padding: 1.5rem;
}
.founder-card img {
  width: 120px;
  height: 146px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: #e9f0e4;
}
.founder-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.founder-pending { color: var(--gray-500); font-style: italic; font-size: 0.92rem; }

.cta-bar { background: #134830; }

/* ================================================================
   V4 — OUR DRIVING FORCE (green cobsession pattern)
   ================================================================ */
.driving-force {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbf4 0%, #eef6ea 48%, #e4f0de 100%);
  padding: 7.5rem 2rem 8.5rem;
  text-align: center;
}
.df-waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  pointer-events: none;
}
.df-waves svg { width: 100%; height: 100%; display: block; }
.df-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

.df-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #134830;
  margin-bottom: 1.1rem;
}
.df-rule {
  width: 56px;
  height: 1px;
  background: #134830;
}
.df-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #67BD50;
  box-shadow: 0 0 0 4px rgba(103,189,80,0.18);
}

.df-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 500;
  color: #212c40;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.df-title em {
  font-style: normal;
  font-weight: 800;
  color: #134830;
}

.df-lead {
  max-width: 46rem;
  margin: 0 auto 4.25rem;
  color: #3f4a3d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.df-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.df-line {
  display: none;
}

.df-item { position: relative; z-index: 1; max-width: 280px; margin: 0 auto; }
.df-orb {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #134830;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 46px, transparent 47px),
    #fff;
  box-shadow:
    0 0 0 10px #fff,
    0 0 0 14px #134830,
    0 18px 36px rgba(19,72,48,0.12);
}
.df-orb svg { width: 54px; height: 54px; }
.df-item-accent .df-orb {
  box-shadow:
    0 0 0 10px #fff,
    0 0 0 14px #c5d44e,
    0 18px 36px rgba(197,212,78,0.28);
}
.df-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #212c40;
  margin-bottom: 0.45rem;
}
.df-item p {
  color: #5b6758;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (min-width: 860px) {
  .df-row {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1rem;
  }
  .df-line {
    display: block;
    position: absolute;
    left: 12%;
    right: 12%;
    top: 66px;
    height: 0;
    border-top: 2px dotted #8dba81;
    z-index: 0;
  }
}

body.career-v4 .site-content {
  background: #f7fbf4;
}

body.career-v4 .site-content-contain,
body.career-v4 .site-content-wrap,
body.career-v4 .site-content.container,
body.career-v4 #content.container,
body.career-v4 #primary,
body.career-v4 #main,
body.career-v4 .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.career-v4 .pbmit-title-bar-wrapper {
  display: none !important;
}

/* ================================================================
   V4 BENEFITS — country spec sheet
   ================================================================ */
.bnx {
  background: #f7fbf4;
  padding: 7rem 2rem;
  scroll-margin-top: 170px;
}
.bnx-inner { max-width: 1120px; margin: 0 auto; }
.bnx-header { text-align: center; margin-bottom: 3.25rem; }
.bnx-desc {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  color: #5b6758;
  font-size: 1.05rem;
  line-height: 1.75;
}
.bnx-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  background: #fff;
  border: 1px solid #d7e6d0;
  border-radius: 0.35rem;
  overflow: hidden;
}
.bnx-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem;
}
.bnx-in .bnx-rail { background: #134830; color: #fff; }
.bnx-us .bnx-rail { background: #212c40; color: #fff; }
.bnx-rail span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.65;
}
.bnx-rail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.bnx-rail p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.75;
}
.bnx-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.bnx-tiles article {
  padding: 1.35rem 1.5rem 1.4rem;
  border-top: 1px solid #e8f0e4;
}
.bnx-tiles article:first-child { border-top: 0; }
.bnx-tiles h4 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #212c40;
}
.bnx-tiles p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5b6758;
}
.bnx-disclaimer {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #7a8576;
}
@media (min-width: 760px) {
  .bnx-tiles { grid-template-columns: 1fr 1fr; }
  .bnx-tiles article {
    border-top: 0;
    border-right: 1px solid #e8f0e4;
    border-bottom: 1px solid #e8f0e4;
  }
  .bnx-tiles article:nth-child(2n) { border-right: 0; }
  .bnx-in .bnx-tiles article:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 980px) {
  .bnx-block {
    grid-template-columns: 200px 1fr;
    align-items: stretch;
  }
  .bnx-rail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .bnx-tiles { grid-template-columns: 1fr 1fr 1fr; }
  .bnx-tiles article {
    border-right: 1px solid #e8f0e4;
    border-bottom: 1px solid #e8f0e4;
  }
  .bnx-tiles article:nth-child(2n) { border-right: 1px solid #e8f0e4; }
  .bnx-tiles article:nth-child(3n) { border-right: 0; }
  .bnx-in .bnx-tiles article:nth-last-child(-n+2) { border-bottom: 1px solid #e8f0e4; }
  .bnx-in .bnx-tiles article:nth-child(n+4) { border-bottom: 0; }
  .bnx-tiles-us { grid-template-columns: repeat(6, 1fr); }
  .bnx-tiles-us article { grid-column: span 2; }
  .bnx-tiles-us article:nth-child(3) { border-right: 0; }
  .bnx-tiles-us article:nth-child(n+4) {
    grid-column: span 3;
    border-bottom: 0;
  }
  .bnx-tiles-us article:nth-child(4) { border-right: 1px solid #e8f0e4; }
  .bnx-tiles-us article:nth-child(5) { border-right: 0; }
}

/* ================================================================
   V4 LEADERSHIP — signed note
   ================================================================ */
.ldn {
  background: #fff;
  padding: 7rem 2rem;
  scroll-margin-top: 170px;
}
.ldn-inner { max-width: 1120px; margin: 0 auto; }
.ldn-header { text-align: center; margin-bottom: 2.75rem; }

.ldn-letter {
  background: #f7fbf4;
  border: 1px solid #d7e6d0;
  border-left: 6px solid #134830;
  padding: 2.25rem 1.75rem 2rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ldn-letter.is-fading {
  opacity: 0.15;
  transform: translateY(4px);
}
.ldn-letter blockquote {
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
}
.ldn-letter blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 600;
  line-height: 1.35;
  color: #134830;
}
.ldn-sign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #d7e6d0;
}
.ldn-sign figure {
  margin: 0;
  width: 168px;
  position: relative;
}
.ldn-sign figure::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: #67BD50;
  z-index: 0;
}
.ldn-sign img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: #e8f4e2;
  transition: opacity 0.2s ease;
}
.ldn-sign-copy strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #212c40;
}
.ldn-sign-copy span {
  display: block;
  margin: 0.2rem 0 0.9rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #67BD50;
}
.ldn-sign-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5b6758;
}
.ldn-cta {
  display: inline-flex;
  margin-top: 0.55rem;
  color: #fff !important;
  background: #134830;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ldn-cta:hover { background: #67BD50; color: #134830 !important; }

.ldn-team { margin-top: 2.25rem; }
.ldn-team-label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a8576;
}
.ldn-team-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.ldn-team-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid #e4eee0;
  background: #fbfdf9;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}
.ldn-team-card:hover {
  background: #f2f8ee;
  border-color: #67BD50;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(19, 72, 48, 0.08);
}
.ldn-team-card.is-active {
  background: #ffffff;
  border: 2px solid #134830;
  padding: calc(0.85rem - 1px);
  box-shadow: 0 6px 18px rgba(19, 72, 48, 0.12);
}
.ldn-team-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: top center;
  background: #e8f4e2;
  border-radius: 4px;
}
.ldn-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ldn-card-badge {
  display: none;
  align-self: flex-start;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #eaf5e6;
  color: #134830;
  border-radius: 9999px;
  border: 1px solid #c8e4bf;
}
.ldn-team-card.is-active .ldn-card-badge {
  display: inline-block;
}
.ldn-team-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #212c40;
  line-height: 1.25;
}
.ldn-team-card p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #5b6758;
}

@media (min-width: 640px) {
  .ldn-team-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .ldn-letter { padding: 2.75rem 3rem 2.4rem; }
  .ldn-sign { grid-template-columns: 176px 1fr; align-items: start; gap: 2rem; }
}

@media (min-width: 1024px) {
  .ldn-team-row {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
