.eyebrow {
  margin-bottom: var(--space-2);
  color: var(--color-green);
  font-size: var(--type-body-font-size);
  font-weight: var(--type-body-strong-font-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: var(--type-body-strong-font-weight);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-green);
  color: var(--color-black);
}

.button--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: var(--space-5);
}

.section-heading__title {
  margin-bottom: var(--space-3);
}

.section-heading__description,
.feature-card__description,
.prose {
  color: var(--color-copy);
}

.content-card,
.feature-card {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
}

.content-card__title a {
  text-decoration: none;
}

.case-card__link,
.office-card a {
  color: var(--color-green);
  font-weight: var(--type-body-strong-font-weight);
}

.office-card__contacts {
  display: grid;
  gap: var(--space-1);
  padding: 0;
  list-style: none;
}

.feature-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-5);
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-green) 18%, transparent);
  color: var(--color-green);
}

.feature-card__title {
  margin-bottom: var(--space-2);
}

.form-field {
  display: grid;
  gap: var(--space-1);
}

.form-field__label {
  font-weight: var(--type-body-strong-font-weight);
}

.form-field__control {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel-light);
  color: var(--color-white);
}

.form-field__description,
.form-status {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body-font-size);
}

.cta-banner,
.newsletter {
  display: grid;
  gap: var(--space-5);
  align-items: center;
  padding: clamp(1.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 3rem);
  border-radius: var(--radius-sm);
}

.cta-banner {
  background: linear-gradient(125deg, var(--color-green-dark), var(--color-green));
  color: var(--color-black);
}

.cta-banner h2,
.newsletter h2 {
  margin-bottom: var(--space-2);
}

.webdefentra-cta .cta-banner {
  --webdefentra-cta-black: #000;
  --webdefentra-cta-green-end: #03c76c;
  --webdefentra-cta-green-start: #00ff00;
  --webdefentra-cta-white: #fff;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 1.5rem;
  min-height: 15.4375rem;
  padding: 2.875rem 1.625rem 3.125rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    90deg,
    var(--webdefentra-cta-green-end) 0%,
    var(--webdefentra-cta-green-end) 50%,
    var(--webdefentra-cta-green-start) 100%
  );
  color: var(--webdefentra-cta-white);
}

.webdefentra-cta .cta-banner h2 {
  margin: 0;
  font-size: var(--type-subtitle-font-size);
  font-weight: var(--type-subtitle-font-weight);
  line-height: var(--type-subtitle-line-height);
  letter-spacing: var(--type-subtitle-letter-spacing);
}

.webdefentra-cta .cta-banner__content {
  min-width: 0;
}

.webdefentra-cta .button {
  justify-self: center;
  border-radius: 0.625rem;
  background: var(--webdefentra-cta-black);
  color: var(--webdefentra-cta-white);
  font-size: var(--type-body-font-size);
  font-weight: var(--type-body-font-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
}

.webdefentra-cta .button__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

.newsletter {
  border: 1px solid var(--color-border);
  background: var(--color-panel);
}

.newsletter__heading {
  min-width: 0;
}

.newsletter__form {
  display: grid;
  gap: var(--space-3);
}

.newsletter__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter__form .form-field__label:not(.screen-reader-text) {
  font-size: var(--type-body-font-size);
}

.newsletter__kicker {
  margin-bottom: var(--space-1);
  font-weight: var(--type-body-strong-font-weight);
}

.newsletter--highlight {
  --newsletter-black: #000;
  --newsletter-green-end: #03c76c;
  --newsletter-green-start: #00ff00;
  --newsletter-white: #fff;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 1.25rem;
  min-height: 24.5rem;
  padding: var(--section-block-space) 1.5rem;
  border: 0;
  border-radius: 1.25rem;
  background: linear-gradient(
    90deg,
    var(--newsletter-green-start) 0%,
    var(--newsletter-green-end) 50%,
    var(--newsletter-green-end) 100%
  );
  color: var(--newsletter-white);
}

.newsletter--highlight .newsletter__kicker,
.newsletter--highlight h2 {
  margin: 0;
  font-size: var(--type-subtitle-font-size);
  font-weight: var(--type-subtitle-font-weight);
  line-height: var(--type-subtitle-line-height);
  letter-spacing: var(--type-subtitle-letter-spacing);
}

.newsletter--highlight .newsletter__heading,
.newsletter--highlight .newsletter__form {
  width: 100%;
  max-width: 21.25rem;
  margin-inline: auto;
}

.newsletter--highlight .newsletter__form {
  gap: 0.625rem;
}

.newsletter--highlight .form-field__control {
  height: 2.8125rem;
  min-height: 2.8125rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0.625rem;
  background: var(--newsletter-white);
  color: var(--newsletter-black);
  color-scheme: light;
}

.newsletter--highlight select.form-field__control {
  padding: 0 1.25rem 0 2.75rem;
}

.newsletter--highlight .form-field__control::placeholder {
  color: var(--newsletter-black);
  opacity: 1;
}

.newsletter__industry-field,
.newsletter__email-field {
  position: relative;
  min-width: 0;
}

.newsletter__industry-field {
  margin-bottom: 0.3125rem;
}

.newsletter__industry-field::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 0.45rem solid var(--newsletter-black);
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  content: "";
  pointer-events: none;
  transform: translateY(-35%);
}

.newsletter__industry-field select {
  padding-left: 3.625rem;
  appearance: none;
}

.newsletter__email-field .form-field__control {
  padding-right: 3.5rem;
}

.newsletter__email-icon {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--newsletter-black);
  pointer-events: none;
  transform: translateY(-50%);
}

.newsletter--highlight .newsletter__form .form-field__label:not(.screen-reader-text) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter--highlight .button,
.newsletter--highlight .button:disabled {
  border-radius: 0.625rem;
  background: var(--newsletter-black);
  color: var(--newsletter-white);
  font-weight: var(--type-body-font-weight);
  opacity: 1;
}

.newsletter--highlight .button:disabled:hover {
  transform: none;
}

.newsletter__submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

.newsletter__help {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-self: end;
  color: var(--newsletter-black);
}

.newsletter__help svg {
  width: 100%;
  height: 100%;
}

.newsletter--highlight .form-status {
  color: #064c25;
}

.newsletter--highlight .newsletter__status--error {
  color: #59000f;
}

body.has-open-popup {
  overflow: hidden;
}

.popup {
  width: min(calc(100% - 2rem), 28.6875rem);
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 2px solid var(--color-green);
  margin: auto;
  overflow: auto;
  background: #fff;
  color: #000;
  color-scheme: light;
}

.popup:not([open]) {
  display: none;
}

.popup[open] {
  display: block;
}

.popup::backdrop {
  background: rgb(0 0 0 / 72%);
}

.popup__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.125rem clamp(1.5rem, 7vw, 2.5rem) 1.75rem;
  text-align: center;
}

.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  place-items: center;
  background: var(--color-green);
  color: #fff;
}

.popup__close svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
}

.popup__icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: var(--color-green);
  color: #fff;
}

.popup__icon svg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.5;
}

.popup--contact-complete .popup__icon svg {
  stroke-width: 2.25;
}

.popup__content {
  width: 100%;
}

.popup__title {
  margin-bottom: 0.875rem;
}

.popup__description {
  margin-bottom: 0;
  line-height: 1.3;
}

.popup__description > p {
  margin-bottom: 0;
}

.popup__aside,
.popup__note {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid #d4d4d4;
  margin: 1rem 0 0;
}

.popup__aside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  font-weight: var(--type-body-strong-font-weight);
}

.popup__note {
  color: #888;
  text-align: center;
}

.popup__action {
  width: min(100%, 20.625rem);
  min-height: 3.375rem;
  flex: 0 0 auto;
  border-radius: 1.125rem;
  font-size: var(--type-body-font-size);
}

@media (max-width: 30rem) {
  .popup__surface {
    gap: 1.25rem;
    padding: 1.75rem clamp(1.25rem, 6vw, 1.5rem) 1.5rem;
  }

  .popup__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .popup__icon svg,
  .popup--contact-complete .popup__icon svg {
    width: 2.75rem;
    height: 2.75rem;
  }

  .popup__description br {
    display: none;
  }
}

.faq-item {
  border-top: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--type-body-font-size);
  font-weight: var(--type-body-strong-font-weight);
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question-text {
  flex: 1;
}

.faq-item__indicator {
  flex: 0 0 auto;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__indicator {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 var(--space-4);
}

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel__list {
  display: flex;
  gap: var(--space-3);
  padding: 0 0 var(--space-3);
  margin: 0;
  list-style: none;
}

.carousel__item {
  flex: 0 0 min(88%, 24rem);
  scroll-snap-align: start;
}

.carousel__item > * {
  height: 100%;
}

.carousel__controls {
  justify-content: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.carousel__controls.is-visible {
  display: flex;
}

.carousel__button {
  min-width: 3rem;
  min-height: 3rem;
  padding-inline: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-panel);
  color: var(--color-white);
}

@media (min-width: 48rem) {
  .cta-banner,
  .newsletter:not(.newsletter--highlight) {
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  }

  .carousel__item {
    flex-basis: min(48%, 26rem);
  }
}

@media (max-width: 63.999rem) {
  .webdefentra-cta .button {
    width: calc(100% - 0.75rem);
    height: 2.8125rem;
    min-height: 2.8125rem;
    padding: 0 1.25rem;
  }

  .newsletter--highlight .button,
  .newsletter--highlight .button:disabled {
    height: 2.8125rem;
    min-height: 2.8125rem;
    padding-block: 0;
  }
}

@media (min-width: 64rem) {
  .webdefentra-cta .cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 6vw, 2rem);
    min-height: 14.1875rem;
    padding: 4rem;
  }

  .webdefentra-cta .button {
    padding: 0.9375rem 3.125rem;
  }

  .newsletter--highlight {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 15.9375rem;
    padding: var(--section-block-space) 2rem;
    text-align: center;
  }

  .newsletter__industry-field {
    width: max-content;
    max-width: 20rem;
    margin-bottom: 0;
  }

  .newsletter--highlight .newsletter__industry-field select.form-field__control {
    field-sizing: content;
    width: auto;
    min-width: 9.625rem;
    max-width: 20rem;
  }

  @supports (appearance: base-select) and selector(select::picker(select)) {
    .newsletter__industry-field select,
    .newsletter__industry-field select::picker(select) {
      appearance: base-select;
    }

    .newsletter__industry-field select {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
    }

    .newsletter__industry-field select::picker-icon {
      display: none;
    }

    .newsletter__industry-field option::checkmark {
      display: none;
    }

    .newsletter__industry-field select::picker(select) {
      padding: 0;
    }

    .newsletter__industry-field option {
      min-height: 0;
      padding: 0.375rem 1rem;
      line-height: 1.25;
      text-align: left;
    }
  }

  .newsletter--highlight .newsletter__heading {
    max-width: none;
  }

  .newsletter--highlight .newsletter__form {
    grid-template-columns: minmax(9.625rem, max-content) 21.375rem max-content 1.5rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
  }

  .newsletter--highlight .newsletter__submit,
  .newsletter--highlight .newsletter__submit:disabled {
    height: 2.8125rem;
    min-height: 2.8125rem;
    padding: 0 3.125rem;
  }

  .newsletter--highlight .form-status {
    grid-column: 1 / -1;
  }

  .carousel__item {
    flex-basis: min(32%, 26rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .carousel__viewport {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
