/* Supplier landing — premium B2B tone */
.om-slp {
  --om-slp-navy: #0f172a;
  --om-slp-navy-soft: #1e293b;
  --om-slp-gold: #b8860b;
  --om-slp-gold-light: #faf6eb;
  --om-slp-line: rgba(15, 23, 42, 0.08);
  --om-slp-process: #0d1425;
}

/* Hero */
.om-slp-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 72vh, 760px);
  padding: 72px 0 80px;
  background: var(--om-slp-navy);
  border-bottom: none;
}
.om-slp-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--om-container);
  max-width: 100%;
  margin-inline: auto;
}
.om-slp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.om-slp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.om-slp-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.4) 52%, rgba(15, 23, 42, 0.28) 100%);
  pointer-events: none;
}
.om-slp-hero__panel {
  max-width: 720px;
  margin: 0;
  padding: 32px 36px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}
.om-slp-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}
.om-slp-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.om-slp-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  max-width: none;
  margin-bottom: 32px;
}
.om-slp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.om-slp-hero__btn {
  padding: 14px 24px;
  font-weight: 600;
}
.om-slp-hero__btn--outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.om-slp-hero__btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.om-slp-hero__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 420px;
}

/* Sections */
.om-slp-section {
  padding: 80px 0;
}
.om-slp-section--muted {
  background: var(--om-surface);
  border-block: 1px solid var(--om-border);
}
.om-slp-section--process {
  background: var(--om-slp-process);
  border-block: none;
}
.om-slp-section--process .om-slp-section__title {
  color: #fff;
}
.om-slp-section--process .om-slp-steps__note {
  color: rgba(255, 255, 255, 0.72);
}
.om-slp-section--trust {
  background: var(--om-slp-navy);
  color: #fff;
}
.om-slp-section--trust .om-slp-section__title,
.om-slp-section--trust .om-slp-section__lead {
  color: #fff;
}
.om-slp-section--trust .om-slp-section__lead {
  opacity: 0.82;
}
.om-slp-section--cta {
  background: linear-gradient(180deg, #fff 0%, var(--om-surface) 100%);
}
.om-slp-section--faq {
  padding-bottom: 96px;
}
.om-slp-section__inner {
  max-width: none;
}
.om-slp-section__head {
  max-width: 840px;
  margin-bottom: 48px;
}
.om-slp-section__head--center {
  margin-inline: auto;
  text-align: center;
}
.om-slp-section__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--om-slp-navy);
  margin-bottom: 16px;
}
.om-slp-section__title--center {
  text-align: center;
  margin-bottom: 40px;
}
.om-slp-section__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--om-muted);
}

/* Value list */
.om-slp-list--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.om-slp-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
}
.om-slp-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--om-blue);
  background: var(--om-blue-light);
  border-radius: 10px;
}
.om-slp-list__item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--om-text);
}

/* Split / checklist */
.om-slp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.om-slp-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.om-slp-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--om-text);
}
.om-slp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--om-blue);
}

/* Cards */
.om-slp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.om-slp-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.om-slp-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--om-shadow-sm);
}
.om-slp-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--om-slp-navy);
}
.om-slp-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--om-muted);
  margin: 0;
}

/* Steps */
.om-slp-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0 28px;
  counter-reset: none;
  list-style: none;
  padding: 0;
}
.om-slp-steps__item {
  position: relative;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius);
  text-align: center;
}
.om-slp-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--om-slp-navy);
  border-radius: 50%;
}
.om-slp-steps__item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--om-text);
}
.om-slp-steps__note {
  text-align: center;
  font-size: 15px;
  color: var(--om-muted);
  max-width: 640px;
  margin-inline: auto;
}

/* Tiers */
.om-slp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.om-slp-tier {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
}
.om-slp-tier--featured {
  border-color: var(--om-blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}
.om-slp-tier__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--om-blue);
  background: var(--om-blue-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.om-slp-tier__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--om-slp-navy);
}
.om-slp-tier__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--om-muted);
  margin: 0;
}
.om-slp-tiers__note {
  text-align: center;
  font-size: 14px;
  color: var(--om-muted);
}

/* Trust */
.om-slp-trust {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}

/* CTA form */
.om-slp-cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.om-slp-form-wrap {
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
  padding: 32px;
  box-shadow: var(--om-shadow-sm);
}
.om-slp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.om-slp-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.om-slp-form__field--full {
  margin-bottom: 20px;
}
.om-slp-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--om-text);
}
.om-slp-form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius);
  background: #fff;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.om-slp-form__input:focus {
  outline: none;
  border-color: var(--om-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.om-slp-form__input.is-error {
  border-color: #dc2626;
}
.om-slp-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.om-slp-form__error {
  font-size: 12px;
  color: #dc2626;
}
.om-slp-form__submit {
  width: 100%;
  padding: 14px 24px;
  font-weight: 600;
}
.om-slp-form-success {
  padding: 24px;
  background: var(--om-green-light);
  border: 1px solid #bbf7d0;
  border-radius: var(--om-radius);
  text-align: center;
}
.om-slp-form-success strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--om-green);
}
.om-slp-form-success p {
  font-size: 15px;
  color: var(--om-muted);
  margin: 0;
}

/* FAQ */
.om-slp-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(420px, 38%);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.om-slp-faq-layout__main {
  min-width: 0;
}
.om-slp-faq-layout__main .om-slp-section__title {
  margin-bottom: 32px;
}
.om-slp-faq-layout__visual {
  margin: 0;
  position: sticky;
  top: 96px;
}
.om-slp-faq-layout__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.om-slp-faq-layout .om-faq,
.om-slp-faq {
  margin-top: 0;
  max-width: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .om-slp-split,
  .om-slp-cta,
  .om-slp-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .om-slp-faq-layout__visual {
    position: static;
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
  .om-slp-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .om-slp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .om-slp-tiers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .om-slp-hero {
    min-height: 460px;
    padding: 48px 0 56px;
  }
  .om-slp-hero__panel {
    padding: 24px 20px;
  }
  .om-slp-section {
    padding: 56px 0;
  }
  .om-slp-hero__actions {
    flex-direction: column;
  }
  .om-slp-hero__btn {
    width: 100%;
  }
  .om-slp-form__row {
    grid-template-columns: 1fr;
  }
  .om-slp-list--grid {
    grid-template-columns: 1fr;
  }
  .om-slp-steps {
    grid-template-columns: 1fr;
  }
  .om-slp-form-wrap {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .om-slp-hero__video {
    animation: none;
  }
}
