
    /* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --dark:         #13544E;
      --heading:      #095D40;
      --accent:       #6C9A40;
      --cta:          #008060;
      --lime:         #D3E162;
      --lime-light:   #E4F577;
      --bg:           #FBF7ED;
      --bg-alt:       #E0EDD4;
      --navy:         #212B36;
      --muted:        #637381;
      --white:        #FFFFFF;
      --red:          #FF6B6B;
      --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
      --shadow-md:    0 8px 32px rgba(0,0,0,0.11);
      --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
      --r-sm:         8px;
      --r-md:         16px;
      --r-lg:         24px;
      --r-xl:         32px;
      --font-body:    'Inter', sans-serif;
      --font-display: 'Nunito', sans-serif;
      --ease:         all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); background: var(--bg); color: var(--navy); line-height: 1.6; overflow-x: hidden; padding-top: 115px; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: var(--r-sm);
      font-weight: 700; font-size: 15px; transition: var(--ease); white-space: nowrap;
    }
    .btn--primary { background: var(--cta); color: var(--white); }
    .btn--primary:hover { background: var(--heading); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,128,96,0.35); }
    .btn--secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
    .btn--secondary:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
    .btn--outline { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
    .btn--outline:hover { background: var(--cta); color: var(--white); transform: translateY(-2px); }
    .btn--lime { background: var(--lime); color: var(--heading); }
    .btn--lime:hover { background: var(--lime-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,225,98,0.4); }
    .btn--lg { padding: 18px 36px; font-size: 17px; }
    .btn--sm { padding: 10px 20px; font-size: 13px; }
    .btn--full { width: 100%; justify-content: center; }

    .section-label {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg-alt); color: var(--heading);
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
    }
    .section-label--light { background: rgba(255,255,255,0.15); color: var(--lime); }
    .section-label i { font-size: 10px; }

    .section-title {
      font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
      font-weight: 900; line-height: 1.15; color: var(--heading); margin-bottom: 16px;
    }
    .section-title--white { color: var(--white); }
    .section-title span { color: var(--cta); }
    .section-title span.lime { color: var(--lime); }

    .section-sub { font-size: 18px; color: var(--muted); max-width: 600px; line-height: 1.7; }
    .section-sub--white { color: rgba(255,255,255,0.8); }
    .section-header { text-align: center; margin-bottom: 40px; }
    .section-header .section-sub { margin: 0 auto; }

    /* ============================================================
       ANNOUNCEMENT BAR
    ============================================================ */
    .announcement-bar {
      background: var(--lime); color: var(--heading);
      font-size: 13px; font-weight: 600;
      position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
      transition: var(--ease);
    }
    .announcement-bar.hidden { transform: translateY(-100%); pointer-events: none; }
    .announcement-bar__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; height: 40px; position: relative;
    }
    .announcement-bar__text { display: flex; align-items: center; gap: 8px; text-align: center; }
    .announcement-bar__text i { color: var(--heading); font-size: 12px; flex-shrink: 0; }
    .announcement-bar__text a { color: var(--heading); text-decoration: underline; font-weight: 700; transition: var(--ease); }
    .announcement-bar__text a:hover { color: var(--dark); }
    .announcement-bar__close {
      position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      width: 28px; height: 28px; background: rgba(0,0,0,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: var(--heading); cursor: pointer; transition: var(--ease);
    }
    .announcement-bar__close:hover { background: rgba(0,0,0,0.2); }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
      background: var(--white); box-shadow: var(--shadow-sm); transition: var(--ease);
    }
    .nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
    .nav.bar-hidden { top: 0; }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 75px; gap: 32px;
    }
    .nav__logo { flex-shrink: 0; }
    .nav__logo img { width: 190px; height: auto; }
    .nav__menu { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; padding: 0; margin: 0; }
    .nav__item { position: relative; }
    .nav__link {
      display: flex; align-items: center; gap: 4px; padding: 8px 14px;
      font-size: 15px; font-weight: 600; color: var(--navy);
      border-radius: var(--r-sm); transition: var(--ease);
    }
    .nav__link:hover, .nav__link.active { color: var(--cta); background: var(--bg-alt); }
    .nav__link i { font-size: 11px; transition: var(--ease); }
    .nav__item:hover .nav__link i { transform: rotate(180deg); }

    .nav__dropdown {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
      padding: 28px; opacity: 0; visibility: hidden; transition: var(--ease);
      min-width: 580px; border: 1px solid var(--bg-alt);
    }
    .nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .nav__dropdown--sm { min-width: 320px; }
    .dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .dropdown__col-title {
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
    }
    .dropdown__link {
      display: flex; align-items: center; gap: 10px; padding: 9px 10px;
      border-radius: var(--r-sm); font-size: 14px; font-weight: 500;
      color: var(--navy); transition: var(--ease); margin-bottom: 2px;
    }
    .dropdown__link:hover { background: var(--bg-alt); color: var(--cta); transform: translateX(4px); }
    .dropdown__link i {
      width: 32px; height: 32px; background: var(--bg-alt); border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center; font-size: 13px;
      color: var(--cta); flex-shrink: 0; transition: var(--ease);
    }
    .dropdown__link:hover i { background: var(--cta); color: var(--white); }
    .dropdown__footer {
      border-top: 1px solid var(--bg-alt); margin-top: 20px; padding-top: 16px;
      display: flex; gap: 12px;
    }
    .dropdown__footer a {
      font-size: 13px; font-weight: 600; color: var(--cta);
      display: flex; align-items: center; gap: 4px; transition: var(--ease);
    }
    .dropdown__footer a:hover { color: var(--heading); gap: 8px; }
    .dropdown__featured { background: var(--bg-alt); border-radius: var(--r-sm); padding: 14px; margin-top: 16px; }
    .dropdown__featured-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
    .dropdown__featured-title { font-size: 13px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
    .dropdown__featured a { font-size: 12px; font-weight: 700; color: var(--cta); display: flex; align-items: center; gap: 4px; }
    .nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
    .nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }
    .nav__mobile {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white); z-index: 999; overflow-y: auto;
      padding: 80px 24px 40px; transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .nav__mobile.open { transform: translateX(0); }
    .mobile-nav__item { border-bottom: 1px solid var(--bg-alt); }
    .mobile-nav__link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--navy);
    }
    .mobile-nav__sub { padding-bottom: 12px; display: none; }
    .mobile-nav__sub.open { display: block; }
    .mobile-nav__sub a {
      display: block; padding: 10px 0 10px 16px; font-size: 14px; color: var(--muted);
      border-left: 2px solid var(--bg-alt); margin-bottom: 4px; transition: var(--ease);
    }
    .mobile-nav__sub a:hover { color: var(--cta); border-color: var(--cta); }
    .mobile-nav__ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
    .mobile-nav__ctas .btn { justify-content: center; width: 100%; }
    .nav__mobile-close {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px; background: var(--bg-alt); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--navy); cursor: pointer;
    }
    /* Login dropdown */
    .nav__login { position: relative; }
    .nav__login-btn {
      display: flex; align-items: center; gap: 6px;
      background: transparent;
      border: 1.5px solid var(--bg-alt);
      color: var(--navy);
      padding: 14px 20px; border-radius: 8px;
      font-size: 15px; font-family: inherit; font-weight: 600;
      cursor: pointer; transition: all 0.25s ease;
      white-space: nowrap; line-height: 1;
    }
    .nav__login-btn:hover { background: var(--bg-alt); color: var(--cta); border-color: var(--bg-alt); }
    .nav__login-chevron { font-size: 0.65rem; transition: transform 0.25s ease; }
    .nav__login.open .nav__login-chevron { transform: rotate(180deg); }
    .nav__login-menu {
      visibility: hidden; opacity: 0;
      transform: translateX(-50%) translateY(8px);
      pointer-events: none;
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      width: 200px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(9,93,64,0.14);
      border: 1px solid var(--bg-alt);
      padding: 6px;
      z-index: 9999;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }
    .nav__login.open .nav__login-menu { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
    .nav__login-item {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 10px; border-radius: 8px;
      font-size: 14px; font-weight: 600;
      color: var(--navy); text-decoration: none;
      transition: all 0.25s ease;
    }
    .nav__login-item:hover { background: var(--bg-alt); color: var(--cta); transform: translateX(4px); }
    .nav__login-item > i {
      width: 26px; height: 26px;
      background: var(--bg-alt); border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: var(--cta);
      flex-shrink: 0; transition: all 0.25s ease;
    }
    .nav__login-item:hover > i { background: var(--cta); color: #fff; }
    .nav__login-item span { font-size: 14px; font-weight: 600; color: inherit; }
    /* Mobile portal links */
    .mobile-nav__portals {
      display: flex; gap: 10px;
      padding: 12px 0 0;
      border-top: 1px solid var(--bg-alt);
      margin-top: 8px;
    }
    .mobile-nav__portal-link {
      flex: 1; display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 10px 12px;
      background: var(--bg-alt);
      border: 1.5px solid var(--bg-alt);
      border-radius: 8px;
      color: var(--navy);
      font-size: 13px; font-weight: 600;
      text-decoration: none; transition: all 0.25s ease;
    }
    .mobile-nav__portal-link:hover { background: var(--cta); border-color: var(--cta); color: #fff; }
    .mobile-nav__portal-link i { color: var(--cta); transition: color 0.25s ease; }
    .mobile-nav__portal-link:hover i { color: #fff; }

    /* ============================================================
       HERO — CAREERS
    ============================================================ */
    .careers-hero {
      background: var(--dark);
      padding: 155px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .careers-hero__bg {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .careers-hero__blob {
      position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12;
    }
    .careers-hero__blob--1 {
      width: 600px; height: 600px; background: var(--lime);
      top: -200px; right: -100px; animation: blobFloat 8s ease-in-out infinite;
    }
    .careers-hero__blob--2 {
      width: 400px; height: 400px; background: var(--accent);
      bottom: -100px; left: -100px; animation: blobFloat 10s ease-in-out infinite reverse;
    }
    .careers-hero__grid-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-40px) scale(1.05); }
    }

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

    .careers-hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,0.15); border: 1px solid rgba(211,225,98,0.3);
      color: var(--lime); font-size: 13px; font-weight: 600;
      padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
    }
    .careers-hero__badge-dot {
      width: 7px; height: 7px; background: var(--lime); border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .careers-hero__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 900; line-height: 1.1; color: var(--white);
      margin-bottom: 20px;
    }
    .careers-hero__title .highlight {
      background: linear-gradient(135deg, var(--lime), var(--lime-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .careers-hero__sub {
      font-size: 18px; color: rgba(255,255,255,0.75);
      line-height: 1.75; margin-bottom: 36px; max-width: 520px;
    }

    .careers-hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    .careers-hero__trust {
      display: flex; align-items: center; gap: 10px;
      margin-top: 28px;
    }
    .careers-hero__avatars { display: flex; }
    .careers-hero__avatar {
      width: 36px; height: 36px; border-radius: 50%;
      border: 2px solid var(--dark); background: var(--bg-alt);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: var(--heading);
      margin-right: -10px; transition: var(--ease);
    }
    .careers-hero__trust-text { font-size: 13px; color: rgba(255,255,255,0.65); }
    .careers-hero__trust-text strong { color: var(--white); }

    /* Right side — role cards preview */
    .careers-hero__roles-preview {
      display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1;
    }
    .hero-role-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border-radius: var(--r-md);
      padding: 18px 20px;
      display: flex; align-items: center; gap: 14px;
      transition: var(--ease);
      animation: slideInRight 0.6s ease forwards;
      opacity: 0;
    }
    .hero-role-card:nth-child(1) { animation-delay: 0.1s; }
    .hero-role-card:nth-child(2) { animation-delay: 0.25s; }
    .hero-role-card:nth-child(3) { animation-delay: 0.4s; }
    .hero-role-card:nth-child(4) { animation-delay: 0.55s; }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .hero-role-card:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(211,225,98,0.4);
      transform: translateX(-4px);
    }
    .hero-role-card__icon {
      width: 44px; height: 44px; border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .hero-role-card__info { flex: 1; }
    .hero-role-card__title { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 3px; }
    .hero-role-card__meta { font-size: 12px; color: rgba(255,255,255,0.55); display: flex; gap: 10px; }
    .hero-role-card__badge {
      font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px;
      background: rgba(211,225,98,0.15); color: var(--lime); white-space: nowrap;
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar {
      background: var(--heading);
      padding: 28px 0;
    }
    .stats-bar__grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      divide: var(--muted); gap: 0;
    }
    .stats-bar__item {
      text-align: center; padding: 12px 24px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stats-bar__item:last-child { border-right: none; }
    .stats-bar__num {
      font-family: var(--font-display); font-size: 32px; font-weight: 900;
      color: var(--lime); line-height: 1; margin-bottom: 4px;
    }
    .stats-bar__label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

    /* ============================================================
       WHY JOIN US — PERKS
    ============================================================ */
    .perks { padding: 64px 0; background: var(--bg); }

    .perks__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .perk-card {
      background: var(--white); border-radius: var(--r-lg);
      padding: 36px 32px; border: 1px solid var(--bg-alt);
      transition: var(--ease); position: relative; overflow: hidden;
    }
    .perk-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--cta), var(--lime));
      transform: scaleX(0); transition: var(--ease); transform-origin: left;
    }
    .perk-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
    .perk-card:hover::before { transform: scaleX(1); }
    .perk-card__icon {
      width: 56px; height: 56px; border-radius: var(--r-md);
      background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: var(--cta); margin-bottom: 20px; transition: var(--ease);
    }
    .perk-card:hover .perk-card__icon { background: var(--cta); color: var(--white); }
    .perk-card__title {
      font-family: var(--font-display); font-size: 19px; font-weight: 800;
      color: var(--heading); margin-bottom: 10px;
    }
    .perk-card__text { font-size: 15px; color: var(--muted); line-height: 1.7; }

    /* ============================================================
       OPEN POSITIONS
    ============================================================ */
    .positions { padding: 64px 0; background: var(--bg-alt); }

    .positions__tabs {
      display: flex; gap: 8px; flex-wrap: wrap;
      justify-content: center; margin-bottom: 48px;
    }
    .positions__tab {
      padding: 9px 20px; border-radius: 100px;
      font-size: 14px; font-weight: 600; cursor: pointer;
      background: var(--white); color: var(--muted); border: 2px solid transparent;
      transition: var(--ease);
    }
    .positions__tab:hover { color: var(--cta); border-color: var(--cta); }
    .positions__tab.active { background: var(--cta); color: var(--white); border-color: var(--cta); }

    .positions__grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    }
    .job-card {
      background: var(--white); border-radius: var(--r-lg);
      border: 1px solid var(--bg-alt); padding: 32px;
      transition: var(--ease); position: relative;
    }
    .job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--cta); }
    .job-card__top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
    .job-card__icon {
      width: 52px; height: 52px; border-radius: var(--r-md); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .job-card__meta { flex: 1; }
    .job-card__title {
      font-family: var(--font-display); font-size: 20px; font-weight: 800;
      color: var(--heading); margin-bottom: 8px;
    }
    .job-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .job-tag {
      font-size: 11px; font-weight: 700; padding: 3px 10px;
      border-radius: 100px; letter-spacing: 0.5px;
    }
    .job-tag--remote   { background: #e3f9f0; color: #00875a; }
    .job-tag--fulltime { background: #e8f4ff; color: #0077cc; }
    .job-tag--parttime { background: #fff4e5; color: #cc7700; }
    .job-tag--freelance{ background: #f3e8ff; color: #7700cc; }
    .job-tag--dept     { background: var(--bg-alt); color: var(--heading); }

    .job-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

    .job-card__requirements { margin-bottom: 24px; }
    .job-card__requirements h4 {
      font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 10px;
    }
    .job-card__requirements ul li {
      font-size: 14px; color: var(--navy); padding: 5px 0;
      display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
    }
    .job-card__requirements ul li::before {
      content: '✓'; color: var(--cta); font-weight: 700; flex-shrink: 0; margin-top: 1px;
    }

    .job-card__footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 20px; border-top: 1px solid var(--bg-alt);
    }
    .job-card__salary { font-size: 14px; color: var(--muted); }
    .job-card__salary strong { color: var(--heading); font-size: 15px; }
    .job-card.hidden { display: none; }

    /* ============================================================
       CULTURE / VALUES
    ============================================================ */
    .culture { padding: 64px 0; background: var(--dark); position: relative; overflow: hidden; }
    .culture__bg-blob {
      position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.08;
      pointer-events: none;
    }
    .culture__bg-blob--1 { width: 500px; height: 500px; background: var(--lime); top: -200px; left: -100px; }
    .culture__bg-blob--2 { width: 400px; height: 400px; background: var(--accent); bottom: -150px; right: -100px; }

    .culture__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
    .culture-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r-lg); padding: 36px 28px;
      text-align: center; transition: var(--ease);
    }
    .culture-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(211,225,98,0.35);
      transform: translateY(-6px);
    }
    .culture-card__icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(211,225,98,0.12); border: 2px solid rgba(211,225,98,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--lime); margin: 0 auto 20px;
    }
    .culture-card__title {
      font-family: var(--font-display); font-size: 21px; font-weight: 800;
      color: var(--white); margin-bottom: 12px;
    }
    .culture-card__text { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; }

    /* ============================================================
       HIRING PROCESS
    ============================================================ */
    .process { padding: 64px 0; background: var(--bg); }
    .process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process__steps::before {
      content: ''; position: absolute; top: 36px; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--cta), var(--lime));
      z-index: 0;
    }
    .process__step {
      text-align: center; padding: 0 20px; position: relative; z-index: 1;
    }
    .process__step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--white); border: 3px solid var(--cta);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 24px; font-weight: 900;
      color: var(--cta); margin: 0 auto 24px;
      box-shadow: var(--shadow-sm); transition: var(--ease);
    }
    .process__step:hover .process__step-num {
      background: var(--cta); color: var(--white);
      transform: scale(1.1);
    }
    .process__step-icon { font-size: 22px; color: var(--cta); margin-bottom: 14px; }
    .process__step-title {
      font-family: var(--font-display); font-size: 17px; font-weight: 800;
      color: var(--heading); margin-bottom: 10px;
    }
    .process__step-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .process__step-days {
      display: inline-block; margin-top: 10px;
      font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
      background: var(--bg-alt); color: var(--heading);
    }

    /* ============================================================
       TEAM TESTIMONIALS
    ============================================================ */
    .team-quotes { padding: 64px 0; background: var(--bg-alt); }
    .team-quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .team-quote-card {
      background: var(--white); border-radius: var(--r-lg);
      padding: 32px; border: 1px solid var(--bg-alt);
      transition: var(--ease);
    }
    .team-quote-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .team-quote-card__stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
    .team-quote-card__text {
      font-size: 15px; color: var(--navy); line-height: 1.75;
      font-style: italic; margin-bottom: 24px;
    }
    .team-quote-card__author { display: flex; align-items: center; gap: 12px; }
    .team-quote-card__avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: var(--heading); flex-shrink: 0;
    }
    .team-quote-card__name { font-weight: 700; color: var(--heading); font-size: 15px; }
    .team-quote-card__role { font-size: 13px; color: var(--muted); }

    /* ============================================================
       NO-ROLE CTA BANNER
    ============================================================ */
    .no-role-cta { padding: 56px 0; background: var(--heading); }
    .no-role-cta__inner {
      text-align: center;
    }
    .no-role-cta__title {
      font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 900; color: var(--white); margin-bottom: 16px;
    }
    .no-role-cta__title span { color: var(--lime); }
    .no-role-cta__sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
    .no-role-cta__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* ============================================================
       APPLICATION MODAL
    ============================================================ */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.6);
      z-index: 9999; display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: var(--ease); padding: 20px;
    }
    .modal-overlay.open { opacity: 1; visibility: visible; }
    .modal {
      background: var(--white); border-radius: var(--r-xl); padding: 48px;
      width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
      position: relative; transform: translateY(20px) scale(0.97);
      transition: var(--ease);
    }
    .modal-overlay.open .modal { transform: translateY(0) scale(1); }
    .modal__close {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--navy); cursor: pointer; transition: var(--ease);
    }
    .modal__close:hover { background: var(--cta); color: var(--white); }
    .modal__role-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg-alt); color: var(--heading); border-radius: 100px;
      font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 5px 14px; margin-bottom: 16px;
    }
    .modal__title {
      font-family: var(--font-display); font-size: 26px; font-weight: 900;
      color: var(--heading); margin-bottom: 6px;
    }
    .modal__sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 13px; font-weight: 700;
      color: var(--navy); margin-bottom: 7px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
      border: 1.5px solid var(--bg-alt); font-family: var(--font-body);
      font-size: 14px; color: var(--navy); background: var(--bg);
      transition: var(--ease); outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--cta); background: var(--white); box-shadow: 0 0 0 3px rgba(0,128,96,0.1); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .file-upload-area {
      border: 2px dashed var(--bg-alt); border-radius: var(--r-md);
      padding: 28px; text-align: center; cursor: pointer;
      transition: var(--ease); background: var(--bg);
    }
    .file-upload-area:hover { border-color: var(--cta); background: rgba(0,128,96,0.03); }
    .file-upload-area i { font-size: 28px; color: var(--cta); margin-bottom: 10px; }
    .file-upload-area p { font-size: 14px; color: var(--muted); }
    .file-upload-area span { font-size: 12px; color: var(--muted); }
    .form-submit-area { margin-top: 28px; }
    .form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
    .form-success {
      display: none; text-align: center; padding: 20px 0;
    }
    .form-success i { font-size: 48px; color: var(--cta); margin-bottom: 16px; }
    .form-success h3 { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .form-success p { font-size: 15px; color: var(--muted); }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer { background: var(--navy); }

    .footer-cta-band { background: var(--dark); padding: 44px 0; }
    .footer-cta-band__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
    }
    .footer-cta-band__eyebrow {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: var(--lime); margin-bottom: 10px;
    }
    .footer-cta-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
    .footer-cta-band__title {
      font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 900;
      color: var(--white); margin-bottom: 12px;
    }
    .footer-cta-band__title span { color: var(--lime); }
    .footer-cta-band__sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 440px; }
    .footer-cta-band__right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
    .footer-cta-band__trust { display: flex; align-items: center; gap: 10px; }
    .footer-cta-band__trust .stars { color: var(--lime); font-size: 14px; }
    .footer-cta-band__trust span { font-size: 13px; color: rgba(255,255,255,0.6); }

    .footer__body { background: #1a2332; padding: 60px 0 40px; }
    .footer__grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr; gap: 40px; }
    .footer__col-title {
      font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--white); margin-bottom: 18px;
    }
    .footer__links li { margin-bottom: 8px; }
    .footer__links a {
      font-size: 14px; color: rgba(255,255,255,0.55);
      display: flex; align-items: center; gap: 8px; transition: var(--ease);
    }
    .footer__links a:hover { color: var(--lime); transform: translateX(4px); }
    .footer__links a i { width: 14px; text-align: center; color: rgba(255,255,255,0.3); }
    .footer__link--cta { color: var(--lime) !important; }
    .footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 16px 0 24px; }
    .footer__logo img { filter: brightness(0) invert(1); }
    .footer__lead { background: rgba(255,255,255,0.05); border-radius: var(--r-md); padding: 18px; margin-bottom: 24px; }
    .footer__lead-label { font-size: 12px; font-weight: 700; color: var(--lime); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .footer__lead-form { display: flex; gap: 8px; }
    .footer__lead-input {
      flex: 1; padding: 10px 14px; border-radius: var(--r-sm);
      border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.07);
      color: var(--white); font-size: 13px; outline: none;
    }
    .footer__lead-input::placeholder { color: rgba(255,255,255,0.35); }
    .footer__lead-input:focus { border-color: var(--lime); }
    .footer__lead-btn {
      width: 40px; height: 40px; background: var(--cta); color: var(--white);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: none; transition: var(--ease);
    }
    .footer__lead-btn:hover { background: var(--lime); color: var(--heading); }
    .footer__lead-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 8px; }
    .footer__social { display: flex; gap: 10px; }
    .footer__social-link {
      width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--ease);
    }
    .footer__social-link:hover { background: var(--cta); color: var(--white); transform: translateY(-3px); }
    .footer__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
    .footer__stat { background: rgba(255,255,255,0.05); border-radius: var(--r-md); padding: 14px; }
    .footer__stat-num { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--lime); }
    .footer__stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; display: block; }
    .footer__badges { display: flex; flex-direction: column; gap: 10px; }
    .footer__badge {
      display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05);
      border-radius: var(--r-md); padding: 12px 16px;
    }
    .footer__badge i { font-size: 20px; color: var(--lime); flex-shrink: 0; }
    .footer__badge strong { display: block; font-size: 13px; color: var(--white); }
    .footer__badge span { font-size: 12px; color: rgba(255,255,255,0.45); }
    .footer__bottom { background: rgba(0,0,0,0.25); padding: 20px 0; }
    .footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer__copyright { font-size: 13px; color: rgba(255,255,255,0.45); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--ease); }
    .footer__legal a:hover { color: var(--lime); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .careers-hero__inner { grid-template-columns: 1fr; gap: 48px; }
      .careers-hero__roles-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
      .perks__grid { grid-template-columns: repeat(2, 1fr); }
      .positions__grid { grid-template-columns: 1fr; }
      .culture__grid { grid-template-columns: 1fr 1fr; }
      .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .process__steps::before { display: none; }
      .team-quotes__grid { grid-template-columns: 1fr 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .careers-hero { padding: 135px 0 70px; }
      .careers-hero__roles-preview { grid-template-columns: 1fr; }
      .perks__grid { grid-template-columns: 1fr; }
      .culture__grid { grid-template-columns: 1fr; }
      .process__steps { grid-template-columns: 1fr; }
      .team-quotes__grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .footer-cta-band__inner { flex-direction: column; }
      .footer-cta-band__right { align-items: flex-start; }
      .footer__bottom-inner { flex-direction: column; text-align: center; }
      .footer__legal { justify-content: center; flex-wrap: wrap; }
      .modal { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .stats-bar__grid { grid-template-columns: 1fr 1fr; }
      .careers-hero__actions { flex-direction: column; width: 100%; }
      .careers-hero__actions .btn { width: 100%; justify-content: center; }
    }
  
@media (max-width: 1100px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }
}
