@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}

:root {
  --white: #ffffff;
  --orange: #ff931e;
  --orange-hover: #ff8502;
  --orange-link: #d97706;
  --ink: #1f2937;
  --muted: rgba(31, 41, 55, 0.74);
  --line: #d1d5db;
  --soft: #fff9f1;
  --soft-2: #fff0df;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --content: 820px;
  --gutter: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--orange-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section__inner > p a {
  color: var(--orange);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.section__inner > p a:hover {
  color: var(--orange-link);
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 16px;
}

.site-header__logo {
  height: 32px;
  width: auto;
}

.hero__inner,
.section__inner,
.final-cta__inner {
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  padding-block: 70px 70px;
}

.section__inner {
  padding-block: 70px;
}

.section__inner--narrow {
  max-width: 700px;
  margin-inline: auto;
}

.final-cta__inner {
  padding-block: 70px 90px;
  border-bottom: 0;
}

.eyebrow {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.section__inner > p,
.final-cta__inner > p,
.hero__lead,
.hero__text {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.hero__lead {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero__text {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.flow-chevron {
  display: block;
  margin: 0 auto 22px;
  color: rgba(31, 41, 55, 0.3);
}

.btn-primary__chevron {
  display: inline-block;
  margin-left: 6px;
}

.btn-primary--hero {
  padding-inline: 60px;
}

.section__closing {
  margin-bottom: 0 !important;
}

.hl {
  color: var(--orange);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  padding: 15px 52px;
  background: var(--orange);
  color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-primary--large {
  padding-inline: 62px;
}

.btn-secondary {
  margin: 4px 0 30px;
  padding: 13px 30px;
  color: var(--orange);
  background: #ffffff;
  border: 1px solid rgba(31, 41, 55, 0.16);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.05);
}

.btn-secondary:hover {
  color: var(--orange-link);
  border-color: rgba(255, 147, 30, 0.45);
}

.secure-note {
  margin-top: 14px;
  color: rgba(31, 41, 55, 0.58);
  font-size: 13px;
}

.price-card,
.notice-card,
.quote-card,
.requirements-card,
.include-card,
.step-card,
.expectation {
  background: linear-gradient(165deg, var(--soft) 0%, var(--soft-2) 100%);
  border: 1px solid rgba(255, 147, 30, 0.28);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
}

.price-card {
  max-width: 620px;
  margin: 38px auto 24px;
  border-radius: 24px;
  padding: 30px 34px;
  text-align: left;
}

.price-card__top {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 147, 30, 0.22);
}

.price-card__plan,
.price-card__price,
.price-card__period {
  display: block;
}

.price-card__plan {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price-card__price {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.price-card__period {
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 13px;
  font-size: 16px;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
}

.notice-card {
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 24px 28px;
  border-radius: 18px;
  text-align: left;
}

.notice-card p {
  font-size: 16px;
  line-height: 1.55;
}

.notice-card p + p {
  margin-top: 14px;
}

.notice-card__title {
  font-weight: 600;
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 147, 30, 0.22);
}

.notice-card a {
  color: var(--orange);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.notice-card a:hover {
  color: var(--orange-link);
}

.pricing-chevron {
  display: block;
  margin: 0 auto 22px;
  color: rgba(31, 41, 55, 0.3);
}

.cost-callout {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 24px;
  border: 2px solid var(--orange);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f4 100%);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
}

.cost-callout span,
.cost-callout strong,
.cost-callout small {
  display: block;
}

.cost-callout span {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 5px;
}

.cost-callout strong {
  font-size: 40px;
  line-height: 1.3;
}

.cost-callout small {
  font-size: 15px;
  color: var(--muted);
  margin-top: 5px;
}

.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 36px auto 34px;
}

.include-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  text-align: left;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
}

.include-card span:first-child {
  width: 24px;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  text-align: center;
}

.section__inner > p.tight-below {
  margin-bottom: 24px;
}

.pipeline-chevron {
  margin-bottom: 22px;
}

.quote-card {
  max-width: 620px;
  margin: 0 auto 34px;
  padding: 0;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 68px 1fr;
  overflow: hidden;
  text-align: left;
}

.quote-card__icon {
  display: grid;
  place-items: center;
  padding: 24px 14px;
  border-right: 1px solid rgba(255, 147, 30, 0.22);
  font-size: 22px;
}

.quote-card p {
  padding: 24px 26px;
  font-size: 16px;
}

.steps {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 36px auto 36px;
}

.step-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  text-align: left;
}

.step-card__number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-weight: 600;
}

.step-card h3,
.expectation h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}

.step-card p,
.expectation p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.requirements-card {
  max-width: 500px;
  margin: 34px auto 24px;
  padding: 26px 28px;
  border-radius: 18px;
  text-align: left;
}

.requirements-card__meta-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 14px;
}

.requirements-card__title {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 147, 30, 0.22);
}

.requirements-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 16px;
}

.requirements-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
}

.meta-setup-chevron {
  margin-bottom: 22px;
}

.setup-accordion {
  max-width: 500px;
  margin: 0 auto 34px;
  display: grid;
  gap: 16px;
  text-align: left;
}

.setup-accordion__item {
  background: #ffffff;
  border: 1px solid rgba(31, 41, 55, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 41, 55, 0.04);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.setup-accordion__item[open] {
  background: linear-gradient(165deg, #fff9f1 0%, #fff0df 100%);
  border-color: rgba(255, 147, 30, 0.28);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
}

.setup-accordion__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.setup-accordion__question::-webkit-details-marker {
  display: none;
}

.setup-accordion__icon {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

.setup-accordion__item[open] .setup-accordion__icon {
  transform: translateY(-1px) rotate(45deg);
}

.setup-accordion__answer {
  padding: 0 20px 20px;
  color: rgba(31, 41, 55, 0.84);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.setup-accordion__answer a {
  color: var(--orange);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.setup-accordion__answer a:hover {
  color: var(--orange-link);
}

.expectations {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 36px auto 34px;
}

.expectation {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 17px;
  text-align: left;
}

.expectation > span {
  font-size: 18px;
  line-height: 1.3;
}

.signature {
  font-weight: 600;
  margin-bottom: 0 !important;
}

.final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
}

.final-cta__inner > p {
  max-width: 680px;
  margin-inline: auto;
}

.final-cta__note {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  color: var(--muted);
  font-size: 15px !important;
}

.footer {
  background: var(--ink);
  color: #ffffff;
  padding: 46px var(--gutter) 18px;
}

.footer__inner {
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
}

.footer__logo {
  width: 264px;
  height: auto;
  margin: 0 auto 16px;
}

.footer__tagline {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 16px;
}

.footer__chevron {
  display: block;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__website {
  display: inline-block;
  color: var(--orange);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__website:hover {
  color: var(--orange-link);
}

.footer__divider {
  width: 100%;
  height: 1px;
  margin: 28px auto 18px;
  background: rgba(255, 255, 255, 0.14);
}

.footer__bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 29px;
  }

  .section__inner > p,
  .final-cta__inner > p,
  .hero__lead,
  .hero__text {
    font-size: 18px;
  }

  .include-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 639px) {
  :root {
    --gutter: 24px;
  }

  .hero__inner {
    padding-block: 46px 62px;
  }

  .section__inner {
    padding-block: 58px;
  }

  .final-cta__inner {
    padding-block: 58px 72px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .btn-primary {
    display: block;
    width: 100%;
    padding-inline: 24px;
  }

  .price-card,
  .notice-card,
  .requirements-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .price-card__price {
    font-size: 42px;
  }

  .step-card {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 19px 18px;
  }

  .step-card__number {
    width: 28px;
    height: 28px;
  }

  .expectation {
    padding: 18px;
  }

  .quote-card {
    grid-template-columns: 58px 1fr;
  }

  .quote-card__icon {
    padding: 20px 10px;
  }

  .quote-card p {
    padding: 20px;
  }

  .cost-callout strong {
    font-size: 42px;
  }
}

/* CTA attention animation: same pattern as the main Leads4Talent site */
.btn-shake {
  animation: btn-tada 4s ease-in-out infinite;
}

@keyframes btn-tada {
  0%     { transform: scale(1) rotate(0); }
  8%     { transform: scale(0.9) rotate(0); }
  17%    { transform: scale(1.05) rotate(0); }
  21%    { transform: scale(1.04) rotate(3deg); }
  25%    { transform: scale(1.03) rotate(-3deg); }
  29%    { transform: scale(1.02) rotate(2deg); }
  33%    { transform: scale(1.01) rotate(-1.5deg); }
  37.5%  { transform: scale(1) rotate(0); }
  100%   { transform: scale(1) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-shake {
    animation: none;
  }
}

.final-cta .eyebrow {
  margin-bottom: 12px;
}
