:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #e6dfcf;
  --paper: #ffffff;
  --white: #ffffff;
  --green: #c99a2e;
  --green-dark: #8d6614;
  --teal: #111111;
  --coral: #d6a43a;
  --gold: #d6a43a;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 164, 58, 0.3);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.panel-head,
.candidate-card,
.form-footer,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-link {
  padding: 10px 14px;
  color: var(--green-dark);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  gap: clamp(32px, 6vw, 78px);
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px) 56px;
  background:
    linear-gradient(120deg, rgba(214, 164, 58, 0.16), transparent 42%),
    radial-gradient(circle at 94% 28%, rgba(17, 17, 17, 0.08), transparent 30%),
    var(--paper);
}

.hero-copy {
  max-width: 680px;
  align-self: center;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 15vw, 9.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  padding: 9px 11px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  background: #fff3d1;
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 999px;
}

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

.button.primary {
  color: var(--ink);
  background: var(--green);
}

.button.primary:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.workbench {
  align-self: center;
  width: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-head strong,
.candidate-card strong {
  display: block;
}

.panel-kicker,
.candidate-card span,
.price-box span,
.price-box small,
.form-footer span,
.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.status {
  padding: 7px 10px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  background: #f7e9bf;
  border-radius: 999px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.metric-grid > div {
  padding: 14px;
  background: #fff8e8;
  border-radius: 8px;
}

.metric-grid span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric-grid strong {
  font-size: 1.65rem;
}

.pipeline {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 82px 1fr 42px;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.bar {
  height: 10px;
  overflow: hidden;
  background: #eee7d7;
  border-radius: 999px;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ink), var(--gold));
  border-radius: inherit;
}

.candidate-card {
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: #fff8e8;
  border: 1px solid #e9cf87;
  border-radius: 8px;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
  background: var(--gold);
  border-radius: 8px;
}

.candidate-card > div:nth-child(2) {
  flex: 1;
}

.candidate-card button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--green-dark);
  font-weight: 800;
  background: var(--white);
  border: 1px solid #ecd6a2;
  border-radius: 8px;
}

.section,
.category-section,
.pricing,
.selection-section,
.form-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.section-title {
  max-width: 820px;
  margin-bottom: 28px;
}

.category-section {
  background: #fffaf0;
}

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

.category-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 280px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.category-card.dark {
  color: var(--white);
  background: var(--ink);
}

.category-card p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.category-card.dark p {
  color: #f4dfaa;
}

.category-card .button {
  justify-self: start;
}

.category-badge {
  width: fit-content;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--gold);
  border-radius: 999px;
}

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

.feature-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.34);
  border-radius: 8px;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
  background: var(--gold);
  border-radius: 8px;
}

.feature-grid p,
.section-title p,
.pricing p,
.form-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.selection-section {
  color: var(--white);
  background: var(--ink);
}

.selection-section .section-title p {
  color: #f4dfaa;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(150px, 1fr));
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 8px;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(214, 164, 58, 0.18);
}

.candidate-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 14px;
}

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

.talent-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 8px;
}

.talent-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.talent-card h3 {
  margin-bottom: 4px;
}

.talent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.talent-actions {
  display: flex;
  justify-content: flex-end;
}

.talent-actions .button {
  min-height: 38px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.42);
  border-radius: 8px;
}

.tag {
  padding: 7px 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  background: #fff3d1;
  border-radius: 999px;
}

.tag.ok {
  color: var(--ink);
  background: #f2d483;
}

.tag.pending {
  color: var(--ink);
  background: #f8e6b7;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: var(--ink);
}

.pricing .eyebrow,
.pricing p {
  color: #f4dfaa;
}

.pricing h2 span {
  display: block;
  margin-top: 8px;
  color: #f4dfaa;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
}

.price-box {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.price-box strong {
  display: block;
  margin: 8px 0;
  font-size: 2.3rem;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(270px, 410px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.34);
  border-radius: 8px;
}

.contact-card a,
.contact-card strong {
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(214, 164, 58, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: #2a2a2a;
  font-size: 0.9rem;
  font-weight: 800;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  background: #fff8e8;
  border: 1px solid rgba(214, 164, 58, 0.34);
  border-radius: 8px;
}

.checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(214, 164, 58, 0.18);
}

.full {
  grid-column: 1 / -1;
}

.form-footer {
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.form-footer strong {
  display: block;
  margin-top: 3px;
  font-size: 1.45rem;
}

footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

footer a {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .category-grid,
  .pricing,
  .selection-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .filter-panel,
  .candidate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .phone-link {
    width: 100%;
    text-align: center;
  }

  .metric-grid,
  .category-grid,
  .feature-grid,
  .filter-panel,
  .candidate-list,
  .request-form {
    grid-template-columns: 1fr;
  }

  .pipeline-row {
    grid-template-columns: 74px 1fr 38px;
    gap: 8px;
  }

  .candidate-card,
  .form-footer,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .candidate-card button,
  .form-footer .button {
    width: 100%;
  }
}
