:root {
  --ink: #17331f;
  --muted: #52635a;
  --line: #dce8dc;
  --paper: #f7faf5;
  --white: #ffffff;
  --teal: #11983f;
  --teal-dark: #0b5f2b;
  --coral: #d1e400;
  --gold: #8dc919;
  --blue: #148c3d;
  --shadow: 0 20px 55px rgba(23, 51, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(250, 252, 248, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(23, 51, 31, 0.07);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  color: var(--coral);
  font-size: 1.08rem;
  font-weight: 850;
}

.brand-name span {
  color: var(--gold);
}

.main-nav,
.site-footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-nav a,
.site-footer nav a {
  color: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.header-cta {
  justify-self: end;
  padding: 10px 15px;
  color: var(--teal-dark);
  background: var(--coral);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 72px) 64px;
  color: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 250, 245, 0.99) 0%, rgba(247, 250, 245, 0.95) 48%, rgba(247, 250, 245, 0.38) 76%, rgba(247, 250, 245, 0.12) 100%),
    linear-gradient(180deg, rgba(209, 228, 0, 0.05), rgba(17, 152, 63, 0.10));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 830px;
  font-size: 5.5rem;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.hero .button.primary {
  color: var(--teal-dark);
  background: var(--coral);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 95, 43, 0.28);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 670px;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 43, 0.20);
  border-radius: 8px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: var(--teal-dark);
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
}

section:not(.hero) {
  padding: 78px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading h2,
.cta-section h2 {
  font-size: 3.2rem;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.benchmark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
  background: var(--white);
}

.benchmark-tool,
.result-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.benchmark-tool {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.benchmark-tool label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.benchmark-tool label span {
  color: var(--muted);
  font-size: 0.84rem;
}

select,
input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.benchmark-tool .button {
  align-self: end;
}

.result-panel {
  grid-column: 2;
  padding: 24px;
}

.result-panel h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.salary-band {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.salary-meter {
  position: relative;
  height: 12px;
  overflow: hidden;
  background: #e5eddf;
  border-radius: 99px;
}

.salary-meter span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--position, 50%);
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--gold), var(--coral));
}

.role-section,
.trust-section {
  background: var(--paper);
}

.role-grid,
.method-list,
.insight-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.role-grid article,
.method-list div,
.feature-article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.role-grid h3,
.method-list h3,
.feature-article h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.role-grid p,
.method-list p,
.feature-article p,
.result-panel p,
.faq-section p,
.site-footer p {
  color: var(--muted);
}

.insights-section {
  background: #eef7e7;
}

.feature-article {
  min-height: 250px;
}

.feature-article a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 900;
}

.method-list span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-section {
  background: var(--white);
}

details {
  max-width: 900px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.cta-section {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-section .eyebrow {
  color: var(--coral);
}

.cta-section .button.primary {
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: var(--coral);
}

.site-footer {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #103b22;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .benchmark-band {
    grid-template-columns: 1fr;
  }

  .result-panel {
    grid-column: auto;
  }

  .role-grid,
  .method-list,
  .insight-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 64px;
    padding: 12px 16px;
  }

  .site-header .brand {
    gap: 7px;
    min-width: 0;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
  }

  .site-header .brand-name {
    display: inline-block;
    overflow: hidden;
    font-size: 0.82rem;
    white-space: nowrap;
  }

    .header-cta {
    justify-self: end;
    max-width: 100px;
    padding: 9px 11px;
    overflow: hidden;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 88vh;
    padding: 108px 18px 42px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-stats,
  .benchmark-tool,
  .role-grid,
  .method-list,
  .insight-layout {
    grid-template-columns: 1fr;
  }

  section:not(.hero) {
    padding: 56px 18px;
  }

  .cta-section,
  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
  color: var(--teal);
}

.job-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 56px;
  align-items: center;
  background: #eef7e7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-bridge h2 {
  max-width: 860px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.05;
}

.job-bridge p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.job-bridge-action {
  display: grid;
  gap: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(11, 95, 43, 0.22);
}

.job-bridge-action span {
  padding: 10px 0;
  color: var(--teal-dark);
  border-bottom: 1px solid rgba(11, 95, 43, 0.14);
  font-weight: 750;
}

.job-bridge-action .button {
  margin-top: 20px;
}

.jobs-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 78vh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 74px;
}

.jobs-hero-media,
.jobs-hero-overlay {
  position: absolute;
  inset: 0;
}

.jobs-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.jobs-hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 250, 245, 0.99) 0%, rgba(247, 250, 245, 0.96) 50%, rgba(247, 250, 245, 0.42) 78%, rgba(247, 250, 245, 0.12) 100%),
    linear-gradient(180deg, rgba(209, 228, 0, 0.04), rgba(17, 152, 63, 0.10));
}

.jobs-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  min-width: 0;
}

.jobs-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: 5rem;
  line-height: 1.03;
}

.jobs-hero-content > p:not(.eyebrow) {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.3rem;
}

.jobs-hero .button.primary,
.jobs-cta .button.primary {
  color: var(--teal-dark);
  background: var(--coral);
}

.agency-intro,
.recruitment-process {
  background: var(--white);
}

.sector-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sector-grid article,
.process-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sector-grid span,
.process-grid strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.sector-grid h3,
.process-grid h3 {
  margin: 28px 0 10px;
  font-size: 1.28rem;
}

.sector-grid p,
.process-grid p {
  color: var(--muted);
}

.jobs-role-section {
  background: #eef7e7;
}

.role-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.role-tags span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.jobs-cta {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--teal-dark);
}

.jobs-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.05;
}

.jobs-cta p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.jobs-cta-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 14px;
  min-width: 220px;
  text-align: center;
}

.text-link {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 980px) {
  .job-bridge {
    grid-template-columns: 1fr;
  }

  .job-bridge-action {
    padding-left: 0;
    border-left: 0;
  }

  .sector-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .job-bridge h2,
  .jobs-cta h2 {
    font-size: 2.35rem;
  }

  .jobs-hero {
    align-items: start;
    min-height: auto;
    padding: 140px 18px 56px;
  }

  .jobs-hero h1 {
    font-size: 3rem;
  }

  .jobs-hero-content > p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .sector-grid,
  .process-grid,
  .role-tags {
    grid-template-columns: 1fr;
  }

  .jobs-cta {
    display: grid;
  }

  .jobs-cta-actions {
    width: 100%;
  }
}
