/**
 * Endotight landing page — scoped styles (prefix: endotight-)
 */

.endotight-landing-page *,
.endotight-landing-page *::before,
.endotight-landing-page *::after {
  box-sizing: border-box;
}

.endotight-landing-page {
  --et-navy: #8f1f63;
  --et-teal: #e835a0;
  --et-cream: #fff6fb;
  --et-gold: #f08ac6;
  --et-text: #3a2331;
  --et-border: #f3d2e6;
  --et-white: #ffffff;
  --et-shadow: 0 12px 40px rgba(143, 31, 99, 0.16);
  --et-radius: 16px;
  --et-radius-sm: 10px;
  --et-container: min(1180px, 92vw);
  --et-sticky-mobile-h: 68px;
  --et-sticky-desktop-w: 220px;
  --et-font: "Vazir", "Vazirmatn", "IRANSans", Tahoma, Arial, sans-serif;
}

.endotight-landing-page {
  background: var(--et-cream);
  color: var(--et-text);
}

.endotight-landing-page {
  margin: 0;
  font-family: var(--et-font);
  -webkit-font-smoothing: antialiased;
}

.endotight-landing-page.has-endotight-sticky {
  padding-bottom: var(--et-sticky-mobile-h);
}

@media (min-width: 1024px) {
  .endotight-landing-page.has-endotight-sticky {
    padding-bottom: 0;
  }
}

.endotight-main {
  display: block;
  min-height: 100vh;
}

.endotight-page {
  overflow-x: clip;
}

.endotight-container {
  width: var(--et-container);
  margin-inline: auto;
}

.endotight-container--narrow {
  width: min(760px, 92vw);
}

.endotight-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 700;
  color: var(--et-navy);
  line-height: 1.45;
}

/* Buttons */
.endotight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--et-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.endotight-btn:focus-visible {
  outline: 2px solid var(--et-teal);
  outline-offset: 2px;
}

.endotight-btn--primary {
  background: var(--et-teal);
  color: var(--et-white);
}

.endotight-btn--primary:hover {
  background: #c92a8a;
  transform: translateY(-1px);
}

.endotight-btn--outline {
  background: transparent;
  color: var(--et-navy);
  border-color: var(--et-border);
}

.endotight-btn--outline:hover {
  border-color: var(--et-gold);
  color: var(--et-navy);
}

.endotight-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.endotight-link {
  color: var(--et-teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 53, 160, 0.35);
}

.endotight-link:hover {
  color: var(--et-navy);
  border-bottom-color: var(--et-gold);
}

/* Hero — unified video + form */
.endotight-hero {
  padding: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, #fff 0%, var(--et-cream) 100%);
}

.endotight-hero-shell {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 251, 0.94) 100%);
  border: 1px solid var(--et-border);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(143, 31, 99, 0.06);
  position: relative;
  overflow: hidden;
}

.endotight-hero-shell::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--et-teal), var(--et-gold));
}

.endotight-hero-headline {
  display: grid;
  gap: 0.45rem;
}

.endotight-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.endotight-hero-lead {
  display: grid;
  gap: 0.5rem;
}

.endotight-hero-col {
  display: grid;
  gap: clamp(0.65rem, 1.2vw, 0.85rem);
  align-content: start;
}

.endotight-hero-title {
  margin: 0;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--et-navy);
}

.endotight-hero-subtitle {
  margin: 0;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--et-text);
}

.endotight-hero-video-card {
  width: 100%;
  max-width: min(100%, 380px);
  margin-inline: auto;
  padding: 0.55rem;
  background: var(--et-white);
  border: 1px solid var(--et-border);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(143, 31, 99, 0.08);
}

.endotight-hero-video-frame {
  display: flex;
  justify-content: center;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(240, 138, 198, 0.28);
  border-radius: 18px;
  overflow: hidden;
}

.endotight-hero-video-player {
  position: relative;
  width: min(100%, calc(min(420px, 48vh) * 9 / 16));
  height: min(420px, 48vh);
  max-width: 100%;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  background: #fff;
  overflow: hidden;
}

.endotight-hero-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #fff;
  transition: opacity 0.25s ease;
}

.endotight-hero-video-player.is-playing .endotight-hero-video-poster {
  opacity: 0;
  visibility: hidden;
}

.endotight-hero-video-el {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #fff;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.endotight-hero-video-player.is-playing .endotight-hero-video-el {
  z-index: 1;
  opacity: 1;
}

.endotight-hero-video-player:fullscreen,
.endotight-hero-video-player:-webkit-full-screen {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  background: #000;
}

.endotight-hero-video-player:fullscreen .endotight-hero-video-el,
.endotight-hero-video-player:-webkit-full-screen .endotight-hero-video-el,
.endotight-hero-video-player.is-fullscreen .endotight-hero-video-el {
  object-fit: contain;
  object-position: center center;
}

.endotight-hero-video-el:fullscreen,
.endotight-hero-video-el:-webkit-full-screen {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.endotight-hero-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--et-teal);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.endotight-hero-video-play__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.75rem, 15vw, 6rem);
  height: clamp(4.75rem, 15vw, 6rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(143, 31, 99, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.endotight-hero-video-play svg {
  width: clamp(2.4rem, 8vw, 3rem);
  height: clamp(2.4rem, 8vw, 3rem);
  filter: none;
}

.endotight-hero-video-play:hover .endotight-hero-video-play__icon,
.endotight-hero-video-play:focus-visible .endotight-hero-video-play__icon {
  transform: scale(1.05);
  box-shadow: 0 14px 34px rgba(143, 31, 99, 0.28);
}

.endotight-hero-video-play:focus-visible .endotight-hero-video-play__icon {
  outline: 2px solid var(--et-gold);
  outline-offset: 3px;
}

.endotight-hero-video-player.is-playing .endotight-hero-video-play {
  opacity: 0;
  pointer-events: none;
}

.endotight-hero-video-player.is-playing.is-paused .endotight-hero-video-play {
  opacity: 1;
  pointer-events: auto;
}

.endotight-hero-video-bar {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  background: linear-gradient(180deg, rgba(143, 31, 99, 0) 0%, rgba(143, 31, 99, 0.72) 100%);
}

.endotight-hero-video-bar[hidden] {
  display: none !important;
}

.endotight-hero-video-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.endotight-hero-video-bar__btn:hover,
.endotight-hero-video-bar__btn:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.endotight-hero-video-bar__btn:focus-visible {
  outline: 2px solid var(--et-gold);
  outline-offset: 1px;
}

.endotight-hero-video-bar__volume {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.endotight-hero-video-bar__range {
  flex: 1;
  min-width: 56px;
  max-width: 96px;
  accent-color: var(--et-teal);
  cursor: pointer;
}

.endotight-hero-video-bar__icon--play,
.endotight-hero-video-bar__icon--muted {
  display: none;
}

.endotight-hero-video-bar__icon--play,
.endotight-hero-video-player.is-paused .endotight-hero-video-bar__icon--pause {
  display: none;
}

.endotight-hero-video-player.is-paused .endotight-hero-video-bar__icon--play {
  display: block;
}

.endotight-hero-video-player.is-muted .endotight-hero-video-bar__icon--volume {
  display: none;
}

.endotight-hero-video-player.is-muted .endotight-hero-video-bar__icon--muted {
  display: block;
}

.endotight-hero-video-caption {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(58, 35, 49, 0.65);
}

.endotight-hero-benefits__title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--et-navy);
  border-bottom: 1px solid var(--et-border);
}

.endotight-hero-benefits {
  padding: 1rem 1.05rem;
  background: var(--et-white);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(143, 31, 99, 0.04);
}

.endotight-hero-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.endotight-hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--et-text);
  background: linear-gradient(180deg, rgba(255, 246, 251, 0.9) 0%, #fff 100%);
  border: 1px solid rgba(243, 210, 230, 0.95);
  border-radius: 12px;
}

.endotight-hero-benefit-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 53, 160, 0.12);
  color: var(--et-teal);
  border: 1px solid rgba(232, 53, 160, 0.15);
}

.endotight-hero-form-wrap {
  margin-top: 0;
}

.endotight-hero-lead .endotight-hero-call {
  margin: 0;
}

.endotight-hero-call {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
}

.endotight-hero-call a {
  color: var(--et-teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 53, 160, 0.35);
}

.endotight-hero-call a:hover {
  color: var(--et-navy);
  border-bottom-color: var(--et-gold);
}

@media (min-width: 768px) {
  .endotight-hero-shell {
    /* col1 = right (content) | col2 = left (video) — RTL */
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    column-gap: clamp(28px, 4vw, 52px);
    row-gap: 0;
    align-items: center;
  }

  .endotight-hero-content {
    grid-column: 1;
    gap: 1.15rem;
  }

  .endotight-hero-benefits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .endotight-hero-col--media {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 100%;
  }

  .endotight-hero-video-card {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .endotight-hero-video-player {
    width: min(100%, calc(min(420px, 48vh) * 9 / 16));
    height: min(420px, 48vh);
    max-width: 380px;
  }
}

@media (max-width: 767px) {
  .endotight-hero-shell {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    padding: 1rem;
    gap: 0.85rem;
  }

  .endotight-hero-content {
    display: contents;
  }

  .endotight-hero-headline {
    order: 1;
    text-align: center;
    justify-items: center;
    width: 100%;
  }

  .endotight-hero-title,
  .endotight-hero-subtitle {
    text-align: center;
  }

  .endotight-hero-subtitle {
    max-width: 42rem;
  }

  .endotight-hero-col--media {
    order: 2;
  }

  .endotight-hero-benefits {
    order: 3;
  }

  .endotight-hero-lead {
    order: 4;
  }

  .endotight-hero-video-card {
    width: min(100%, 340px);
    margin-inline: auto;
  }
}

/* Form */
.endotight-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.endotight-form__field {
  margin-bottom: 0.85rem;
}

.endotight-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--et-navy);
}

.endotight-form__required {
  color: var(--et-teal);
}

.endotight-form__input {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--et-border);
  border-radius: var(--et-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--et-text);
  background: var(--et-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.endotight-form__input:focus {
  outline: none;
  border-color: var(--et-teal);
  box-shadow: 0 0 0 3px rgba(232, 53, 160, 0.15);
  background: var(--et-white);
}

.endotight-form__input--tel {
  direction: ltr;
  text-align: left;
}

.endotight-form__submit {
  width: 100%;
  min-height: 48px;
  margin-top: 0.25rem;
  border: none;
  border-radius: var(--et-radius-sm);
  background: var(--et-navy);
  color: var(--et-white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.endotight-form__submit:hover:not(:disabled) {
  background: #761a52;
  transform: translateY(-1px);
}

.endotight-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.endotight-form__submit:focus-visible {
  outline: 2px solid var(--et-gold);
  outline-offset: 2px;
}

.endotight-form__message {
  min-height: 1.25rem;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.endotight-form__message.is-success {
  color: #1b6b52;
}

.endotight-form__message.is-error {
  color: #b42318;
}

.endotight-form--inline .endotight-form__hint {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(58, 35, 49, 0.78);
}

.endotight-form--inline .endotight-form__field {
  margin-bottom: 0.65rem;
}

.endotight-form--inline .endotight-form__submit {
  box-shadow: 0 4px 14px rgba(143, 31, 99, 0.15);
}

.endotight-form--inline .endotight-form__submit:hover:not(:disabled) {
  background: #8f1f63;
  box-shadow: 0 6px 18px rgba(143, 31, 99, 0.24);
}

.endotight-form--phone-only .endotight-form__message.is-success {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: rgba(27, 107, 82, 0.08);
  border: 1px solid rgba(27, 107, 82, 0.2);
}

.endotight-form--phone-only .endotight-form__message.is-error {
  padding: 0.45rem 0;
}

/* About */
.endotight-about {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--et-white);
  border-block: 1px solid var(--et-border);
}

.endotight-about__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(58, 35, 49, 0.9);
}

.endotight-about__cta {
  margin: 1.25rem 0 0;
}

/* Results */
.endotight-results {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.endotight-results__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .endotight-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .endotight-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.endotight-results__card {
  background: var(--et-white);
  border: 1px solid var(--et-border);
  border-radius: var(--et-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(143, 31, 99, 0.05);
}

.endotight-results__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  position: relative;
}

.endotight-results__zoom-hint {
  display: none;
}

@media (min-width: 768px) {
  .endotight-results__trigger {
    cursor: zoom-in;
  }

  .endotight-results__trigger:hover .endotight-results__img,
  .endotight-results__trigger:focus-visible .endotight-results__img {
    transform: scale(1.04);
  }

  .endotight-results__zoom-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset-inline-end: 0.65rem;
    bottom: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--et-navy);
    box-shadow: 0 4px 14px rgba(143, 31, 99, 0.18);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }

  .endotight-results__trigger:hover .endotight-results__zoom-hint,
  .endotight-results__trigger:focus-visible .endotight-results__zoom-hint {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .endotight-results__trigger {
    cursor: default;
    pointer-events: none;
  }
}

.endotight-results__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.endotight-results__figure {
  margin: 0;
}

.endotight-results__image {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 140px;
  overflow: hidden;
  background: var(--et-border);
}

.endotight-results__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.endotight-results__badge {
  position: absolute;
  top: 0.5rem;
  inset-inline-start: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(143, 31, 99, 0.82);
  color: var(--et-white);
}

.endotight-results__badge--after {
  background: rgba(232, 53, 160, 0.88);
}

.endotight-results__label {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--et-navy);
  text-align: center;
}

.endotight-results__disclaimer {
  margin: 1.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--et-radius-sm);
  background: rgba(240, 138, 198, 0.12);
  border: 1px solid rgba(240, 138, 198, 0.35);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(58, 35, 49, 0.85);
  text-align: center;
}

/* Results lightbox (desktop) */
.endotight-results-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.endotight-results-lightbox[hidden] {
  display: none !important;
}

.endotight-results-lightbox.is-open {
  animation: et-lightbox-in 0.22s ease;
}

@keyframes et-lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.endotight-results-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(143, 31, 99, 0.82);
  cursor: pointer;
}

.endotight-results-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  background: var(--et-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.endotight-results-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--et-border);
  background: var(--et-cream);
}

.endotight-results-lightbox__counter {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--et-navy);
}

.endotight-results-lightbox__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--et-navy);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.endotight-results-lightbox__close:hover,
.endotight-results-lightbox__close:focus-visible {
  background: rgba(143, 31, 99, 0.08);
  outline: none;
}

.endotight-results-lightbox__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.endotight-results-lightbox__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  min-width: 0;
}

.endotight-results-lightbox__figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--et-border);
  aspect-ratio: 1 / 1;
}

.endotight-results-lightbox__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.endotight-results-lightbox__badge {
  position: absolute;
  top: 0.65rem;
  inset-inline-start: 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(143, 31, 99, 0.88);
  color: var(--et-white);
}

.endotight-results-lightbox__badge--after {
  background: rgba(232, 53, 160, 0.92);
}

.endotight-results-lightbox__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--et-border);
  border-radius: 999px;
  background: var(--et-white);
  color: var(--et-navy);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.endotight-results-lightbox__nav:hover,
.endotight-results-lightbox__nav:focus-visible {
  background: var(--et-cream);
  border-color: rgba(143, 31, 99, 0.2);
  outline: none;
}

.endotight-results-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.endotight-results-lightbox__label {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--et-navy);
}

body.endotight-results-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .endotight-results-lightbox {
    display: none !important;
  }
}

/* Trust */
.endotight-trust {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(180deg, var(--et-cream) 0%, #ffeaf6 100%);
}

.endotight-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .endotight-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.endotight-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--et-white);
  border: 1px solid var(--et-border);
  border-radius: var(--et-radius-sm);
  box-shadow: 0 2px 12px rgba(143, 31, 99, 0.04);
}

.endotight-trust__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 53, 160, 0.1);
  color: var(--et-teal);
  border: 1px solid rgba(240, 138, 198, 0.35);
}

.endotight-trust__text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--et-text);
}

/* Final CTA */
.endotight-final-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.endotight-final-cta__panel {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--et-radius);
  background: var(--et-navy);
  color: var(--et-white);
  box-shadow: var(--et-shadow);
}

@media (min-width: 768px) {
  .endotight-final-cta__panel {
    grid-template-columns: 1fr min(360px, 42%);
    align-items: center;
    gap: 2rem;
  }
}

.endotight-final-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}

.endotight-final-cta__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.endotight-final-cta__call {
  color: var(--et-white) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.endotight-final-cta__call:hover {
  border-color: var(--et-gold) !important;
}

.endotight-final-cta__phone-num {
  font-weight: 700;
  direction: ltr;
  unicode-bidi: embed;
}

.endotight-final-cta .endotight-form__label {
  color: var(--et-white);
}

.endotight-final-cta .endotight-form__input {
  background: rgba(255, 255, 255, 0.95);
}

.endotight-final-cta .endotight-form__submit {
  background: var(--et-teal);
}

.endotight-final-cta .endotight-form__message.is-success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #a3cfbb;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}

.endotight-final-cta .endotight-form__message.is-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f1aeb5;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}

.endotight-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.35rem auto 0;
  padding: 0.65rem 1.15rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: var(--et-white);
  border: 1px solid var(--et-border);
  color: var(--et-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(143, 31, 99, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.endotight-instagram:hover,
.endotight-instagram:focus-visible {
  color: var(--et-teal);
  border-color: var(--et-gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(143, 31, 99, 0.14);
  outline: none;
}

.endotight-instagram__icon {
  display: inline-flex;
  color: var(--et-teal);
}

.endotight-instagram__handle {
  direction: ltr;
  unicode-bidi: embed;
  letter-spacing: 0.02em;
}

/* Sticky CTA */
.endotight-sticky-cta {
  z-index: 800;
  pointer-events: none;
}

.endotight-sticky-cta a,
.endotight-sticky-cta button {
  pointer-events: auto;
}

.endotight-sticky-cta__mobile {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: var(--et-sticky-mobile-h);
  background: var(--et-white);
  border-top: 1px solid var(--et-border);
  box-shadow: 0 -8px 30px rgba(143, 31, 99, 0.1);
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .endotight-sticky-cta__mobile {
    display: none;
  }
}

.endotight-sticky-cta__mobile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--et-navy);
  border: none;
  background: transparent;
  transition: background 0.2s ease;
}

.endotight-sticky-cta__mobile-btn:focus-visible {
  outline: 2px solid var(--et-teal);
  outline-offset: -2px;
}

.endotight-sticky-cta__mobile-btn--call {
  border-inline-end: 1px solid var(--et-border);
}

.endotight-sticky-cta__mobile--single {
  grid-template-columns: 1fr;
}

.endotight-sticky-cta__mobile--single .endotight-sticky-cta__mobile-btn--form {
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.endotight-sticky-cta__mobile-btn--form {
  background: var(--et-teal);
  color: var(--et-white);
}

.endotight-sticky-cta__mobile-btn--form:hover {
  background: #c92a8a;
}

.endotight-sticky-cta__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .endotight-sticky-cta__desktop {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: fixed;
    inset-inline-end: max(24px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    width: min(var(--et-sticky-desktop-w), calc(100vw - 48px));
    max-width: 200px;
    padding: 0.85rem 0.95rem;
    background: var(--et-white);
    border: 1px solid var(--et-border);
    border-top: 3px solid var(--et-gold);
    border-radius: var(--et-radius);
    box-shadow: 0 12px 36px rgba(143, 31, 99, 0.14);
    pointer-events: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .endotight-sticky-cta__desktop {
    width: auto;
    max-width: none;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.65rem 0.85rem;
    border-top-width: 0;
    border-inline-start: 3px solid var(--et-gold);
  }

  .endotight-sticky-cta__desktop-label,
  .endotight-sticky-cta__desktop-sub {
    display: none;
  }

  .endotight-sticky-cta__desktop-phone {
    margin: 0;
    font-size: 0.9rem;
  }

  .endotight-sticky-cta__desktop-form {
    min-height: 36px;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

.endotight-sticky-cta__desktop-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--et-navy);
}

.endotight-sticky-cta__desktop-sub {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(58, 35, 49, 0.7);
}

.endotight-sticky-cta__desktop-phone {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--et-teal);
  text-decoration: none;
  direction: ltr;
  unicode-bidi: embed;
  text-align: start;
}

.endotight-sticky-cta__desktop-phone:hover {
  color: var(--et-navy);
}

.endotight-sticky-cta__desktop-phone--placeholder {
  color: rgba(58, 35, 49, 0.55);
  font-weight: 600;
}

.endotight-sticky-cta__desktop-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: var(--et-navy);
  color: var(--et-white);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.endotight-sticky-cta__desktop-form:hover {
  background: #761a52;
}

/* Reveal animation */
.endotight-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.endotight-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .endotight-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .endotight-btn,
  .endotight-form__submit,
  .endotight-sticky-cta__mobile-btn,
  .endotight-sticky-cta__desktop-form {
    transition: none;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}
