.ipride-b2b {
  --b2b-navy: #071a3a;
  --b2b-blue: #0b71ef;
  --b2b-blue-dark: #075ac4;
  --b2b-muted: #60718d;
  --b2b-line: #dce8f5;
  --b2b-soft: #f4f9ff;
  color: var(--b2b-navy);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.ipride-b2b__container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.ipride-b2b__hero {
  padding: 76px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 15%, rgba(54, 151, 255, .22), transparent 34%),
    linear-gradient(135deg, #f9fcff 0%, #eaf5ff 58%, #f8fbff 100%);
  border-bottom: 1px solid var(--b2b-line);
}

.ipride-b2b__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .78fr);
  gap: 48px;
  align-items: center;
}

.ipride-b2b__eyebrow,
.ipride-b2b__section-head > span {
  display: inline-flex;
  align-items: center;
  color: var(--b2b-blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ipride-b2b__hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(46px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.ipride-b2b__hero-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--b2b-muted);
  font-size: 19px;
  line-height: 1.6;
}

.ipride-b2b__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ipride-b2b__button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.ipride-b2b__button--primary {
  color: #fff;
  background: linear-gradient(135deg, #1684ff, #075fdc);
  box-shadow: 0 14px 32px rgba(11, 113, 239, .24);
}

.ipride-b2b__button--primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #0e75e9, var(--b2b-blue-dark));
}

.ipride-b2b__button--secondary {
  color: var(--b2b-blue);
  background: rgba(255, 255, 255, .86);
  border-color: #bad8f7;
}

.ipride-b2b__button--secondary:hover {
  color: var(--b2b-blue-dark);
  background: #fff;
}

.ipride-b2b__button .ipride-b2b__icon {
  width: 19px;
  height: 19px;
}

.ipride-b2b__hero-panel {
  position: relative;
  padding: 36px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #082c60, #075fdc);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7, 46, 98, .24);
}

.ipride-b2b__hero-panel::after {
  position: absolute;
  right: -54px;
  bottom: -78px;
  width: 190px;
  height: 190px;
  content: "";
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.ipride-b2b__hero-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
}

.ipride-b2b__hero-mark .ipride-b2b__icon {
  width: 32px;
  height: 32px;
}

.ipride-b2b__hero-panel strong {
  display: block;
  font-size: 26px;
}

.ipride-b2b__hero-panel p {
  position: relative;
  z-index: 1;
  margin: 12px 0 26px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  line-height: 1.65;
}

.ipride-b2b__hero-panel a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.ipride-b2b__hero-panel a .ipride-b2b__icon {
  width: 18px;
  height: 18px;
}

.ipride-b2b__trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.ipride-b2b__trust > div {
  display: flex;
  min-height: 72px;
  padding: 16px 20px;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(190, 216, 242, .9);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(29, 80, 135, .08);
  font-size: 14px;
  font-weight: 700;
}

.ipride-b2b__trust .ipride-b2b__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--b2b-blue);
}

.ipride-b2b__section {
  padding: 82px 0;
}

.ipride-b2b__section--soft {
  background: var(--b2b-soft);
  border-block: 1px solid #e5eff9;
}

.ipride-b2b__section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.ipride-b2b__section-head h2,
.ipride-b2b__form-copy h2,
.ipride-b2b__complex-copy h2,
.ipride-b2b__equipment h2,
.ipride-b2b__price-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.ipride-b2b__section-head > p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--b2b-muted);
  font-size: 17px;
  line-height: 1.65;
}

.ipride-b2b__cards {
  display: grid;
  gap: 18px;
}

.ipride-b2b__cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ipride-b2b__cards--benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ipride-b2b__card,
.ipride-b2b__capabilities > div,
.ipride-b2b__steps > li {
  background: #fff;
  border: 1px solid var(--b2b-line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(24, 67, 113, .07);
}

.ipride-b2b__card {
  min-height: 250px;
  padding: 26px;
}

.ipride-b2b__icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--b2b-blue);
  background: #edf6ff;
  border: 1px solid #d6eaff;
  border-radius: 14px;
}

.ipride-b2b__icon-box .ipride-b2b__icon {
  width: 26px;
  height: 26px;
}

.ipride-b2b__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.ipride-b2b__card p {
  margin: 0;
  color: var(--b2b-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.ipride-b2b__capabilities > div {
  display: flex;
  min-height: 94px;
  padding: 20px 22px;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

.ipride-b2b__capabilities .ipride-b2b__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--b2b-blue);
}

.ipride-b2b__card--benefit {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  gap: 20px;
}

.ipride-b2b__card--benefit .ipride-b2b__icon-box {
  flex: 0 0 auto;
  margin: 0;
}

.ipride-b2b__complex-grid,
.ipride-b2b__equipment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 64px;
  align-items: center;
}

.ipride-b2b__complex-copy p,
.ipride-b2b__equipment-grid > div:first-child > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--b2b-muted);
  font-size: 17px;
  line-height: 1.68;
}

.ipride-b2b__text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--b2b-blue);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.ipride-b2b__text-link .ipride-b2b__icon {
  width: 18px;
  height: 18px;
}

.ipride-b2b__experience-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #071f47, #0b71ef);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(7, 46, 98, .22);
}

.ipride-b2b__experience-card strong,
.ipride-b2b__experience-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.ipride-b2b__experience-card strong {
  font-size: clamp(72px, 8vw, 104px);
  letter-spacing: -.07em;
  line-height: .95;
}

.ipride-b2b__experience-card span {
  max-width: 240px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.ipride-b2b__experience-card > .ipride-b2b__icon {
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 190px;
  height: 190px;
  color: rgba(255, 255, 255, .11);
}

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

.ipride-b2b__equipment-list > div {
  display: flex;
  min-height: 82px;
  padding: 18px;
  align-items: center;
  gap: 12px;
  color: var(--b2b-navy);
  background: #fff;
  border: 1px solid var(--b2b-line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(24, 67, 113, .06);
  font-size: 14px;
  font-weight: 750;
}

.ipride-b2b__equipment-list .ipride-b2b__icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--b2b-blue);
}

.ipride-b2b__steps {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  counter-reset: b2b-step;
}

.ipride-b2b__steps > li {
  position: relative;
  min-height: 170px;
  padding: 26px;
}

.ipride-b2b__steps > li > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--b2b-blue);
  border-radius: 12px;
  font-weight: 800;
}

.ipride-b2b__steps strong {
  font-size: 16px;
  line-height: 1.45;
}

.ipride-b2b__price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  padding: 44px;
  align-items: center;
  color: #fff;
  background: linear-gradient(145deg, #061b3d, #073d82);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(7, 46, 98, .18);
}

.ipride-b2b__price-card .ipride-b2b__eyebrow {
  color: #70baff;
}

.ipride-b2b__price-card h2 {
  color: #fff;
}

.ipride-b2b__price-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.6;
}

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

.ipride-b2b__related-grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 90px;
  padding: 20px;
  align-items: center;
  gap: 13px;
  color: var(--b2b-navy);
  background: #fff;
  border: 1px solid var(--b2b-line);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(24, 67, 113, .06);
  font-weight: 750;
  text-decoration: none;
}

.ipride-b2b__related-grid .ipride-b2b__icon {
  width: 24px;
  height: 24px;
  color: var(--b2b-blue);
}

.ipride-b2b__related-grid > a .ipride-b2b__icon:last-child {
  width: 18px;
  height: 18px;
}

.ipride-b2b__form-section {
  background: linear-gradient(145deg, #061b3d, #07336d);
}

.ipride-b2b__form-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(560px, 1.2fr);
  gap: 64px;
  align-items: start;
}

.ipride-b2b__form-copy {
  position: sticky;
  top: 110px;
  color: #fff;
}

.ipride-b2b__form-copy .ipride-b2b__eyebrow {
  color: #6ab6ff;
}

.ipride-b2b__form-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.65;
}

.ipride-b2b__form-note {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.5;
}

.ipride-b2b__form-note .ipride-b2b__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.ipride-b2b__form-card {
  padding: 34px;
  color: var(--b2b-navy);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(0, 14, 38, .24);
}

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

.ipride-b2b__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

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

.ipride-b2b__field > span {
  font-size: 13px;
  font-weight: 700;
}

.ipride-b2b__field small {
  color: var(--b2b-muted);
  font-weight: 500;
}

.ipride-b2b__field input,
.ipride-b2b__field select,
.ipride-b2b__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--b2b-navy);
  background: #fbfdff;
  border: 1px solid #cfddeb;
  border-radius: 10px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.ipride-b2b__field textarea {
  min-height: 110px;
  resize: vertical;
}

.ipride-b2b__field input:focus,
.ipride-b2b__field select:focus,
.ipride-b2b__field textarea:focus {
  border-color: var(--b2b-blue);
  box-shadow: 0 0 0 3px rgba(11, 113, 239, .12);
}

.ipride-b2b__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--b2b-muted);
  font-size: 13px;
  line-height: 1.45;
}

.ipride-b2b__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--b2b-blue);
}

.ipride-b2b__submit {
  width: 100%;
  border: 0;
}

.ipride-b2b__notice {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.ipride-b2b__notice--success {
  color: #0b663b;
  background: #eafaf2;
  border: 1px solid #bcebd2;
}

.ipride-b2b__notice--error {
  color: #9d2931;
  background: #fff1f2;
  border: 1px solid #f4c8cc;
}

.ipride-b2b__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ipride-b2b__icon {
  display: block;
  fill: none;
  stroke: currentColor;
}

@media (max-width: 1023px) {
  .ipride-b2b__hero {
    padding-top: 56px;
  }

  .ipride-b2b__hero-grid,
  .ipride-b2b__form-grid,
  .ipride-b2b__complex-grid,
  .ipride-b2b__equipment-grid {
    grid-template-columns: 1fr;
  }

  .ipride-b2b__hero-panel {
    max-width: 680px;
  }

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

  .ipride-b2b__cards--four,
  .ipride-b2b__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ipride-b2b__form-copy {
    position: static;
  }
}

@media (max-width: 767px) {
  .ipride-b2b__container {
    width: min(100% - 32px, 620px);
  }

  .ipride-b2b__hero {
    padding: 42px 0 34px;
  }

  .ipride-b2b__hero-grid {
    gap: 28px;
  }

  .ipride-b2b__hero h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .ipride-b2b__hero-copy > p {
    font-size: 16px;
  }

  .ipride-b2b__hero-actions {
    display: grid;
  }

  .ipride-b2b__hero-panel {
    padding: 28px;
  }

  .ipride-b2b__trust,
  .ipride-b2b__capabilities,
  .ipride-b2b__cards--four,
  .ipride-b2b__cards--benefits,
  .ipride-b2b__steps,
  .ipride-b2b__related-grid {
    grid-template-columns: 1fr;
  }

  .ipride-b2b__section {
    padding: 58px 0;
  }

  .ipride-b2b__section-head h2,
  .ipride-b2b__form-copy h2,
  .ipride-b2b__complex-copy h2,
  .ipride-b2b__equipment h2,
  .ipride-b2b__price-card h2 {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  .ipride-b2b__experience-card {
    min-height: 270px;
    padding: 28px;
  }

  .ipride-b2b__experience-card strong {
    font-size: clamp(72px, 23vw, 88px);
  }

  .ipride-b2b__equipment-list {
    grid-template-columns: 1fr;
  }

  .ipride-b2b__price-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

  .ipride-b2b__price-card .ipride-b2b__button {
    width: 100%;
  }

  .ipride-b2b__card {
    min-height: 0;
  }

  .ipride-b2b__card--benefit {
    min-height: 0;
  }

  .ipride-b2b__steps > li {
    display: flex;
    min-height: 0;
    align-items: center;
    gap: 16px;
  }

  .ipride-b2b__steps > li > span {
    flex: 0 0 auto;
    margin: 0;
  }

  .ipride-b2b__form-card {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .ipride-b2b__form {
    grid-template-columns: 1fr;
  }

  .ipride-b2b__field--full {
    grid-column: auto;
  }
}
