.wd-page,
.wd-page *,
.wd-page *::before,
.wd-page *::after {
  box-sizing: border-box;
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

.wd-page {
  --wd-blue: #0b121d;
  --wd-blue-soft: #121c2b;
  --wd-red: #e9232b;
  --wd-red-dark: #bf1720;
  --wd-white: #ffffff;
  --wd-off-white: #f5f7fa;
  --wd-light-gray: #e2e7ee;
  --wd-mid-gray: #717987;
  --wd-text: #0b121d;
  --wd-border: rgba(11, 18, 29, 0.12);
  --wd-content-width: 1200px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--wd-white);
  color: var(--wd-text);
  line-height: 1.6;
}

@supports not (overflow: clip) {
  .wd-page {
    overflow-x: hidden;
  }
}

.wd-page section,
.wd-page div,
.wd-page article {
  min-width: 0;
}

.wd-page img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.wd-page a {
  color: inherit;
  text-decoration: none;
}

.wd-page p {
  margin-top: 0;
  overflow-wrap: break-word;
}

/*
  One wrapper controls every section. The declared width includes the
  left/right padding, so HubSpot row styles cannot make it wider than its parent.
*/
.wd-container {
  width: 100%;
  max-width: calc(var(--wd-content-width) + 48px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Buttons */

.wd-btn {
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.wd-btn:hover {
  transform: translateY(-1px);
}

.wd-btn:focus-visible,
.wd-home-popup-close:focus-visible {
  outline: 3px solid var(--wd-red);
  outline-offset: 3px;
}

.wd-btn-red {
  background: var(--wd-red);
  color: var(--wd-white) !important;
}

.wd-btn-red:hover {
  background: var(--wd-red-dark);
  color: var(--wd-white) !important;
}

.wd-btn-dark {
  background: var(--wd-blue);
  color: var(--wd-white) !important;
}

.wd-btn-dark:hover {
  background: #050910;
  color: var(--wd-white) !important;
}

.wd-btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  color: var(--wd-white) !important;
}

.wd-btn-outline:hover {
  background: var(--wd-white);
  color: var(--wd-blue) !important;
}

.wd-final-cta-btn {
  flex: 0 0 auto;
  min-width: 230px;
}

/* Hero */

.wd-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 88% 22%, rgba(233, 35, 43, 0.28), transparent 28%),
    linear-gradient(
      115deg,
      rgba(11, 18, 29, 0.98) 0%,
      rgba(11, 18, 29, 0.92) 54%,
      rgba(11, 18, 29, 0.78) 100%
    ),
    var(--wd-blue);
  color: var(--wd-white);
}

.wd-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.wd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 390px);
  align-items: center;
  gap: 48px;
}

.wd-hero-content {
  width: 100%;
  max-width: 760px;
}

.wd-eyebrow {
  margin-bottom: 16px;
  color: var(--wd-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wd-hero h1 {
  margin: 0 0 22px;
  color: var(--wd-white);
  font-size: clamp(44px, 6.3vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.wd-hero h1 span {
  display: block;
}

.wd-hero p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.58;
}

.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wd-hero-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.wd-hero-card-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(233, 35, 43, 0.16);
  color: var(--wd-white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wd-hero-card h2 {
  margin: 0 0 12px;
  color: var(--wd-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wd-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

/* Statistics */

.wd-stats-section {
  width: 100%;
  padding: 52px 0;
  overflow: hidden;
  background: var(--wd-blue);
}

.wd-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 225px));
  justify-content: center;
  gap: 16px;
}

.wd-stat-card {
  display: flex;
  width: 100%;
  min-height: 155px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--wd-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wd-stat-number {
  margin: 0 0 16px;
  color: var(--wd-white);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wd-stat-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--wd-white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-stat-label span {
  display: block;
  white-space: nowrap;
}

/* Shared sections */

.wd-section {
  width: 100%;
  padding: 82px 0;
}

.wd-intro-section {
  background: var(--wd-white);
}

.wd-products-section {
  background: var(--wd-off-white);
}

.wd-dark-section {
  background: var(--wd-blue);
  color: var(--wd-white);
}

.wd-section-header {
  width: 100%;
  max-width: 780px;
  margin: 0 0 38px;
}

.wd-section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wd-section-kicker {
  margin-bottom: 11px;
  color: var(--wd-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wd-red-line {
  width: 64px;
  height: 5px;
  margin-bottom: 20px;
  background: var(--wd-red);
}

.wd-red-line.center-line {
  margin-right: auto;
  margin-left: auto;
}

.wd-section h2,
.wd-section-header h2,
.wd-final-cta h2 {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.wd-section p,
.wd-section-header p,
.wd-final-cta p {
  color: var(--wd-mid-gray);
  font-size: 17px;
  line-height: 1.65;
}

.wd-dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

/* Split text/image sections */

.wd-split {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: 52px;
}

.wd-split.reverse {
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1fr);
}

.wd-section-content {
  width: 100%;
  max-width: 620px;
}

.wd-image-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--wd-border);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(11, 18, 29, 0.06), rgba(233, 35, 43, 0.12)),
    var(--wd-light-gray);
  box-shadow: 0 22px 60px rgba(11, 18, 29, 0.12);
}

.wd-image-panel.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(233, 35, 43, 0.16)),
    var(--wd-blue-soft);
}

.wd-feature-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.wd-image-placeholder {
  display: grid;
  width: calc(100% - 52px);
  min-height: 300px;
  place-items: center;
  padding: 30px;
  border: 2px dashed rgba(11, 18, 29, 0.22);
  border-radius: 20px;
  color: rgba(11, 18, 29, 0.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.wd-image-panel.dark .wd-image-placeholder {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.48);
}

/* Product cards */

.wd-product-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wd-product-card {
  display: flex;
  width: 100%;
  min-height: 315px;
  flex-direction: column;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--wd-border);
  border-radius: 18px;
  background: var(--wd-white);
  box-shadow: 0 18px 46px rgba(11, 18, 29, 0.08);
}

.wd-product-tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(233, 35, 43, 0.09);
  color: var(--wd-red);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-product-card h3 {
  margin: 0 0 12px;
  color: var(--wd-blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.wd-product-card p {
  margin-bottom: 22px;
  color: var(--wd-mid-gray);
  font-size: 15px;
  line-height: 1.58;
}

.wd-card-link {
  margin-top: auto;
  color: var(--wd-red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wd-card-link:hover {
  color: var(--wd-red-dark);
}

/* Checklist */

.wd-check-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.wd-check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.wd-check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--wd-red);
}

/* Final CTA */

.wd-final-cta {
  width: 100%;
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(233, 35, 43, 0.2), transparent 28%),
    linear-gradient(135deg, var(--wd-blue) 0%, #111c2b 100%);
  color: var(--wd-white);
}

.wd-final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}

.wd-final-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Popup form */

.wd-home-popup {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.wd-home-popup.is-open {
  display: flex;
}

.wd-home-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 29, 0.78);
  backdrop-filter: blur(4px);
}

.wd-home-popup-panel {
  position: relative;
  z-index: 2;
  width: min(94vw, 720px);
  max-height: 90vh;
  padding: 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 22px;
  background: var(--wd-white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  -webkit-overflow-scrolling: touch;
}

.wd-home-popup-close {
  appearance: none;
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: var(--wd-blue);
  color: var(--wd-white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.wd-home-popup-close:hover {
  background: var(--wd-red);
}

.wd-home-popup-header {
  margin-bottom: 22px;
  padding-right: 44px;
}

.wd-home-popup-header h2 {
  margin: 0 0 12px;
  color: var(--wd-blue);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.wd-home-popup-header p {
  margin: 0;
  color: var(--wd-mid-gray);
  font-size: 16px;
  line-height: 1.55;
}

.wd-home-form,
.wd-home-form form,
.wd-home-form .form-columns-1,
.wd-home-form .form-columns-2,
.wd-home-form .form-columns-3 {
  width: 100% !important;
  max-width: 100% !important;
}

.wd-home-form .input {
  margin-right: 0 !important;
}

.wd-home-form .hs-error-msgs,
.wd-home-form .inputs-list {
  padding-left: 0;
  overflow-wrap: anywhere;
}

.wd-home-form .hs-form-field {
  margin-bottom: 16px;
}

.wd-home-form label {
  color: var(--wd-blue) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.wd-home-form input,
.wd-home-form textarea,
.wd-home-form select {
  width: 100% !important;
  min-height: 46px;
  padding: 11px 12px !important;
  border: 1px solid #cfd5dd !important;
  border-radius: 8px !important;
  color: var(--wd-blue) !important;
  font-size: 15px !important;
}

.wd-home-form textarea {
  min-height: 120px;
}

.wd-home-form input[type="submit"],
.wd-home-form .hs-button {
  width: auto !important;
  min-height: 48px;
  padding: 14px 26px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--wd-red) !important;
  color: var(--wd-white) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.wd-home-form input[type="submit"]:hover,
.wd-home-form .hs-button:hover {
  background: var(--wd-red-dark) !important;
}

/* Responsive */

@media (max-width: 1120px) {
  .wd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-product-card {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .wd-hero {
    padding: 76px 0;
  }

  .wd-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 38px;
  }

  .wd-hero-content {
    max-width: 760px;
  }

  .wd-hero-card {
    max-width: 620px;
  }

  .wd-stats-section {
    padding: 44px 0;
  }

  .wd-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }

  .wd-split,
  .wd-split.reverse {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    justify-items: center;
    gap: 40px;
  }

  .wd-section-content,
  .wd-image-panel {
    width: 100%;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .wd-final-cta-inner {
    max-width: 808px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .wd-container {
    max-width: none;
    padding-right: 16px;
    padding-left: 16px;
  }

  .wd-hero {
    padding: 54px 0;
  }

  .wd-hero-inner {
    gap: 32px;
  }

  .wd-hero-content,
  .wd-hero-card,
  .wd-section-content,
  .wd-section-header,
  .wd-product-card,
  .wd-stat-card,
  .wd-final-cta-inner {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .wd-eyebrow,
  .wd-hero h1,
  .wd-hero p,
  .wd-hero-card h2,
  .wd-hero-card p,
  .wd-section-content h2,
  .wd-section-content p,
  .wd-section-header h2,
  .wd-section-header p,
  .wd-product-card h3,
  .wd-product-card p,
  .wd-stat-number,
  .wd-stat-label,
  .wd-final-cta h2,
  .wd-final-cta p {
    text-align: center;
  }

  .wd-hero h1 {
    font-size: clamp(36px, 12vw, 46px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .wd-hero p {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

  .wd-hero-actions {
    width: 100%;
    justify-content: center;
  }

  .wd-btn {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    min-height: 52px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .wd-final-cta-btn {
    min-width: 0;
  }

  .wd-hero-card {
    padding: 24px;
    border-radius: 20px;
  }

  .wd-hero-card-label {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    white-space: normal;
  }

  .wd-hero-card h2 {
    font-size: 30px;
  }

  .wd-stats-section {
    padding: 36px 0;
  }

  .wd-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wd-stat-card {
    min-height: 145px;
    align-items: center;
    padding: 18px;
    border-radius: 16px;
  }

  .wd-stat-number {
    margin-bottom: 13px;
    font-size: 34px;
  }

  .wd-stat-label {
    align-items: center;
    font-size: 10.5px;
    letter-spacing: 0.055em;
  }

  .wd-section {
    padding: 54px 0;
  }

  .wd-section-header {
    margin-bottom: 30px;
  }

  .wd-section-kicker,
  .wd-red-line {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .wd-section h2,
  .wd-section-header h2,
  .wd-final-cta h2 {
    font-size: clamp(30px, 9.5vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .wd-section p,
  .wd-section-header p,
  .wd-final-cta p {
    font-size: 16px;
    line-height: 1.58;
  }

  .wd-split,
  .wd-split.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .wd-image-panel {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .wd-feature-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    object-position: center;
  }

  .wd-image-placeholder {
    width: calc(100% - 34px);
    min-height: 220px;
  }

  .wd-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wd-product-card {
    min-height: auto;
    align-items: center;
    padding: 22px;
  }

  .wd-product-tag {
    align-self: center;
    white-space: normal;
  }

  .wd-card-link {
    margin-right: auto;
    margin-left: auto;
  }

  .wd-check-list {
    display: inline-grid;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .wd-check-list li {
    text-align: left;
  }

  .wd-final-cta {
    padding: 52px 0;
  }

  .wd-final-cta-inner {
    align-items: center;
  }

  .wd-final-cta p {
    margin-right: auto;
    margin-left: auto;
  }

  .wd-home-popup {
    align-items: flex-end;
    padding: 8px 8px 0;
  }

  .wd-home-popup-panel {
    width: 100%;
    max-height: calc(100dvh - 8px);
    padding: 26px 18px max(22px, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    text-align: left;
  }

  .wd-home-popup-header {
    padding-right: 48px;
  }

  .wd-home-popup-header h2 {
    font-size: 32px;
  }

  .wd-home-form .form-columns-2 .hs-form-field,
  .wd-home-form .form-columns-3 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }

  .wd-home-form input,
  .wd-home-form textarea,
  .wd-home-form select {
    font-size: 16px !important;
  }

  .wd-home-form input[type="submit"],
  .wd-home-form .hs-button {
    width: 100% !important;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .wd-container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wd-hero {
    padding: 46px 0;
  }

  .wd-eyebrow,
  .wd-section-kicker {
    font-size: 11.5px;
    letter-spacing: 0.12em;
  }

  .wd-hero-card,
  .wd-product-card {
    padding: 20px;
  }

  .wd-stat-card {
    padding: 16px 10px;
  }

  .wd-stat-number {
    font-size: 31px;
  }

  .wd-stat-label {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .wd-home-popup-close {
    top: 12px;
    right: 12px;
  }

  .wd-home-popup-panel {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 340px) {
  .wd-stats-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .wd-stat-card {
    min-height: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-page *,
  .wd-page *::before,
  .wd-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}