:root {
  --trade-yellow: #f2b827;
  --trade-yellow-soft: #fff4d3;
  --trade-dark: #171819;
  --trade-steel: #3e454b;
}

.trade-hero {
  padding: 76px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(242, 184, 39, .16) 0 19%, transparent 19% 100%),
    linear-gradient(135deg, #fff 0%, #fff 58%, #f1f2f3 100%);
}

.trade-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.trade-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trade-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.trade-breadcrumb a:hover,
.trade-breadcrumb a:focus-visible {
  color: var(--red);
}

.trade-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 78px);
}

.trade-lead {
  max-width: 690px;
  margin-top: 25px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.trade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trade-price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trade-price-note strong {
  color: var(--ink);
}

.trade-hero-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  align-content: center;
  padding: 60px 34px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, .04) 18px 36px),
    var(--trade-dark);
  box-shadow: var(--shadow);
}

.trade-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 24px;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--trade-yellow);
}

.trade-hero-visual img {
  width: 100%;
  border-radius: 12px;
}

.trade-visual-label {
  position: absolute;
  top: 22px;
  left: 28px;
  color: var(--trade-yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trade-floating-card {
  position: absolute;
  min-width: 220px;
  padding: 15px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .2);
}

.trade-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.trade-floating-card strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.trade-floating-call {
  right: 18px;
  bottom: 24px;
}

.trade-floating-proof {
  left: 12px;
  top: 72px;
}

.trade-proof {
  background: var(--trade-dark);
  color: #fff;
}

.trade-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.trade-proof-grid div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 24px;
  background: var(--trade-dark);
}

.trade-proof-grid strong {
  font-size: 18px;
}

.trade-proof-grid span {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.trade-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: start;
}

.trade-intro h2,
.trade-section-head h2,
.trade-documents-copy h2,
.trade-team-grid h2,
.trade-offer h2,
.trade-faq-layout h2,
.trade-final-cta h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4.3vw, 60px);
}

.trade-intro-copy {
  padding: 8px 0 8px 30px;
  border-left: 4px solid var(--trade-yellow);
}

.trade-intro-copy p,
.trade-section-head p,
.trade-documents-copy > p,
.trade-team-grid > div > p,
.trade-offer > div > p,
.trade-faq-layout > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.trade-intro-copy p + p,
.trade-documents-copy > p + p {
  margin-top: 18px;
}

.trade-benefits-section,
.trade-journey-section,
.trade-professions-section,
.trade-faq-section {
  background: #f5f5f4;
}

.trade-section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.trade-section-head.compact {
  max-width: 780px;
}

.trade-section-head p {
  max-width: 760px;
  margin-top: 18px;
}

.trade-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trade-benefit-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.trade-card-number {
  width: 52px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--trade-yellow-soft);
  color: #6f4c00;
  font-size: 13px;
  font-weight: 900;
}

.trade-benefit-card h3 {
  margin-top: 28px;
  font-size: 29px;
}

.trade-benefit-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.trade-benefit-card strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--trade-steel);
  font-size: 15px;
  line-height: 1.5;
}

.trade-documents-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: 70px;
  align-items: center;
}

.trade-documents-copy > p {
  margin-top: 18px;
}

.trade-check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.trade-check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 800;
}

.trade-check-list li::before,
.trade-offer-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 950;
}

.trade-links-demo {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--trade-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.trade-demo-kicker {
  color: var(--trade-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trade-links-demo h3 {
  margin-top: 10px;
  font-size: 30px;
}

.trade-link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.trade-link-list span {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  font-weight: 800;
}

.trade-link-list b {
  color: var(--trade-yellow);
}

.trade-placements-section {
  background: var(--trade-yellow-soft);
}

.trade-placement-grid {
  display: grid;
  grid-template-columns: minmax(380px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.trade-placement-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--trade-dark);
  color: #fff;
}

.trade-placement-visual img {
  width: 100%;
  border-radius: 12px;
}

.trade-placement-visual p {
  margin-top: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.6;
}

.trade-placement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trade-placement-list article {
  padding: 24px;
  border: 1px solid rgba(23, 24, 25, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.trade-placement-list article > span {
  color: #8c6505;
  font-size: 12px;
  font-weight: 900;
}

.trade-placement-list h3 {
  margin-top: 8px;
  font-size: 20px;
}

.trade-placement-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trade-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trade-journey article {
  min-height: 255px;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
}

.trade-journey article > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.trade-journey h3 {
  margin-top: 52px;
  font-size: 28px;
}

.trade-journey p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.trade-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
  gap: 70px;
  align-items: center;
}

.trade-team-grid > div > p {
  margin-top: 20px;
}

.trade-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.trade-feature-list span {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.trade-feature-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--red);
}

.trade-physical-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--trade-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.trade-physical-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.trade-physical-card div {
  padding: 30px;
}

.trade-physical-card span {
  color: var(--trade-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-physical-card h3 {
  margin-top: 10px;
  font-size: 30px;
}

.trade-physical-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}

.trade-profession-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trade-profession-list span {
  padding: 15px 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
}

.trade-offer-section {
  background: var(--trade-dark);
  color: #fff;
}

.trade-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .72fr);
  gap: 70px;
  align-items: center;
}

.trade-offer .eyebrow {
  color: var(--trade-yellow);
}

.trade-offer > div > p {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .66);
}

.trade-offer-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.trade-offer-price {
  font-size: 72px;
  font-weight: 950;
  letter-spacing: -.06em;
}

.trade-offer-price small {
  display: block;
  margin-top: -6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.trade-offer-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.trade-offer-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.trade-offer-panel .button {
  width: 100%;
  justify-content: center;
}

.trade-offer-panel > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.trade-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.trade-faq-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.trade-faq-layout > div > p {
  margin-top: 20px;
}

.trade-faq-layout a {
  color: var(--red);
  font-weight: 850;
}

.trade-faq-list {
  display: grid;
  gap: 10px;
}

.trade-faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.trade-faq-list summary {
  position: relative;
  padding: 22px 34px 22px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.trade-faq-list summary::-webkit-details-marker {
  display: none;
}

.trade-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--red);
  font-size: 22px;
}

.trade-faq-list details[open] summary::after {
  content: "−";
}

.trade-faq-list details p {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.trade-final-cta {
  padding: 92px 0;
  background: var(--trade-yellow);
  color: var(--trade-dark);
}

.trade-final-cta .wrap {
  max-width: 920px;
  text-align: center;
}

.trade-final-cta .eyebrow {
  color: var(--trade-dark);
}

.trade-final-cta h2 {
  margin-top: 12px;
}

.trade-final-cta p {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(23, 24, 25, .72);
  font-size: 18px;
}

.trade-final-cta .trade-actions {
  justify-content: center;
}

.trade-final-cta .button.ghost {
  border-color: var(--trade-dark);
  background: var(--trade-dark);
  color: #fff;
}

.trade-contact-link {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--trade-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .trade-hero-grid,
  .trade-intro-grid,
  .trade-documents-grid,
  .trade-placement-grid,
  .trade-team-grid,
  .trade-offer,
  .trade-faq-layout {
    grid-template-columns: 1fr;
  }

  .trade-hero {
    padding-top: 62px;
  }

  .trade-hero-visual {
    min-height: 430px;
  }

  .trade-proof-grid,
  .trade-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-intro-copy {
    padding-left: 22px;
  }

  .trade-documents-grid,
  .trade-team-grid,
  .trade-offer,
  .trade-faq-layout {
    gap: 40px;
  }

  .trade-placement-grid {
    gap: 22px;
  }

  .trade-faq-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 560px) {
  .trade-hero-copy h1 {
    font-size: clamp(38px, 10.7vw, 46px);
  }

  .trade-hero-visual {
    min-height: 330px;
    padding: 68px 18px 72px;
  }

  .trade-hero-visual::before {
    inset: 12px -8px -12px 12px;
  }

  .trade-floating-card {
    min-width: 0;
    padding: 12px 14px;
  }

  .trade-floating-card strong {
    font-size: 13px;
  }

  .trade-floating-proof {
    left: 10px;
    top: 54px;
  }

  .trade-floating-call {
    right: 10px;
    bottom: 16px;
  }

  .trade-proof-grid,
  .trade-benefits-grid,
  .trade-placement-list,
  .trade-journey,
  .trade-feature-list,
  .trade-link-list {
    grid-template-columns: 1fr;
  }

  .trade-proof-grid div {
    min-height: 86px;
  }

  .trade-benefit-card {
    min-height: 300px;
    padding: 27px 23px;
  }

  .trade-links-demo,
  .trade-placement-visual,
  .trade-offer-panel {
    padding: 26px 22px;
  }

  .trade-link-list span {
    min-height: 68px;
  }

  .trade-offer-price {
    font-size: 60px;
  }
}
