:root {
  --green: #a2d729;
  --green-dark: #2f8a00;
  --blue: #0092d8;
  --blue-dark: #053b5c;
  --ink: #14212b;
  --muted: #5e6d78;
  --line: #dde8ef;
  --surface: #ffffff;
  --soft: #f4f9fb;
  --shadow: 0 24px 60px rgba(5, 59, 92, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--blue-dark);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 72px) 68px;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.96) 0%, rgba(244,249,251,0.94) 44%, rgba(214,241,251,0.75) 100%),
    radial-gradient(circle at 82% 24%, rgba(162,215,41,0.22), transparent 32%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 146, 216, 0.24);
}

.button.secondary {
  background: #fff;
  color: var(--blue-dark);
  border-color: var(--line);
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid rgba(0, 146, 216, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-topline strong {
  color: var(--green-dark);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.talent-grid span {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
}

.talent-grid span:nth-child(even) {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--ink);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.metric-band div {
  padding: 28px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.metric-band span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.section:nth-of-type(odd) {
  background: #fff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.split p {
  color: var(--muted);
  font-size: 1.1rem;
}

.cards {
  display: grid;
  gap: 20px;
}

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

.card,
.trend-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 33, 43, 0.05);
}

.card p,
.trend-grid p {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  background: rgba(162, 215, 41, 0.22);
  border: 1px solid rgba(47, 138, 0, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 8px;
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 4px;
  color: var(--muted);
}

.trend-section {
  background: var(--blue-dark) !important;
}

.trend-section h2,
.trend-section h3 {
  color: #fff;
}

.trend-section .eyebrow {
  color: var(--green);
}

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

.trend-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.trend-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-grid article {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  background: #fff;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #cbdce5;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 146, 216, 0.18);
  border-color: var(--blue);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .trend-grid,
  .steps,
  .faq-grid,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .talent-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
