body {
  margin: 0;
  background: #050505;
  color: #f8fafc;
  font-family: Rubik, Arial, Helvetica, sans-serif;
}

body a {
  color: inherit;
}

.wsp-page-main {
  background: #050505;
}

.wsp-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.wsp-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.wsp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wsp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.wsp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .82) 42%, rgba(0, 0, 0, .38));
}

.wsp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 86px 0;
}

.wsp-eyebrow {
  margin: 0 0 14px;
  color: #f97316;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wsp-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.02;
}

.wsp-hero h1 span {
  color: #f97316;
}

.wsp-hero p {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.65;
}

.wsp-hero .wsp-subtle {
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
}

.wsp-search {
  margin: 28px 0 16px;
}

.wsp-search-row {
  display: flex;
  gap: 12px;
}

.wsp-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 9px;
  padding: 16px 18px;
  color: #111827;
  background: rgba(255, 255, 255, .96);
  font-size: 17px;
  outline: none;
}

.wsp-search button,
.wsp-button {
  border: 0;
  border-radius: 9px;
  padding: 15px 24px;
  color: #fff;
  background: #f97316;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}

.wsp-search button:hover,
.wsp-button:hover {
  background: #ea580c;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.wsp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.wsp-button-secondary {
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1);
}

.wsp-button-secondary:hover {
  background: rgba(255, 255, 255, .18);
}

.wsp-section {
  padding: 72px 0;
}

.wsp-section-dark {
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.wsp-section-black {
  background: #000;
}

.wsp-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.wsp-section-head h2,
.wsp-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

.wsp-section-head p,
.wsp-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.65;
}

.wsp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 54px;
  align-items: start;
}

.wsp-steps {
  display: grid;
  gap: 18px;
}

.wsp-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.wsp-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  background: #f97316;
  font-weight: 900;
}

.wsp-step strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
}

.wsp-step p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  line-height: 1.5;
}

.wsp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.wsp-card {
  display: block;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  background: rgba(24, 24, 27, .76);
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.wsp-card:hover {
  border-color: rgba(249, 115, 22, .55);
  background: #18181b;
  text-decoration: none;
  transform: translateY(-2px);
}

.wsp-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
}

.wsp-card p,
.wsp-card li {
  color: rgba(255, 255, 255, .6);
  line-height: 1.55;
}

.wsp-card ul {
  display: grid;
  gap: 5px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.wsp-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 9px 2px 0;
  border-radius: 999px;
  background: #f97316;
}

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

.wsp-brand {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(24, 24, 27, .62);
}

.wsp-brand strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.wsp-brand span {
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  line-height: 1.4;
}

.wsp-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.wsp-contact-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: #18181b;
}

.wsp-contact-panel label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.wsp-contact-panel input,
.wsp-contact-panel textarea {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: #27272a;
  outline: none;
}

.wsp-contact-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.wsp-footer {
  padding: 46px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #000;
}

.wsp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}

.wsp-footer img {
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}

.wsp-footer p,
.wsp-footer a {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.55;
}

.wsp-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.wsp-footer a:hover {
  color: #f97316;
  text-decoration: none;
}

.wsp-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.wsp-footer .wsp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
}

.wsp-footer-social svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wsp-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.wsp-footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .4);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 960px) {
  .wsp-two-col,
  .wsp-contact,
  .wsp-footer-grid {
    grid-template-columns: 1fr;
  }

  .wsp-card-grid,
  .wsp-category-grid,
  .wsp-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wsp-hero {
    min-height: auto;
  }

  .wsp-hero-content {
    padding: 64px 0;
  }

  .wsp-search-row,
  .wsp-hero-actions {
    display: grid;
  }

  .wsp-card-grid,
  .wsp-category-grid,
  .wsp-brand-grid {
    grid-template-columns: 1fr;
  }
}
