/* Blackwidow static clone — palette from Elementor kit (post-8) */
:root {
  --bw-primary: #cc0011;
  --bw-dark: #212327;
  --bw-gray-section: #606062;
  --bw-text: #4b4b4d;
  --bw-light: #f3f3f3;
  --bw-white: #ffffff;
  --bw-blue-accent: #3a4f66;
  --bw-max: 1140px;
  --bw-font: "ABeeZee", sans-serif;
  --bw-nav-font: "Montserrat", "Open Sans", sans-serif;
  --bw-nav-active-line: #c8c8c8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bw-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bw-text);
  background: #fafbfc;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2872fa;
  text-decoration: none;
}

a:hover {
  color: #1559ed;
}

/* —— Site header (hero + nav) —— */
.site-header {
  position: relative;
  min-height: 700px;
  background-color: var(--bw-dark);
  /* Logo layer on top; soft light behind so dark artwork reads on the charcoal hero */
  background-image: url("../img/Logo-white.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: min(680px, 88vw) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

#header-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
  background: transparent;
  border-bottom: none;
}

.nav-toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  background: transparent;
  border: none;
  color: var(--bw-white);
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.main-nav {
  font-family: var(--bw-nav-font);
  grid-column: 2;
  justify-self: center;
  align-self: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--bw-white) !important;
  border-bottom: 3px solid transparent;
  text-transform: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--bw-white) !important;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.main-nav li.is-current a {
  border-bottom-color: var(--bw-nav-active-line);
}

.header-bar__end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

.header-bar__user {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--bw-nav-font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.header-bar__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Toggle display to inline-flex to show Login again */
.btn-login {
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--bw-nav-font);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--bw-white) !important;
  background: #4a4a4a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-login:hover {
  filter: brightness(1.12);
  color: var(--bw-white) !important;
}

/* —— Content sections —— */
main {
  min-height: 0;
  display: block;
}

.section {
  padding: 3rem 1.25rem;
}

.section--gray {
  background: var(--bw-gray-section);
  color: var(--bw-white);
}

.section--gray h1,
.section--gray h2,
.section--gray h3,
.section--gray h4,
.section--gray p {
  color: var(--bw-white);
}

.section--dark {
  background: var(--bw-dark);
  color: var(--bw-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--bw-white);
}

.section--light {
  background: var(--bw-light);
}

.section--white {
  background: #ffffff;
}

.section--aims {
  background: #212226;
  color: var(--bw-white);
}

.section--aims h1,
.section--aims h2,
.section--aims h3,
.section--aims h4,
.section--aims p {
  color: var(--bw-white);
}

.section--aims .aims-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--aims .aims-brand img {
  width: min(100%, 380px);
  height: auto;
}

.section--aims .aims-brand .product-block__actions {
  margin-top: 0.9rem;
  text-align: center;
}

.container {
  max-width: var(--bw-max);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split--reverse .split__text {
  order: 2;
}

.split--reverse .split__media {
  order: 1;
}

.split__media img {
  max-width: 75%;
  margin: 0 auto;
  border-radius: 4px;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.05rem;
  opacity: 0.95;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
}

.page-title h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.spacer {
  height: 2rem;
}

/* —— Feature lists (About / Reseller) —— */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-list li {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bw-primary);
  color: var(--bw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  border-radius: 4px;
}

.feature-list__icon svg {
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
  fill: currentColor;
}

.feature-list__icon i {
  transform: rotate(-45deg);
  font-size: 1rem;
  line-height: 1;
}

.feature-list__body h2,
.feature-list__body h5 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.feature-list__body p {
  margin: 0;
  line-height: 1.6;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  font-family: var(--bw-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--bw-white) !important;
  background: var(--bw-primary);
  border-radius: 3px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.1);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.1rem;
}

.reseller-cta-btn {
  min-width: min(100%, 400px);
  justify-content: center;
  background: #1f232b;
  border: 1px solid rgba(204, 0, 17, 0.95);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(204, 0, 17, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.reseller-cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 16px rgba(204, 0, 17, 0.38);
}

.text-center {
  text-align: center;
}

/* —— Products —— */
.product-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  text-align: center;
}

.product-inline-image {
  margin: 0 auto 1.25rem;
}

.product-inline-image img {
  display: block;
  margin: 0 auto;
  width: min(100%, 405px);
  height: auto;
}

.product-block {
  margin-bottom: 3rem;
}

.product-block__actions {
  margin-top: 1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section--product-videos {
  background: #606062;
}

.section--product-videos .video-grid {
  margin-top: 0;
}

.section--product-videos .video-wrap {
  border: 2px solid var(--bw-primary);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(204, 0, 17, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.38),
    0 0 20px rgba(204, 0, 17, 0.32);
  outline: 1px solid rgba(204, 0, 17, 0.65);
  outline-offset: 0;
}

.prose p {
  margin: 0 0 1rem;
}

.prose img.aligncenter {
  margin: 1rem auto;
}

/* —— Integration Partners (Partners page) — reference: 336px band, full width, centred row */
.section--partners {
  background: #3e4e62;
  color: var(--bw-white);
  padding: 0;
  margin: 0;
  min-height: 336px;
  height: 336px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.section--partners .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--bw-max);
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1rem;
  box-sizing: border-box;
  min-height: 0;
}

.section--partners .page-title--partners {
  flex-shrink: 0;
  margin: 0 0 0.35rem;
  text-align: center;
}

.section--partners .page-title--partners h1 {
  font-family: var(--bw-nav-font);
  font-weight: 700;
  color: var(--bw-white);
  font-size: clamp(1.5rem, 2.8vw, 1.9375rem);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.2;
}

.integration-carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.integration-carousel__stage {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 0;
  width: 100%;
}

.integration-carousel__viewport {
  flex: 1;
  min-width: 0;
  display: block;
  overflow: hidden;
  position: relative;
}

.integration-carousel__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 300%;
  min-height: 140px;
  padding: 0.25rem 0;
  gap: 0;
  box-sizing: border-box;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.integration-carousel__brand {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  max-width: 33.333333%;
  box-sizing: border-box;
  margin: 0;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.integration-carousel__logo-wrap {
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-carousel__logo-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.integration-carousel__tagline {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  max-width: 18em;
  text-align: center;
}

.integration-carousel__arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  align-self: center;
  z-index: 2;
  background: none;
  border: none;
  padding: 0.5rem 0.25rem;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  opacity: 1;
  line-height: 0;
  transition: color 0.2s, opacity 0.2s;
}

.integration-carousel__arrow:hover:not(:disabled) {
  color: var(--bw-white);
}

.integration-carousel__arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.integration-carousel__arrow:disabled {
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.45);
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .integration-carousel__row {
    transition: none;
  }
}

.integration-carousel__dots {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0 0 0.15rem;
}

.integration-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.integration-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.integration-carousel__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.integration-carousel__dot.is-active {
  background: var(--bw-white);
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .integration-carousel__row {
    min-height: 148px;
  }

  .integration-carousel__logo-wrap {
    min-height: 132px;
  }

  .integration-carousel__logo-wrap img {
    max-height: 128px;
  }
}

/* Full-width strip between Integration Partners and footer */
.partners-to-footer-rule {
  width: 100%;
  height: 63px;
  background: #202227;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .section--partners {
    min-height: 0;
    height: auto;
    padding: 2rem 0 2.5rem;
  }

  .section--partners .container {
    padding: 0 1rem;
  }

  .section--partners .page-title--partners {
    margin-bottom: 1rem;
  }

  .integration-carousel__stage {
    gap: 0.35rem;
  }

  .integration-carousel__row {
    min-height: 120px;
  }

  .integration-carousel__logo-wrap img {
    max-height: 88px;
  }
}

/* —— Contact form —— */
.contact-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.contact-form__errors {
  color: #b00020;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(176, 0, 32, 0.08);
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-form__errors[hidden] {
  display: none !important;
}

.contact-form__hp-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--bw-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 1rem;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  font-family: var(--bw-font);
  font-size: 16px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__math {
  margin-bottom: 1rem;
}

.contact-form__math .contact-form__math-q {
  font-weight: 700;
  white-space: nowrap;
}

.contact-form__math-help {
  font-size: 0.85rem;
  color: var(--bw-text);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.contact-form__math-refresh {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--bw-blue-accent);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.contact-form__math-refresh:hover {
  text-decoration: none;
}

.form-note {
  font-size: 0.9rem;
  color: var(--bw-text);
  margin-top: 1rem;
}

/* —— Footer (reference: ~336px total incl. copyright; generous spacing, centred row) —— */
.site-footer {
  background: #2c353d;
  color: var(--bw-white);
  position: relative;
  width: 100%;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(1.75rem, 3.2vw, 2.625rem) clamp(1.5rem, 4vw, 3rem);
  box-sizing: border-box;
  /* ~336px total with .footer-copy (~52px); main band fills remaining space */
  min-height: calc(336px - 3.35rem);
  display: flex;
  align-items: center;
}

.footer-grid {
  display: grid;
  width: 100%;
  max-width: var(--bw-max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.footer-col--contact {
  min-width: 0;
}

.footer-legal {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.footer-legal__link {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.footer-legal__link:hover {
  color: var(--bw-white) !important;
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-family: var(--bw-nav-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.125rem);
  color: var(--bw-white);
  margin: 0 0 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contacts li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.footer-contacts li:last-child {
  margin-bottom: 0;
}

.footer-contact__mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: grid;
  place-items: center;
}

.footer-contact__diamond {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 50%;
  top: 50%;
  margin: -7.5px 0 0 -7.5px;
  background: var(--bw-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
}

.footer-contact__mark-icon {
  position: relative;
  z-index: 1;
  font-size: 9px;
  color: var(--bw-white);
  line-height: 1;
}

.footer-contact__body {
  min-width: 0;
}

.footer-contact__name {
  margin: 0 0 0.35rem;
  font-family: var(--bw-nav-font);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--bw-white);
  line-height: 1.3;
}

.footer-contact__detail {
  margin: 0;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}

.footer-contact__detail a {
  color: var(--bw-white) !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.footer-contact__detail a:hover {
  text-decoration-color: var(--bw-white);
}

.footer-col--brand {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand-wrap {
  width: 100%;
  max-width: min(100%, 680px);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 0 0 1px rgba(204, 0, 17, 0.4),
    0 0 32px rgba(204, 0, 17, 0.55),
    0 0 64px rgba(204, 0, 17, 0.22);
}

.footer-brand-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(212px, 28vw);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.footer-col--nav {
  min-width: 0;
  text-align: right;
  justify-self: end;
  width: 100%;
  max-width: min(300px, 100%);
}

.footer-nav-col {
  margin: 0;
}

.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-col li {
  margin: 0;
  padding: 0;
}

.footer-nav-col a {
  display: block;
  padding: 0.52rem 0;
  font-family: var(--bw-nav-font);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.15vw, 0.96875rem);
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--bw-white) !important;
  text-decoration: none;
  border-bottom: none;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-nav-col li.is-current a {
  color: var(--bw-primary) !important;
}

.footer-nav-col li.is-current a:hover {
  color: #e01124 !important;
}

.footer-copy {
  background: #252b32;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 0.7rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.875rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .site-header {
    min-height: 420px;
  }

  .header-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    order: 1;
    grid-column: unset;
    justify-self: unset;
  }

  .header-bar__end {
    order: 2;
    margin-left: auto;
    grid-column: unset;
    justify-self: unset;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    grid-column: unset;
    justify-self: unset;
  }

  .main-nav.is-open {
    max-height: 480px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 6px;
    padding: 0.35rem 0;
  }

  .main-nav a {
    border-bottom: 3px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 1rem;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    border-bottom-color: rgba(255, 255, 255, 0.55);
  }

  .main-nav li.is-current a {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 3px 0 0 var(--bw-nav-active-line);
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 201px;
    background-size: 70%;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__text,
  .split--reverse .split__media {
    order: unset;
  }

  .split__media img {
    max-width: 100%;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    min-height: 0;
    display: block;
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-col--brand {
    order: 2;
  }

  .footer-col--contact {
    order: 1;
  }

  .footer-col--nav {
    order: 3;
    text-align: left;
    justify-self: start;
    max-width: none;
  }

  .footer-brand-wrap {
    max-width: 100%;
  }

  .footer-brand-img {
    max-height: min(260px, 48vw);
  }

  .footer-nav-col a {
    padding: 0.5rem 0;
  }

}
