:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #14212d;
  background: #f7f8f5;
  --ink: #14212d;
  --muted: #536170;
  --line: #dce4df;
  --paper: #ffffff;
  --wash: #eef4ec;
  --green: #176b4d;
  --green-dark: #0f4c37;
  --gold: #c7952f;
  --blue: #1e5d88;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(20, 33, 45, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #384859;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid var(--green);
  padding: 0 16px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(20, 33, 45, 0.18);
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  overflow: hidden;
  background: #0f241b;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 24, 0.9) 0%, rgba(10, 31, 24, 0.68) 44%, rgba(10, 31, 24, 0.16) 100%),
    url("/assets/images/athithy-guest-workers-hero-1400.jpg") center right / cover no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  align-content: center;
  max-width: 1120px;
  min-height: min(720px, calc(100vh - 72px));
  margin: 0 auto;
  padding: 64px 20px 96px;
}

.hero-content {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7eadf;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 22px 0 0;
  max-width: 580px;
  color: #edf7f1;
  font-size: clamp(18px, 2vw, 22px);
}

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

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -42px;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(21, 39, 31, 0.12);
}

.trust-item {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--ink);
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 20px;
}

.section.alt {
  background: var(--wash);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p,
.text-page p,
.text-page li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  border-radius: 8px;
  padding: 34px;
  background: var(--ink);
  color: #fff;
}

.contact-band p {
  color: #d9e2e8;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  color: #fff;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.text-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 20px 84px;
}

.text-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
}

.updated {
  margin-top: 8px;
  color: #687789;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(10, 31, 24, 0.92) 0%, rgba(10, 31, 24, 0.72) 58%, rgba(10, 31, 24, 0.36) 100%),
      url("/assets/images/athithy-guest-workers-hero-820.jpg") center / cover no-repeat;
  }

  .trust-inner,
  .grid.three,
  .grid.two,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(10, 31, 24, 0.92) 0%, rgba(10, 31, 24, 0.72) 58%, rgba(10, 31, 24, 0.36) 100%),
      url("/assets/images/athithy-guest-workers-hero-480.jpg") center / cover no-repeat;
  }
}
