:root {
  --ink: #17212b;
  --muted: #5f6c78;
  --line: #d9e2ea;
  --paper: #ffffff;
  --soft: #f3f7f6;
  --teal: #0c7280;
  --green: #2f8f72;
  --coral: #d9654b;
  --gold: #c9902f;
  --shadow: 0 18px 44px rgba(19, 42, 54, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 226, 234, 0.86);
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(46px, 8vw, 92px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(108deg, rgba(12, 75, 86, 0.94), rgba(47, 143, 114, 0.74)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: #fff;
}

.hero-copy {
  max-width: 820px;
}

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

.hero .eyebrow {
  color: #ffd37c;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(90, 37, 26, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.availability-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.availability-panel div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.availability-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.availability-panel strong {
  color: var(--teal);
  font-size: 30px;
  line-height: 1.1;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 16px;
  background: #fff;
  color: var(--teal);
  font-weight: 800;
  text-align: center;
}

.section,
.industry-band,
.contact,
.proof,
.fee-band {
  padding: 74px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p:last-child,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.advertising-section {
  background: #fff;
}

.ad-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.ad-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ad-packages article,
.ad-request-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(21, 49, 57, 0.06);
}

.ad-packages article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
}

.ad-packages h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.ad-packages p {
  color: var(--muted);
  line-height: 1.58;
}

.ad-packages strong {
  color: var(--teal);
}

.paypal-subscribe-slot {
  min-height: 48px;
  margin-top: 8px;
}

.paypal-placeholder {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.package-label {
  width: max-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.featured-package {
  border-color: rgba(217, 101, 75, 0.42);
  background: linear-gradient(180deg, #fff, #fff7f4);
}

.ad-request-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.hidden-field {
  display: none;
}

input[type="file"] {
  padding: 10px;
  border-style: dashed;
  background: var(--soft);
}

.renewal-choice {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.renewal-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

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

.service-grid article,
.filters,
.candidate-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(21, 49, 57, 0.06);
}

.service-grid article {
  overflow: hidden;
}

.service-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid div {
  padding: 18px;
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.service-grid p,
.candidate-card p {
  color: var(--muted);
  line-height: 1.58;
}

.industry-band {
  background: var(--soft);
}

.fee-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fee-band p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.fee-steps {
  display: grid;
  gap: 10px;
}

.fee-steps span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-weight: 800;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span,
.tag {
  padding: 10px 13px;
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font-weight: 800;
}

.finder {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: #2d3942;
  font-size: 14px;
  font-weight: 800;
}

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

input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

.result-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.result-bar strong {
  color: var(--ink);
}

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

.candidate-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 20px;
  padding: 20px;
}

.candidate-card h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.candidate-meta,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.candidate-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.tags span {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.score {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 10px;
}

.score strong {
  color: var(--teal);
  font-size: 32px;
}

.score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof {
  background: var(--teal);
  color: #fff;
}

.proof blockquote {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.proof span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 36px;
  align-items: start;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(12, 114, 128, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.phone-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(12, 114, 128, 0.22);
}

.phone-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

.success-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 7vw, 88px);
  background: var(--soft);
}

.success-page img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 24px;
}

.success-page h1 {
  max-width: 760px;
  color: var(--ink);
}

.success-page p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.footer-brand img {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.chatbot-toggle {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 18px 34px rgba(92, 38, 26, 0.28);
  cursor: pointer;
}

.chatbot-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: grid;
  width: min(360px, calc(100vw - 44px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--teal);
  color: #fff;
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.chatbot-close {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: 300px;
  min-height: 190px;
  overflow-y: auto;
  padding: 14px;
  background: var(--soft);
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message.bot {
  justify-self: start;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.chat-message.user {
  justify-self: end;
  background: var(--teal);
  color: #fff;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 0;
}

.chatbot-suggestions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 14px 14px;
}

.chatbot-form input {
  min-width: 0;
}

.chatbot-form button {
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 0 14px;
  cursor: pointer;
}

dialog {
  width: min(620px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(9, 23, 31, 0.5);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.dialog-body {
  padding: 30px;
}

.dialog-body h3 {
  padding-right: 38px;
  font-size: 28px;
}

.dialog-body dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  margin: 20px 0;
}

.dialog-body dt {
  color: var(--muted);
  font-weight: 800;
}

.dialog-body dd {
  margin: 0;
}

@media (max-width: 1060px) {
  .service-grid,
  .ad-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero,
  .finder,
  .ad-layout,
  .contact,
  .fee-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .filters {
    position: static;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .service-grid,
  .ad-packages,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .candidate-card {
    grid-template-columns: 1fr;
  }

  .score {
    justify-items: start;
  }

  footer {
    flex-direction: column;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }
}
