:root {
  --black: #080808;
  --charcoal: #151515;
  --ink: #242424;
  --yellow: #ffd21f;
  --yellow-deep: #e4ad00;
  --white: #ffffff;
  --paper: #f7f7f2;
  --steel: #67717e;
  --line: rgba(8, 8, 8, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 31, 0.42);
  border-radius: 8px;
  background: var(--black);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--font-display);
  line-height: 1.05;
}

.brand small {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-body);
  font-weight: 750;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--yellow);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.nav .nav-phone {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 210, 31, 0.46);
  border-radius: 999px;
  color: var(--yellow);
  white-space: nowrap;
}

.nav .nav-phone::after {
  display: none;
}

.nav .nav-phone:hover {
  background: rgba(255, 210, 31, 0.14);
}

.nav a.btn-small {
  color: var(--black);
}

.nav a.btn-small::after {
  display: none;
}

.nav a.btn-small:hover {
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(255, 210, 31, 0.22);
}

.btn-primary:hover {
  background: #ffe05e;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-call {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-small {
  min-height: 40px;
  padding-inline: 15px;
  background: var(--yellow);
  color: var(--black);
}

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(34px, 7vw, 84px) clamp(18px, 6vw, 78px);
  padding-top: 110px;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  position: relative;
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.typing-wrap {
  position: relative;
  display: block;
}

.typing-ghost {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.typing-live {
  position: absolute;
  inset: 0;
  display: block;
}

.typing-text {
  white-space: normal;
}

.js .typing-text {
  visibility: hidden;
}

.js .typing-text.is-typing-ready {
  visibility: visible;
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
  background: var(--yellow);
  animation: cursor-blink 850ms steps(1) infinite;
}

.typing-text.is-typing-complete + .typing-cursor {
  visibility: hidden;
  animation: none;
}

@keyframes cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.82);
}

.hero-stats strong {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.reveal.is-visible {
  animation: reveal-up 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms) both;
}

.reveal.reveal-complete {
  will-change: auto;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.cred-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
  color: var(--white);
}

.cred-band div {
  padding: clamp(24px, 4vw, 42px);
  background: var(--charcoal);
}

.cred-band strong,
.cred-band span {
  display: block;
}

.cred-band strong {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.05rem;
}

.cred-band span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(250px, 0.72fr) minmax(300px, 0.9fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.11) 0 32%, transparent 32%),
    var(--paper);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 54px);
  border: 1px solid rgba(8, 8, 8, 0.08);
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  align-self: center;
}

.about-copy p {
  color: var(--steel);
  line-height: 1.68;
}

.about-spotlight {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 30px;
  min-height: 440px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-spotlight::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--yellow);
}

.about-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 31, 0.45);
  border-radius: 10px;
  background: var(--black);
}

.about-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-spotlight > p {
  max-width: 320px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.about-stats {
  display: grid;
  gap: 10px;
}

.about-stats span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.about-stats strong {
  color: var(--yellow);
}

.about-proof {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.about-proof div {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.about-proof div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: var(--yellow);
}

.about-proof span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 950;
}

.about-proof h3 {
  margin-bottom: 6px;
}

.about-proof p {
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.58;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  max-width: 560px;
  position: sticky;
  top: 110px;
}

.section-copy p,
.section-heading p,
.cta p {
  color: var(--steel);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-bottom: 3px solid var(--yellow);
  background: transparent;
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

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

.job-grid article,
.detail-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.job-grid article {
  min-height: 220px;
  padding: 24px;
}

.job-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--yellow-deep);
  font-weight: 950;
}

.job-grid p,
.detail-list p {
  color: var(--steel);
  line-height: 1.58;
}

.offers-section {
  background: #eceee7;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  display: grid;
  align-content: space-between;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-card span {
  color: var(--steel);
  font-weight: 850;
}

.offer-card h3 {
  margin: 22px 0 8px;
  color: var(--black);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.offer-card p {
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.55;
}

.offer-card-strong {
  background: var(--black);
  color: var(--white);
}

.offer-card-strong span,
.offer-card-strong h3 {
  color: var(--yellow);
}

.offer-card-strong p {
  color: rgba(255, 255, 255, 0.72);
}

.truck-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.truck-strip strong,
.truck-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
}

.truck-strip strong {
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

.truck-strip span {
  border: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
}

.partner-section {
  background: var(--black);
  color: var(--white);
}

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

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

.detail-list div {
  padding: 24px;
  background: #111;
  border-color: rgba(255, 255, 255, 0.16);
}

.detail-list p {
  color: rgba(255, 255, 255, 0.68);
}

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

.partner-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 430px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #111;
}

.partner-card-company {
  background: #ffffff;
  color: var(--black);
}

.partner-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-card h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.partner-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.partner-card-company p {
  color: var(--steel);
}

.partner-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.48;
}

.partner-card-company li {
  color: var(--steel);
}

.partner-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.partner-card .btn {
  width: fit-content;
  margin-top: auto;
}

.btn-company-call {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-company-call:hover {
  background: #242424;
}

.faq-section {
  background: #eceee7;
}

.faq-list {
  column-count: 2;
  column-gap: 14px;
  margin: 0;
  padding: 0;
}

.faq-list details {
  break-inside: avoid;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(228, 173, 0, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 20px 22px;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 22px 22px;
  color: var(--steel);
  line-height: 1.62;
}

.faq-list details[open] p {
  animation: faq-answer-in 220ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background: var(--yellow);
  color: var(--black);
}

.cta .eyebrow {
  color: rgba(0, 0, 0, 0.7);
}

.cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.72);
}

.cta .btn-primary {
  flex: 0 0 auto;
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cta-actions .btn-quiet {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.2);
}

.footer {
  display: grid;
  gap: 28px;
  padding: clamp(42px, 6vw, 68px) clamp(18px, 5vw, 72px) 24px;
  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.55fr) minmax(240px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  max-width: 500px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 450px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-links a:hover,
.footer-cta a:hover {
  color: var(--yellow);
}

.footer-cta {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-cta span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-phone {
  color: var(--yellow);
  font-size: 1.15rem;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer .btn {
  color: var(--black);
}

.footer .btn-primary:hover {
  color: var(--black);
}

.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-actions > span {
  color: rgba(255, 255, 255, 0.58);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
}

.back-to-top:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scheduler,
.success-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: auto;
  box-shadow: var(--shadow);
}

.scheduler::backdrop,
.success-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.scheduler[open],
.success-dialog[open] {
  animation: dialog-in 220ms ease both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scheduler-panel,
.success-panel {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.scheduler-head {
  max-width: 620px;
  margin-bottom: 24px;
}

.scheduler-head .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--black);
}

.scheduler-head p:not(.eyebrow) {
  color: var(--steel);
  line-height: 1.55;
}

.scheduler-phone {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 4px;
  padding: 9px 12px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 999px;
  background: #fbfbf7;
  color: var(--black);
  font-weight: 900;
}

.scheduler-phone:hover {
  border-color: var(--yellow-deep);
  background: rgba(255, 210, 31, 0.18);
}

.scheduler-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2px 0 30px;
  padding: 0;
  list-style: none;
}

.scheduler-steps::before {
  content: "";
  position: absolute;
  left: 16.666%;
  right: 16.666%;
  top: 16px;
  height: 2px;
  background: rgba(8, 8, 8, 0.16);
}

.scheduler-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 8px;
  background: transparent;
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.scheduler-steps span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(8, 8, 8, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 0 0 8px var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.scheduler-steps .is-active,
.scheduler-steps .is-complete {
  color: var(--black);
  transform: translateY(-1px);
}

.scheduler-steps .is-active span,
.scheduler-steps .is-complete span {
  border-color: var(--yellow-deep);
  background: var(--yellow);
  color: var(--black);
}

.scheduler-steps .is-active span {
  transform: scale(1.08);
}

.scheduler-stage {
  overflow: hidden;
}

.form-step {
  display: grid;
  gap: 18px;
}

.form-step.is-active {
  animation: step-in 240ms ease both;
}

.form-step[hidden] {
  display: none;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(8, 8, 8, 0.11);
  border-radius: 8px;
  background: #ffffff;
  transition: opacity 180ms ease, transform 180ms ease, max-height 260ms ease;
}

.form-section.is-locked {
  max-height: 0;
  overflow: hidden;
  padding-block: 0;
  border-color: transparent;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.form-section.is-revealed {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.form-section h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.section-note {
  margin: -6px 0 0;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.choice-grid,
.date-options,
.time-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  font-weight: 850;
}

.choice-card,
.date-card,
.time-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 8px;
  background: #fbfbf7;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.choice-card:hover,
.date-card:hover,
.time-card:hover {
  border-color: rgba(228, 173, 0, 0.7);
  transform: translateY(-1px);
}

.choice-card input,
.date-card input,
.time-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card span,
.date-card span,
.time-card span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.choice-card:has(input:checked),
.date-card:has(input:checked),
.time-card:has(input:checked),
.choice-card.is-selected,
.date-card.is-selected,
.time-card.is-selected {
  border-color: var(--yellow-deep);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.date-card {
  align-content: stretch;
  justify-items: stretch;
  gap: 0;
  min-height: 116px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbf7 100%);
  text-align: left;
}

.date-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 160ms ease;
}

.date-card-day,
.date-card-month,
.date-card strong {
  position: relative;
  z-index: 1;
}

.date-card-day {
  display: block;
  padding: 13px 14px 10px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.date-card strong {
  display: block;
  padding: 12px 14px 4px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 0.92;
}

.date-card-month {
  display: block;
  padding: 0 14px 14px;
  color: var(--steel);
  font-weight: 850;
}

.date-card:has(input:checked)::after,
.date-card.is-selected::after {
  opacity: 1;
}

.date-card:has(input:checked) .date-card-day,
.date-card:has(input:checked) .date-card-month,
.date-card.is-selected .date-card-day,
.date-card.is-selected .date-card-month {
  color: rgba(255, 255, 255, 0.72);
}

.time-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: 246px;
  overflow: auto;
  padding: 2px 5px 2px 2px;
}

.time-card {
  min-height: 52px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.92rem;
  box-shadow: inset 0 0 0 1px rgba(8, 8, 8, 0.02);
}

.time-card:has(input:checked),
.time-card.is-selected {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.time-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(8, 8, 8, 0.22);
  border-radius: 8px;
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.turnstile-section {
  display: grid;
  justify-items: start;
}

.turnstile-widget {
  min-height: 0;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 8px;
  background: #fbfbf7;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow-deep);
}

.consent-field span {
  font-weight: 800;
}

.consent-field a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.consent-error {
  margin-top: -8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfbf7;
  color: var(--ink);
  font-family: var(--font-body);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.22);
}

label[data-invalid] input,
label[data-invalid] select,
label[data-invalid] textarea {
  border-color: #b3261e;
  background: #fff8f7;
  box-shadow: 0 0 0 4px rgba(179, 38, 30, 0.08);
}

label[data-valid] input,
label[data-valid] select,
label[data-valid] textarea {
  border-color: rgba(52, 97, 62, 0.62);
  background: #fbfff9;
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

textarea {
  resize: vertical;
}

.field-error {
  min-height: 16px;
  color: #b3261e;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

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

legend {
  margin-bottom: 8px;
  font-weight: 850;
}

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

.segmented label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: 6px;
  background: #fbfbf7;
}

.form-message {
  min-height: 24px;
  margin: 18px 0 0;
  color: #34613e;
  font-weight: 800;
}

.form-message[data-state="error"] {
  color: #b3261e;
}

.form-message[data-state="loading"] {
  color: var(--steel);
}

.form-message[data-state="success"] {
  color: #34613e;
}

.scheduler-panel[data-submitting="true"] {
  cursor: progress;
}

.scheduler-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.success-dialog {
  width: min(560px, calc(100% - 28px));
}

.legal-hero {
  position: relative;
  padding: 150px clamp(18px, 5vw, 72px) clamp(48px, 7vw, 78px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    var(--black);
  color: var(--white);
}

.legal-hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  height: 7px;
  background: var(--yellow);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 72px);
}

.legal-section {
  position: relative;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.6vw, 1.78rem);
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: var(--steel);
  line-height: 1.68;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-section li::marker {
  color: var(--yellow-deep);
}

.legal-section a {
  color: var(--black);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-note {
  border-color: rgba(228, 173, 0, 0.42);
  border-left: 7px solid var(--yellow);
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.12), rgba(255, 255, 255, 0)),
    #fbfbf7;
}

.success-panel {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.success-panel h2 {
  margin-bottom: 0;
}

.success-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.6;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
}

.success-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .nav a,
  .nav .btn {
    justify-content: flex-start;
    padding: 14px;
  }

  .nav .nav-phone {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 14px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  }

  .hero-content {
    margin-inline: 18px;
  }

  .cred-band,
  .about-section,
  .split,
  .offers-grid,
  .detail-list,
  .partner-grid,
  .faq-list,
  .choice-grid,
  .choice-grid-wide {
    grid-template-columns: 1fr;
  }

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

  .faq-list {
    column-count: 1;
  }

  .scheduler-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 22px;
  }

  .scheduler-steps::before {
    left: 16.666%;
    right: 16.666%;
    top: 12px;
  }

  .scheduler-steps li {
    gap: 6px;
    min-height: 44px;
    padding: 0 2px;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .scheduler-steps span {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
    box-shadow: 0 0 0 6px var(--white);
  }

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

  .date-card {
    min-height: 104px;
  }

  .date-card strong {
    font-size: 2rem;
  }

  .about-section {
    background: var(--paper);
  }

  .about-section::before {
    display: none;
  }

  .about-spotlight {
    min-height: 320px;
  }

  .about-proof div {
    grid-template-columns: 1fr;
  }

  .about-proof span {
    grid-row: auto;
    margin-bottom: 18px;
  }

  .section-copy {
    position: static;
  }

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

  .cta,
  .cta-actions,
  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .scheduler-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

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

  .scheduler {
    width: calc(100% - 16px);
  }
}
