:root {
  --eteb-lp-primary: #aa1c1b;
  --eteb-lp-primary-hover: #8f1313;
  --eteb-lp-brand-dark: #2e0100;
  --eteb-lp-brand-soft: #fff4f3;
  --eteb-lp-brand-border: #f0d6d4;
  --eteb-lp-surface: #ffffff;
  --eteb-lp-surface-subtle: #fcfafa;
  --eteb-lp-text: #241c1c;
  --eteb-lp-muted: #716868;
  --eteb-lp-border: #e8dddd;
  --eteb-lp-error: #b4232d;
  --eteb-lp-radius: 20px;
  --eteb-lp-shadow: 0 28px 80px rgba(46, 1, 0, .28), 0 8px 24px rgba(46, 1, 0, .12);
}

html.eteb-lp-lock,
html.eteb-lp-lock body {
  overflow: hidden !important;
}

.eteb-lp,
.eteb-lp * {
  box-sizing: border-box;
}

/* Hide the removed badge if an older cached page still contains its markup. */
.eteb-lp .eteb-lp__badge {
  display: none !important;
}

.eteb-lp {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 16px;
  font-family: inherit, Tahoma, Arial, sans-serif;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.eteb-lp--visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.eteb-lp .eteb-lp__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 3, 3, .68);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.eteb-lp .eteb-lp__dialog {
  position: relative;
  width: min(100%, 450px);
  max-height: min(720px, calc(100dvh - 24px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--eteb-lp-radius);
  outline: 0;
  background: var(--eteb-lp-surface);
  color: var(--eteb-lp-text);
  box-shadow: var(--eteb-lp-shadow);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: transform 280ms cubic-bezier(.2, .8, .2, 1), opacity 200ms ease;
}

.eteb-lp--visible .eteb-lp__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.eteb-lp .eteb-lp__dialog::-webkit-scrollbar {
  width: 5px;
}

.eteb-lp .eteb-lp__dialog::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #d7caca;
}

.eteb-lp .eteb-lp__accent {
  height: 4px;
  border-radius: var(--eteb-lp-radius) var(--eteb-lp-radius) 0 0;
  background: var(--eteb-lp-primary);
}

.eteb-lp .eteb-lp__content {
  padding: 28px 30px 26px;
}

.eteb-lp .eteb-lp__close {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 13px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--eteb-lp-border) !important;
  border-radius: 12px;
  background: #fff !important;
  color: #6b6161 !important;
  box-shadow: none !important;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 100ms ease;
}

.eteb-lp .eteb-lp__close:hover {
  border-color: #d8c3c1 !important;
  background: var(--eteb-lp-brand-soft) !important;
  color: var(--eteb-lp-primary) !important;
}

.eteb-lp .eteb-lp__close:active {
  transform: scale(.96);
}

.eteb-lp .eteb-lp__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}

.eteb-lp .eteb-lp__step {
  position: relative;
  display: none;
}

.eteb-lp .eteb-lp__step--active {
  display: block;
  animation: eteb-lp-step-in 240ms ease-out both;
}

@keyframes eteb-lp-step-in {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}

.eteb-lp .eteb-lp__stepbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  margin-bottom: 16px;
  padding-left: 52px;
  gap: 12px;
}

.eteb-lp .eteb-lp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--eteb-lp-brand-border);
  border-radius: 10px;
  background: var(--eteb-lp-brand-soft);
  color: var(--eteb-lp-primary-hover);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.eteb-lp .eteb-lp__eyebrow--form {
  margin-bottom: 12px;
}

.eteb-lp .eteb-lp__eyebrow svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__step-count {
  color: #6f6464;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
}

.eteb-lp .eteb-lp__title {
  max-width: none;
  margin: 0 0 10px !important;
  padding: 0;
  color: var(--eteb-lp-text) !important;
  font-size: 25px !important;
  line-height: 1.55 !important;
  letter-spacing: -.25px;
  font-weight: 800 !important;
}

.eteb-lp .eteb-lp__description {
  margin: 0 0 18px !important;
  color: var(--eteb-lp-muted) !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  font-weight: 400 !important;
}

.eteb-lp .eteb-lp__offer {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  margin-bottom: 16px;
  padding: 13px 14px;
  border: 1px solid var(--eteb-lp-brand-border);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8f7, #fff2f1);
}

.eteb-lp .eteb-lp__offer-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex: 0 0 auto;
  padding-left: 12px;
  border-left: 1px solid #e8cbca;
  color: var(--eteb-lp-primary);
  white-space: nowrap;
}

.eteb-lp .eteb-lp__offer-value span {
  font-size: 12px;
  font-weight: 700;
}

.eteb-lp .eteb-lp__offer-value strong {
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.eteb-lp .eteb-lp__offer-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.eteb-lp .eteb-lp__offer-copy strong {
  color: #3b2d2d;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 750;
}

.eteb-lp .eteb-lp__offer-copy span {
  color: #6f6464;
  font-size: 12px;
  line-height: 1.6;
}

.eteb-lp .eteb-lp__offer-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-right: auto;
  fill: none;
  stroke: var(--eteb-lp-primary);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 0 0 18px !important;
  padding: 0 !important;
  list-style: none !important;
}

.eteb-lp .eteb-lp__benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #534747;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 600;
}

.eteb-lp .eteb-lp__benefits svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: #fff3f2;
  stroke: var(--eteb-lp-primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 11px 18px;
  border: 1px solid var(--eteb-lp-primary) !important;
  border-radius: 12px;
  background: var(--eteb-lp-primary) !important;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(170, 28, 27, .19) !important;
  cursor: pointer;
  touch-action: manipulation;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 750;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 100ms ease;
}

.eteb-lp .eteb-lp__button:hover {
  border-color: var(--eteb-lp-primary-hover) !important;
  background: var(--eteb-lp-primary-hover) !important;
  color: #fff !important;
  box-shadow: 0 11px 24px rgba(143, 19, 19, .24) !important;
}

.eteb-lp .eteb-lp__button:active {
  transform: scale(.985);
}

.eteb-lp .eteb-lp__button:disabled {
  opacity: .48;
  cursor: wait;
  transform: none;
}

.eteb-lp .eteb-lp__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 76px;
  min-height: 44px;
  margin: -4px 0;
  padding: 8px 4px;
  border: 0 !important;
  background: transparent !important;
  color: #6f6464 !important;
  box-shadow: none !important;
  cursor: pointer;
  touch-action: manipulation;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 650;
}

.eteb-lp .eteb-lp__back:hover {
  color: var(--eteb-lp-primary) !important;
}

.eteb-lp .eteb-lp__back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__form {
  margin-top: 15px;
}

.eteb-lp .eteb-lp__field {
  margin: 0 0 12px;
}

.eteb-lp .eteb-lp__field label {
  display: block;
  margin: 0 2px 7px;
  color: #4c4040;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 700;
}

.eteb-lp .eteb-lp__field label span {
  color: var(--eteb-lp-error);
}

.eteb-lp .eteb-lp__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--eteb-lp-border);
  border-radius: 12px;
  background: var(--eteb-lp-surface-subtle);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.eteb-lp .eteb-lp__input-wrap:focus-within {
  border-color: var(--eteb-lp-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(170, 28, 27, .10);
}

.eteb-lp .eteb-lp__input-wrap svg {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #968989;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.eteb-lp .eteb-lp__input-wrap input {
  width: 100%;
  height: 50px;
  margin: 0 !important;
  padding: 10px 43px 10px 13px !important;
  border: 0 !important;
  border-radius: 12px !important;
  outline: 0 !important;
  background: transparent !important;
  color: var(--eteb-lp-text) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.eteb-lp .eteb-lp__input-wrap--phone input {
  direction: ltr;
  text-align: right;
}

.eteb-lp .eteb-lp__input-wrap input::placeholder {
  color: #7a6f6f;
  opacity: 1;
  font-weight: 400;
}

.eteb-lp .eteb-lp__field--invalid .eteb-lp__input-wrap {
  border-color: var(--eteb-lp-error);
  box-shadow: 0 0 0 3px rgba(180, 35, 45, .08);
}

.eteb-lp .eteb-lp__error {
  display: block;
  min-height: 17px;
  margin: 4px 3px 0;
  color: var(--eteb-lp-error);
  font-size: 12px;
  line-height: 1.5;
}

.eteb-lp .eteb-lp__server-error {
  min-height: 0;
  margin: 0 3px 10px;
  color: var(--eteb-lp-error);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.eteb-lp .eteb-lp__server-error:empty {
  display: none;
}

.eteb-lp .eteb-lp__honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.eteb-lp .eteb-lp__privacy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 10px 4px 0 !important;
  color: #6f6464 !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
  text-align: right;
}

.eteb-lp .eteb-lp__privacy svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: #8e7e7e;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__spinner {
  display: none;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eteb-lp-spin 700ms linear infinite;
}

.eteb-lp .eteb-lp__button--loading .eteb-lp__button-text {
  opacity: .8;
}

.eteb-lp .eteb-lp__button--loading .eteb-lp__spinner {
  display: block;
}

@keyframes eteb-lp-spin {
  to { transform: rotate(360deg); }
}

.eteb-lp .eteb-lp__success {
  padding: 24px 8px 10px;
  text-align: center;
}

.eteb-lp .eteb-lp__success-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border: 1px solid var(--eteb-lp-brand-border);
  border-radius: 50%;
  background: var(--eteb-lp-brand-soft);
  color: var(--eteb-lp-primary);
}

.eteb-lp .eteb-lp__success-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eteb-lp .eteb-lp__success .eteb-lp__description {
  max-width: 340px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.eteb-lp .eteb-lp__button:focus-visible,
.eteb-lp .eteb-lp__close:focus-visible,
.eteb-lp .eteb-lp__back:focus-visible {
  outline: 3px solid rgba(170, 28, 27, .2) !important;
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .eteb-lp {
    padding: 10px;
  }

  .eteb-lp .eteb-lp__dialog {
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .eteb-lp .eteb-lp__accent {
    border-radius: 18px 18px 0 0;
  }

  .eteb-lp .eteb-lp__content {
    padding: 24px 20px 20px;
  }

  .eteb-lp .eteb-lp__close {
    top: 10px;
    left: 10px;
  }

  .eteb-lp .eteb-lp__stepbar {
    margin-bottom: 13px;
    padding-left: 46px;
  }

  .eteb-lp .eteb-lp__eyebrow {
    font-size: 12px;
  }

  .eteb-lp .eteb-lp__title {
    font-size: 22px !important;
    line-height: 1.55 !important;
  }

  .eteb-lp .eteb-lp__description {
    margin-bottom: 15px !important;
    font-size: 13.5px !important;
  }

  .eteb-lp .eteb-lp__offer {
    gap: 10px;
    min-height: 74px;
    margin-bottom: 14px;
    padding: 11px 12px;
  }

  .eteb-lp .eteb-lp__offer-value strong {
    font-size: 26px;
  }

  .eteb-lp .eteb-lp__offer-copy strong {
    font-size: 12.5px;
  }

  .eteb-lp .eteb-lp__offer-copy span {
    font-size: 12px;
  }

  .eteb-lp .eteb-lp__offer-icon {
    display: none;
  }

  .eteb-lp .eteb-lp__benefits {
    gap: 7px 10px;
    margin-bottom: 16px !important;
  }

  .eteb-lp .eteb-lp__benefits li {
    font-size: 12px;
  }

  .eteb-lp .eteb-lp__button {
    min-height: 50px;
    font-size: 13.5px;
  }

  .eteb-lp .eteb-lp__input-wrap input {
    font-size: 16px !important;
  }

  .eteb-lp .eteb-lp__form {
    margin-top: 12px;
  }
}

@media (max-width: 350px) {
  .eteb-lp .eteb-lp__benefits {
    grid-template-columns: 1fr;
  }

  .eteb-lp .eteb-lp__step-count {
    display: none;
  }

  .eteb-lp .eteb-lp__offer-value {
    padding-left: 9px;
  }
}

@media (max-height: 640px) {
  .eteb-lp .eteb-lp__content {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .eteb-lp .eteb-lp__stepbar {
    margin-bottom: 9px;
  }

  .eteb-lp .eteb-lp__description {
    margin-bottom: 11px !important;
  }

  .eteb-lp .eteb-lp__offer {
    min-height: 68px;
    margin-bottom: 10px;
  }

  .eteb-lp .eteb-lp__benefits {
    margin-bottom: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eteb-lp *,
  .eteb-lp *::before,
  .eteb-lp *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body.logged-in .eteb-lp:not(.eteb-lp--test) {
  display: none !important;
}
