body {
  background: #f5f7f4;
}

#career {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #000000;
  padding: 10px 40px 20px 40px;
  background-color: #ffffff;
}

#main {
  max-width: 1152px;
  margin: 0 auto;
  background: var(--bg, #f5f7f4);
  --bg: #f5f7f4;
  --g900: #08351a;
  --g800: #0a4c24;
  --g700: #0e6b31;
  --g600: #12833b;
  --g100: #e3f1e5;
  --g50: #f2f8f2;
  --lime: #7dba2f;
  --lime-soft: #edf6de;
  --ink: #101828;
  --gray700: #344054;
  --gray600: #475467;
  --gray500: #667085;
  --gray400: #98a2b3;
  --gray200: #eaecf0;
  --gray100: #f2f4f7;
  text-align: left;
  color: var(--ink);
}

#main a {
  color: var(--g700);
  text-decoration: none;
}
#main a:hover {
  color: var(--g800);
}

/* hero */
.zk-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--g700) 0%, var(--g800) 62%, var(--g900) 100%);
  color: #fff;
  padding: 48px 40px 60px;
}
.zk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.zk-hero-smile {
  position: absolute;
  right: -120px;
  top: -190px;
  width: 560px;
  height: 560px;
  pointer-events: none;
  opacity: 0.5;
}
.zk-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  align-items: center;
}
.zk-logo-chip {
  display: inline-flex;
  background: #fff;
  border-radius: 18px;
  padding: 14px 26px;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.45);
  transform: rotate(-1.5deg);
}
.zk-logo-chip img {
  height: 56px;
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
}
.zk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 22px 0 16px;
}
.zk-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.zk-hero h1 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.zk-hero h1 .lime {
  color: #b9e378;
}
.zk-hero > .zk-hero-grid > div > p {
  margin: 0 0 28px !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 46ch;
}
.zk-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.zk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.zk-btn-white {
  background: #fff;
  color: var(--g800) !important;
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.5);
}
.zk-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.55);
}
.zk-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}
.zk-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
.zk-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.zk-hero-photo .blob {
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--lime);
  border-radius: 26px;
  transform: rotate(2.5deg);
  opacity: 0.9;
}
.zk-hero-photo .zk-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  border: 5px solid #fff;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.2deg);
  padding: 0;
  margin: 0;
  opacity: 0;
  animation: zk-slide-fade 32s infinite;
}
/* nth-of-type, not nth-child: .blob is the actual first child */
.zk-hero-photo .zk-slide:nth-of-type(1) { animation-delay: 0s; }
.zk-hero-photo .zk-slide:nth-of-type(2) { animation-delay: 4s; }
.zk-hero-photo .zk-slide:nth-of-type(3) { animation-delay: 8s; }
.zk-hero-photo .zk-slide:nth-of-type(4) { animation-delay: 12s; }
.zk-hero-photo .zk-slide:nth-of-type(5) { animation-delay: 16s; }
.zk-hero-photo .zk-slide:nth-of-type(6) { animation-delay: 20s; }
.zk-hero-photo .zk-slide:nth-of-type(7) { animation-delay: 24s; }
.zk-hero-photo .zk-slide:nth-of-type(8) { animation-delay: 28s; }
/* each slide fades in over 1s, holds, then fades out during the NEXT
   slide's fade-in window (delay+4s to delay+5s) so they cross-fade
   instead of both hitting opacity 0 at the same instant */
@keyframes zk-slide-fade {
  0% { opacity: 0; }
  3.125% { opacity: 1; }
  12.5% { opacity: 1; }
  15.625% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .zk-hero-photo .zk-slide {
    animation: none;
    opacity: 0;
  }
  .zk-hero-photo .zk-slide:nth-of-type(1) {
    opacity: 1;
  }
}

/* stats */
.zk-stats {
  position: relative;
  z-index: 2;
  margin: -40px 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.zk-stat {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 12px 30px -14px rgba(8, 53, 26, 0.25), 0 2px 6px -3px rgba(8, 53, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid var(--lime);
}
.zk-stat b {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--g700);
}
.zk-stat span {
  font-size: 14px;
  color: var(--gray600);
  font-weight: 500;
}

/* sections */
.zk-section {
  padding: 64px 20px 0;
}
.zk-eyebrow-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--g600);
  margin: 0 0 10px;
}
#main .zk-section h2 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.zk-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray600);
}

/* about */
.zk-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.zk-about p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--gray600) !important;
  margin: 0 0 16px !important;
}
.zk-about p b {
  color: var(--ink);
}
.zk-benefits {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: 22px;
  padding: 30px 32px;
}
.zk-benefits h3 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--g900);
}
.zk-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.zk-benefits li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray700);
  font-weight: 500;
}
.zk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* process */
.zk-steps {
  margin-top: 40px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.zk-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 46px;
  right: 46px;
  border-top: 2px dashed #bfdcc6;
}
.zk-step {
  position: relative;
}
.zk-step .num {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g700);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px #fff;
}
.zk-step:last-child .num {
  background: var(--lime);
  color: var(--g900);
}
.zk-step h4 {
  margin: 0 0 7px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.zk-step p {
  margin: 0 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: var(--gray600) !important;
}

/* contact banner */
.zk-banner {
  margin: 64px 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--g800), var(--g900));
  color: #fff;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.zk-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.zk-banner h2 {
  color: #fff !important;
  font-size: 30px;
  margin-bottom: 10px;
}
.zk-banner .zk-sub {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}
.zk-contact-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zk-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 13px 16px;
  transition: all 0.15s;
  color: #fff !important;
  text-decoration: none !important;
}
.zk-contact:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}
.zk-contact .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--g900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zk-contact b {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.zk-contact span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

/* offers */
.zk-offers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.zk-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g100);
  color: var(--g800);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.zk-count-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g600);
}
@keyframes zk-shimmer {
  100% { transform: translateX(100%); }
}
.zk-skel {
  position: relative;
  overflow: hidden;
  background: var(--gray100);
  border-radius: 6px;
}
.zk-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: zk-shimmer 1.4s infinite;
}
.zk-offer.is-loading {
  gap: 10px;
}
.zk-offer.is-loading .zk-skel-title {
  height: 18px;
  width: 70%;
}
.zk-offer.is-loading .zk-skel-line {
  height: 13px;
  width: 45%;
}
.zk-offer.is-loading .zk-skel-text {
  height: 13px;
  width: 100%;
  margin-top: 6px;
}
.zk-offer.is-loading .zk-skel-text:last-of-type {
  width: 80%;
}
.zk-offer.is-loading .zk-skel-foot {
  height: 13px;
  width: 40%;
  margin-top: auto;
}
#main ul#results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.zk-offer {
  background: #fff;
  border: 1px solid var(--gray200);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.18s;
}
.zk-offer:hover {
  border-color: var(--g600);
  box-shadow: 0 14px 32px -16px rgba(14, 107, 49, 0.3);
  transform: translateY(-3px);
}
.zk-offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.zk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime-soft);
  color: #4c7519;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 700;
}
.zk-ago {
  font-size: 12.5px;
  color: var(--gray400);
  font-weight: 500;
}
.zk-offer h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.zk-offer h3 a {
  color: var(--ink);
}
.zk-offer:hover h3 a {
  color: var(--g700);
}
.zk-offer-co {
  font-size: 13.5px;
  color: var(--gray500);
  font-weight: 500;
  margin-top: -6px;
}
.zk-offer-snip {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray600);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zk-offer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
}
.zk-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray600);
  font-weight: 500;
}
.zk-loc svg {
  color: var(--g600);
  flex-shrink: 0;
}
.zk-apply {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--g700);
}
.zk-apply .arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}
.zk-offer:hover .zk-apply .arr {
  background: var(--g700);
  color: #fff;
}
.zk-offer.is-hidden {
  display: none;
}
#zk-offers-more {
  margin: 22px 0 64px;
  display: flex;
  justify-content: center;
}
.zk-btn-more {
  background: #fff;
  border-color: #d0d5dd;
  color: var(--gray700);
}
.zk-btn-more:hover {
  border-color: var(--g600);
  color: var(--g700);
  background: var(--g50);
}

@media (max-width: 900px) {
  .zk-hero-grid {
    grid-template-columns: 1fr;
  }
  .zk-hero-photo {
    order: -1;
  }
  .zk-stats {
    grid-template-columns: 1fr;
    margin: 20px 0 0;
  }
  .zk-about {
    grid-template-columns: 1fr;
  }
  .zk-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .zk-banner {
    grid-template-columns: 1fr;
  }
  #main ul#results {
    grid-template-columns: 1fr;
  }
}

/* phone: flatten the nested section/card padding so it doesn't compound
   with #main's own padding and squeeze content down to a sliver */
@media (max-width: 640px) {
  .zk-section {
    padding: 40px 0 0;
  }
  .zk-hero {
    padding: 32px 22px 40px;
    border-radius: 20px;
  }
  .zk-hero h1 {
    font-size: 27px;
  }
  .zk-logo-chip img {
    height: 40px;
  }
  #main .zk-section h2 {
    font-size: 24px;
  }
  .zk-stat {
    padding: 18px 20px;
  }
  .zk-benefits {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .zk-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .zk-steps::before {
    display: none;
  }
  .zk-banner {
    margin: 40px 0 0;
    padding: 26px 20px;
    border-radius: 20px;
  }
  .zk-contact {
    padding: 12px 14px;
  }
  #main ul#results {
    gap: 14px;
  }
}
