@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ================================================================
   tri_dark.css — TRI Dark Premium System
   Full standalone dark design. No legacy overrides.
   Palette: teal accent on deep navy.
================================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --td-bg:          #0A0B0F;
  --td-bg-soft:     #0D0E13;
  --td-bg-card:     #111318;
  --td-bg-elev:     #161820;

  --td-text:        #F1F5F9;
  --td-soft:        #94A3B8;
  --td-muted:       #64748B;

  --td-teal:        #3B82F6;
  --td-teal-soft:   rgba(59,130,246,0.12);
  --td-teal-glow:   rgba(59,130,246,0.40);
  --td-teal-border: rgba(59,130,246,0.30);

  --td-border:      rgba(255,255,255,0.06);
  --td-border-soft: rgba(255,255,255,0.04);

  --td-r:           14px;
  --td-r-sm:        8px;
  --td-r-lg:        18px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
.td-page,
.td-page * { box-sizing: border-box; }
.td-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--td-bg);
  color: var(--td-text);
}
.td-page p  { margin: 0; }
.td-page ul { margin: 0; padding: 0; list-style: none; }
.td-page blockquote { margin: 0; }
.td-page img { display: block; max-width: 100%; }
.td-page a { color: var(--td-teal); text-decoration: none; transition: opacity .14s; }
.td-page a:hover { opacity: .8; }
.td-page strong { font-weight: 600; color: var(--td-text); }
.td-page button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* wrapper fills page */
.td-page .wrapper { min-height: 100vh; background: var(--td-bg); }
.td-page .td { background: var(--td-bg); }


/* ── HEADER ──────────────────────────────────────────────── */
.td-page .td-header { display: none; }
.td-page .td-header__in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.td-page .td-logo {
  font-size: 15px;
  font-weight: 600;
  color: rgba(230,237,246,0.90) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.td-page .td-logo span { display: none; }
.td-page .td-nav { display: none; }
.td-page .td-nav__a {
  font-size: 13.5px;
  color: var(--td-soft) !important;
  text-decoration: none !important;
  transition: color .14s;
}
.td-page .td-nav__a:hover { color: var(--td-text) !important; }
.td-page .td-header__cta {
  font-size: 13px;
  font-weight: 600;
  color: #93C5FD !important;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.50);
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(59,130,246,0.20);
  transition: background .14s, border-color .14s, box-shadow .14s;
}
.td-page .td-header__cta:hover {
  background: rgba(59,130,246,0.18);
  border-color: rgba(147,197,253,0.75);
  box-shadow: 0 0 20px rgba(59,130,246,0.35);
  color: #BFDBFE !important;
}
/* hide mt by default */
.td-page .td-header__cta.tri-cta-mt { display: none; }
.td-page .td-header__cta.tri-cta-mt.is-show { display: block; }


/* ── SECTION RHYTHM ──────────────────────────────────────── */
.td-page .td-sec {
  padding: 64px 0;
  background: var(--td-bg);
}
.td-page .td-sec + .td-sec,
.td-page .td-sec + .td-sec--sep,
.td-page .td-sec--sep + .td-sec {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.td-page .td-sec--sep {
  background: var(--td-bg-soft);
}
.td-page .td-sec__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.td-page .td-sec__inner--mid  { max-width: 860px; }
.td-page .td-sec__inner--narrow { max-width: 520px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.td-page .td-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #93C5FD;
  margin-bottom: 14px;
}
.td-page .td-h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--td-text);
  margin: 0 0 16px;
}
.td-page .td-h2--left { text-align: left; }
.td-page .td-sub {
  font-size: 16px;
  color: var(--td-soft);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}
.td-page .td-body { font-size: 16px; color: var(--td-soft); margin-bottom: 12px; }
.td-page .td-link { font-size: 14px; color: var(--td-teal); text-decoration: none; }
.td-page .td-disclaimer { font-size: 12px; color: var(--td-muted); text-align: center; margin-top: 24px; }
.td-page .td-sec { text-align: center; }
.td-page .td-sec .td-h2 { text-align: center; }


/* ── BUTTONS ──────────────────────────────────────────────── */
.td-page .td-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--td-r-sm);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none !important;
  transition: filter .15s, transform .15s, box-shadow .15s;
  border: none;
  white-space: nowrap;
}
.td-page .td-btn--primary {
  background: #1D4ED8;
  color: #fff !important;
  border: none;
  box-shadow: 0 0 28px rgba(37,99,235,0.40);
}
.td-page .td-btn--primary:hover {
  background: #1E40AF;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(37,99,235,0.55);
}
.td-page .td-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 600;
}
.td-page .td-btn--ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.40);
  color: #fff !important;
}
.td-page .td-btn--order {
  background: #1D4ED8;
  color: #fff !important;
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 28px;
  min-height: 56px;
  border-radius: 10px;
  box-shadow: 0 0 32px rgba(37,99,235,0.45);
  letter-spacing: .02em;
}
.td-page .td-btn--order:hover {
  background: #1D4ED8;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,99,235,0.60);
}
.td-page .td-btn--full { width: 100%; display: flex; }
/* hide mt ctaS */
.td-page .tri-cta-mt { display: none; }
.td-page .tri-cta-mt.is-show { display: block; }


/* ── CHIP / TAG ───────────────────────────────────────────── */
.td-page .td-chip {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #93C5FD;
  background: rgba(59,130,246,0.12);
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
}
.td-page .td-card__tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--td-muted);
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: auto;
  align-self: flex-start;
}


/* ── HERO ─────────────────────────────────────────────────── */
.td-page .td-hero {
  position: relative;
  overflow: hidden;
  background: var(--td-bg);
  text-align: center;
  zoom: 0.9;
}
.td-page .td-hero__glow {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 70% 60% at 50% 100%,
    rgba(37,99,235,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(32px);
}
/* centered single-column */
.td-page .td-hero__wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.td-page .td-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.td-page .td-hero__stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 2px;
}
.td-page .td-hero__trust-text {
  font-size: 13.5px;
  color: var(--td-soft);
  font-weight: 500;
}
.td-page .td-hero__h1 {
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 14px;
  text-align: center;
  max-width: 860px;
}
.td-page .td-hero__sub {
  font-size: 17px;
  color: rgba(230,237,246,0.88);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 680px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .td-page .td-hero__sub { white-space: normal; }
}
/* screenshot — full width, bleeds to bottom edge */
.td-page .td-hero__img-wrap {
  position: relative;
  width: 72%;
  max-width: 860px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(147,197,253,0.35),
    0 0 14px 3px rgba(37,99,235,0.30),
    0 0 40px 6px rgba(37,99,235,0.12);
}
.td-page .td-hero__img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(16px);
}
.td-page .td-hero__img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 13px 13px 0 0;

}
/* chips row */
.td-page .td-hero__chips {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  justify-content: center;
  padding: 0;
  border: none;
  margin: 0;
  width: auto;
  white-space: nowrap;
}
/* CTA */
.td-page .td-btn--hero {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  min-height: 54px;
  border-radius: 12px;
  background: #1D4ED8;
  color: #fff !important;
  border: none;
  box-shadow: 0 0 32px rgba(37,99,235,0.45);
  margin-bottom: 10px;
  letter-spacing: .04em;
  max-width: 420px;
  width: 100%;
  justify-content: center;
}
.td-page .td-btn--hero:hover {
  background: #1E40AF;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 36px rgba(37,99,235,0.60);
}
.td-page .td-hero__secure {
  font-size: 12px;
  color: var(--td-muted);
  text-align: center;
  padding-bottom: 16px;
}
/* shared check component */
.td-page .td-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.30);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #93C5FD;
}


/* ── FEATURE CARDS ───────────────────────────────────────── */
.td-page .td-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.td-page .td-card {
  background: var(--td-bg-card);
  border: 1px solid var(--td-border);
  border-radius: var(--td-r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: border-color .2s, transform .2s;
}
.td-page .td-card:hover {
  border-color: rgba(59,130,246,0.22);
  transform: translateY(-2px);
}
.td-page .td-card__icon {
  width: 44px;
  height: 44px;
  background: var(--td-teal-soft);
  border: 1px solid var(--td-teal-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td-teal);
  flex-shrink: 0;
}
.td-page .td-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--td-text);
  margin: 0;
  line-height: 1.3;
}
.td-page .td-card__text {
  font-size: 13.5px;
  color: var(--td-soft);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.td-page .td-midcta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.td-page .td-midcta .td-btn--primary {
  background: rgba(37,99,235,0.12);
  color: #93C5FD !important;
  border: 1px solid rgba(37,99,235,0.40);
  box-shadow: none;
  font-size: 13.5px;
  padding: 12px 24px;
}
.td-page .td-midcta .td-btn--primary:hover {
  background: rgba(37,99,235,0.20);
  color: #BFDBFE !important;
  box-shadow: 0 0 20px rgba(37,99,235,0.25);
  transform: translateY(-1px);
}
.td-page .td-midcta .tri-cta-mt { display: none; }
.td-page .td-midcta .tri-cta-mt.is-show { display: inline-flex; }


/* ── SLIDER ───────────────────────────────────────────────── */
.td-page .td-slider { position: relative; max-width: 900px; margin-left: auto; margin-right: auto; }
.td-page .td-slider .tri-slider__track { position: relative; min-height: 200px; }
.td-page .td-slider .tri-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: var(--td-r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.td-page .td-slider .tri-slider__slide img {
  width: 100%;
  display: block;
  border-radius: var(--td-r);
}
.td-page .td-slider .tri-slider__slide--active {
  opacity: 1;
  position: relative;
}
.td-page .td-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.td-page .tri-slider__dot--active.td-dot {
  background: var(--td-teal);
  width: 20px;
  border-radius: 4px;
}
.td-page .tri-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

/* Captions */
.td-page .td-captions { margin-top: 20px; min-height: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
.td-page .td-caption {
  display: none;
  background: var(--td-bg-card);
  border: 1px solid var(--td-border);
  border-left: 3px solid #2563EB;
  border-radius: var(--td-r-sm);
  padding: 18px 22px;
  text-align: left;
  animation: tdFade .3s ease;
}
.td-page .triCaption__card--active.td-caption { display: block; }
@keyframes tdFade {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.td-page .td-caption__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--td-text);
  margin-bottom: 7px;
}
.td-page .td-caption__text {
  font-size: 13px;
  color: var(--td-soft);
  line-height: 1.6;
  margin-bottom: 5px;
}
.td-page .td-caption__why {
  font-size: 12.5px;
  color: var(--td-teal);
  font-weight: 500;
}


/* ── COMPARE ─────────────────────────────────────────────── */
.td-page .td-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.td-page .td-compare__col {
  background: var(--td-bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--td-r);
  padding: 32px 28px;
}
.td-page .td-compare__col--right {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.35);
  border-left: 3px solid #3B82F6;
}
.td-page .td-compare__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--td-muted);
  margin-bottom: 18px;
}
.td-page .td-compare__label--teal { color: #93C5FD; font-size: 10.5px; }
.td-page .td-compare__label--bad  { color: rgba(168,179,199,0.55); font-size: 10.5px; }
.td-page .td-compare__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.td-page .td-compare__list li {
  font-size: 14px;
  color: rgba(168,179,199,0.70);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.td-page .td-compare__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--td-muted);
}
.td-page .td-compare__list--teal li { color: #F1F5F9; }
.td-page .td-compare__list--teal li::before {
  content: '→';
  color: #93C5FD;
  font-weight: 700;
}


/* ── VIDEO ────────────────────────────────────────────────── */
.td-page .td-video { max-width: 760px; margin: 0 auto; }
.td-page .td-video__caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--td-muted);
  margin-top: 14px;
}
.td-page .td-video__btn {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: var(--td-r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: none;
  padding: 0;
  background: none;
}
.td-page .td-video__btn img { width: 100%; display: block; }
.td-page .td-video__play {
  position: absolute;
  inset: 0;
  background: rgba(7,11,18,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .2s;
}
.td-page .td-video__btn:hover .td-video__play { background: rgba(7,11,18,0.4); }
.td-page .td-video__play-icon {
  width: 88px;
  height: 88px;
  background: #3B82F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 36px rgba(59,130,246,0.65), 0 0 72px rgba(59,130,246,0.25);
}
.td-page .td-video__play span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}
/* Modal */
.td-page .td-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.td-page .td-modal[style*="flex"] { display: flex; }
.td-page .td-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}
.td-page .td-modal__box {
  position: relative;
  z-index: 1;
  background: var(--td-bg-card);
  border-radius: var(--td-r);
  overflow: hidden;
  width: 90%;
  max-width: 820px;
  border: 1px solid var(--td-border);
}
.td-page .td-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  color: var(--td-soft);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.td-page .td-modal__video { position: relative; padding-bottom: 56.25%; height: 0; }
.td-page .td-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* ── USE CASES ───────────────────────────────────────────── */
.td-page .td-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 8px;
}
.td-page .td-usecases--4 {
  grid-template-columns: repeat(4, 1fr);
}
.td-page .td-usecase {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--td-bg-card);
  border: 1px solid var(--td-border);
  border-radius: var(--td-r);
  padding: 24px 22px;
  text-align: left;
  transition: border-color .2s;
}
.td-page .td-usecase:hover { border-color: rgba(59,130,246,0.18); }
.td-page .td-usecase__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--td-teal);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
@media (max-width: 860px) {
  .td-page .td-usecases--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .td-page .td-usecases--4 { grid-template-columns: 1fr; }
}


/* ── REVIEWS ─────────────────────────────────────────────── */
.td-page .td-reviews-carousel {
  width: 100%;
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 28px;
  overflow: hidden;
}
.td-page .td-reviews-track {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.td-page .td-review {
  background: var(--td-bg-card);
  border: 1px solid var(--td-border);
  border-radius: var(--td-r);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  width: calc((100% - 32px) / 3);
  flex-shrink: 0;
  text-align: left;
  transition: border-color .2s;
}
.td-page .td-review:hover { border-color: rgba(37,99,235,0.25); }
.td-page .td-review:first-child {
  border-color: rgba(37,99,235,0.35);
  background: rgba(37,99,235,0.04);
}
.td-page .td-review:first-child .td-review__text { color: var(--td-text); }
.td-page .td-review__stars {
  font-size: 13px;
  color: #F59E0B;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.td-page .td-review__text {
  font-size: 13.5px;
  color: var(--td-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.td-page .td-review__footer {
  font-size: 12px;
  color: var(--td-muted);
}
.td-page .td-review__name {
  font-weight: 600;
  color: var(--td-text);
}


/* ── ORDER SECTION ───────────────────────────────────────── */
.td-page .td-order-sec {
  background: var(--td-bg);
  border-top: 1px solid rgba(37,99,235,0.20);
  position: relative;
}
.td-page .td-order-sec::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
}
.td-page .td-order-head {
  text-align: center;
  margin-bottom: 24px;
}
.td-page .td-order-head .td-h2 { margin-bottom: 0; }
.td-page .td-order-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
}
.td-page .td-order-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}
.td-page .td-order-price__old {
  font-size: 32px;
  color: rgba(168,179,199,0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.td-page .td-order-price__main {
  font-size: 84px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.td-page .td-order-price__save-big {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #D97706;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 12px;
}
.td-page .td-order-price__sub {
  font-size: 13px;
  color: var(--td-muted);
  margin-bottom: 28px;
}
.td-page .td-order-price__compare {
  font-size: 12px;
  color: rgba(168,179,199,0.50);
  font-style: italic;
  margin-bottom: 28px;
}

/* Platform toggle in order card */
.td-page .td-plat-wrap {
  margin-bottom: 20px;
}
.td-page .td-plat-label {
  font-size: 11.5px;
  color: var(--td-muted);
  margin-bottom: 10px;
}
.td-page .td-plat-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--td-border);
  border-radius: var(--td-r-sm);
  overflow: hidden;
}
.td-page .td-plat-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--td-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.td-page .td-plat-tab svg { opacity: 0.5; }
.td-page .td-plat-tab.tri-plat-tab--active {
  background: rgba(59,130,246,0.12);
  color: var(--td-teal);
}
.td-page .td-plat-tab.tri-plat-tab--active svg { opacity: 1; color: var(--td-teal); }

/* ── OVERRIDE WP THEME ORDER WRAPPER ─────────────────────── */
.td-page .adv-order-cta,
.td-page .adv-order-cta > div,
.td-page .adv-precheckout-wrap,
.td-page [class*="adv-order"],
.td-page [class*="adv-pre"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* ── ORDER SECURE LINE ────────────────────────────────────── */
.td-page .td-order-secure {
  font-size: 13px;
  color: #94A3B8;
  text-align: center;
  margin: 14px 0 4px;
  letter-spacing: .01em;
}

/* ── CONTINUE CTA BUTTON ──────────────────────────────────── */
.td-page .td-btn--order {
  background: #1D4ED8;
  color: #fff !important;
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 28px;
  min-height: 56px;
  border-radius: 10px;
  letter-spacing: .03em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(37,99,235,0.45);
}
.td-page .td-btn--order:hover {
  background: #1D4ED8;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,99,235,0.60);
}
.td-page .td-payments {
  margin-top: 28px;
  text-align: center;
}
.td-page .td-payments img { margin: 0 auto 8px; max-width: 280px; opacity: 0.45; }
.td-page .td-payments p  { font-size: 12px; color: var(--td-muted); }


/* ── FAQ ──────────────────────────────────────────────────── */
.td-page .td-faqs { max-width: 680px; margin: 0 auto; }
.td-page .td-faq-item {
  border-bottom: 1px solid var(--td-border);
}
.td-page .td-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--td-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .14s;
}
.td-page .td-faq-q:hover { color: var(--td-teal); }
.td-page .td-faq-ic {
  font-size: 18px;
  color: var(--td-muted);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform .2s;
}
.td-page .adv-faq--open .td-faq-ic { transform: rotate(45deg); color: var(--td-teal); }
.td-page .td-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.td-page .adv-faq--open .td-faq-a { /* JS sets max-height */ }
.td-page .adv-faq-a__inner {
  padding-bottom: 18px;
}
.td-page .adv-faq-a__inner p {
  font-size: 14.5px;
  color: var(--td-soft);
  line-height: 1.7;
}


/* ── ABOUT ────────────────────────────────────────────────── */
.td-page .td-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  margin-bottom: 40px;
  align-items: start;
}
.td-page .td-about__left .td-h2 { text-align: left; }
.td-page .td-about__stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.td-page .td-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.td-page .td-stat strong { font-size: 22px; font-weight: 800; color: var(--td-text); }
.td-page .td-stat span  { font-size: 12px; color: var(--td-muted); }
.td-page .td-risk {
  border-top: 1px solid var(--td-border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--td-muted);
  line-height: 1.7;
  text-align: center;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.td-page .td-sec--finalcta {
  background: var(--td-bg);
  border-top: 1px solid var(--td-border);
}
.td-page .td-sec--finalcta .td-h2 { margin-bottom: 10px; }
.td-page .td-sec--finalcta .td-sub { margin-bottom: 0; }
.td-page .td-sec--finalcta .tri-cta-mt { display: none; }
.td-page .td-sec--finalcta .tri-cta-mt.is-show { display: inline-flex; }


/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  
  .td-page .td-hero__wrap {
    padding: 64px 20px 72px;
  }
  .td-page .td-hero__h1 { font-size: clamp(28px, 8vw, 40px); }
  
  .td-page .td-hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .td-page .td-hero__cta-group .td-btn {
    width: 100%; justify-content: center; min-height: 52px;
  }

  .td-page .td-cards         { grid-template-columns: 1fr 1fr; }
  .td-page .td-compare       { grid-template-columns: 1fr; }
  .td-page .td-usecases      { grid-template-columns: 1fr; }
  .td-page .td-reviews       { grid-template-columns: 1fr; }
  .td-page .td-about         { grid-template-columns: 1fr; gap: 32px; }
  .td-page .td-order-card    { padding: 36px 24px; }
  .td-page .td-order-price__main { font-size: 60px; }

  .td-page .td-sec { padding: 48px 0; }
  .td-page .td-sec__inner { padding: 0 20px; }

  .td-page .td-nav  { display: none; }
  .td-page .td-header__cta { margin-left: auto; }
}
@media (max-width: 560px) {
  .td-page .td-cards { grid-template-columns: 1fr; }
  .td-page .td-order-card { padding: 28px 20px; }
}

/* ── FINAL CTA meta line ────────────────────────────────── */
.td-page .td-finalcta__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--td-soft);
  font-weight: 500;
}
.td-page .td-finalcta__dot {
  color: var(--td-muted);
  font-size: 10px;
}
/* mobile cards 2x2 already set; on small screens go 1col */
@media (max-width: 600px) {
  .td-page .td-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .td-page .td-hero__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 52px;
  }
  .td-page .td-hero__right { order: -1; }
  .td-page .td-hero__h1 { font-size: clamp(26px, 7vw, 36px); }
  .td-page .td-hero__sub { font-size: 15px; }
  .td-page .td-btn--hero {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 52px;
    align-items: center;
  }
  .td-page .td-hero__secure { text-align: center; }
  .td-page .td-hero__trust { justify-content: center; }
}

/* ── HERO MOBILE ────────────────────────────────────────── */
@media (max-width: 680px) {
  .td-page .td-hero__h1 { font-size: clamp(28px, 8.5vw, 42px); line-height: 1.08; }
  .td-page .td-hero__sub { font-size: 15px; }
  .td-page .td-hero__wrap { padding: 48px 20px 0; }
  .td-page .td-btn--hero {
    width: 100%;
    padding: 18px 24px;
    justify-content: center;
    min-height: 52px;
  }
  .td-page .td-hero__secure { padding-bottom: 48px; font-size: 12px; }
  .td-page .td-hero__img { border-radius: 8px 8px 0 0; }
}

/* ── CHIPS MOBILE: reflow below image ───────────────────── */
@media (max-width: 600px) {
  .td-page .td-hero__chips {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    padding: 14px 0 0;
    width: 100%;
  }
}

/* ── SCROLL HINT ─────────────────────────────────────────── */
.td-page .td-hero__scroll-hint {
  font-size: 18px;
  color: rgba(255,255,255,0.18);
  margin-top: 4px;
  padding-bottom: 8px;
  animation: tdBounce 2s ease-in-out infinite;
}
@keyframes tdBounce {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50%       { transform: translateY(6px); opacity: .65; }
}

/* ── HERO PRICE BLOCK ──────────────────────────────────────── */
.td-page .td-hero__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 8px;
  gap: 8px;
}
.td-page .td-hero__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.td-page .td-hero__price-old {
  font-size: 20px;
  font-weight: 500;
  color: rgba(148,163,184,0.40);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.td-page .td-hero__price-new {
  font-size: 68px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.td-page .td-hero__price-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #D97706;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  white-space: nowrap;
  margin: 0;
}
/* ── USE CASE EXPANDED ────────────────────────────────────── */
.td-page .td-usecase__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--td-text);
  margin-bottom: 6px;
}
.td-page .td-usecase__desc {
  display: block;
  font-size: 13px;
  color: var(--td-soft);
  line-height: 1.6;
}

/* ── ORDER BADGE ──────────────────────────────────────────── */
.td-page .td-order-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.td-page .td-order-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #93C5FD;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ── ABOUT PLATFORM BADGES ────────────────────────────────── */
.td-page .td-about__plats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  margin-top: 8px;
}
.td-page .td-about__plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--td-soft);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--td-border);
  border-radius: 5px;
  padding: 4px 10px;
}

/* ── VIDEO BULLETS ────────────────────────────────────────── */
.td-page .td-video-bullets {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.td-page .td-video-bullet {
  font-size: 13px;
  color: var(--td-soft);
  font-weight: 500;
}
@media (max-width: 560px) {
  .td-page .td-video-bullets { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── ORDER PRICE COMPARE ──────────────────────────────────── */
.td-page .td-order-price__compare {
  font-size: 12px;
  color: rgba(168,179,199,0.60);
  font-style: italic;
  margin-bottom: 24px;
  margin-top: 4px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.td-page .td-footer {
  background: var(--td-bg);
  border-top: 1px solid var(--td-border);
  padding: 28px 0;
}
.td-page .td-footer__in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.td-page .td-footer__logo {
  font-size: 14px;
  font-weight: 600;
  color: rgba(230,237,246,0.60);
}
.td-page .td-footer__nav {
  display: flex;
  gap: 24px;
  flex: 1;
}
.td-page .td-footer__link {
  font-size: 13px;
  color: var(--td-muted) !important;
  text-decoration: none !important;
  transition: color .14s;
}
.td-page .td-footer__link:hover { color: var(--td-soft) !important; }
.td-page .td-footer__copy {
  font-size: 12px;
  color: var(--td-muted);
  margin: 0;
}
@media (max-width: 600px) {
  .td-page .td-footer__in { flex-direction: column; gap: 14px; align-items: flex-start; }
  .td-page .td-footer__nav { flex-wrap: wrap; gap: 14px; }
}

/* ── REVIEW DOTS ─────────────────────────────────────────── */
.td-page .td-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.td-page .td-rdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.td-page .td-rdot--active {
  background: #1D4ED8;
  width: 20px;
  border-radius: 4px;
}

/* ── ORDER FEATURE LIST ───────────────────────────────────── */
.td-page .td-order-list {
  text-align: left;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.td-page .td-order-list li {
  font-size: 14px;
  color: var(--td-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.td-page .td-order-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--td-teal);
  font-weight: 700;
}
.td-page .td-order-list li strong { color: var(--td-text); }

/* ── FOMO TIMER — flip-card style ────────────────────────── */
.td-page .td-order-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 28px 0 24px;
}
.td-page .td-order-timer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--td-text);
  text-transform: uppercase;
  opacity: 0.75;
}
.td-page .td-order-timer__units {
  display: flex;
  align-items: center;
  gap: 10px;
}
.td-page .td-order-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.td-page .td-order-timer__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'DM Mono', 'Courier New', monospace;
  border: 1px solid rgba(37,99,235,0.28);
  box-shadow: 0 0 20px rgba(37,99,235,0.12);
}
.td-page .td-order-timer__uname {
  font-size: 12px;
  color: var(--td-soft);
  letter-spacing: .04em;
  text-transform: lowercase;
}
.td-page .td-order-timer__sep {
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  margin-bottom: 24px;
}
.td-page .td-order-timer__note {
  font-size: 13px;
  color: var(--td-muted);
  text-align: center;
  margin: 0;
}

/* ── ORDER DIVIDER ────────────────────────────────────────── */
.td-page .td-order-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 24px 0;
}

/* ── ORDER PAYMENT ICONS ──────────────────────────────────── */
.td-page .td-order-pay-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 18px;
  opacity: 0.70;
}
.td-page .td-pay-icon {
  border-radius: 4px;
  display: block;
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
}

/* ── ORDER RISK DISCLAIMER ────────────────────────────────── */
.td-page .td-order-risk {
  font-size: 11px;
  color: var(--td-muted);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

/* ── ORDER TRUST (stars under CTA) ──────────────────────── */
.td-page .td-order-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 6px 0 16px;
}
.td-page .td-order-stars {
  font-size: 13px;
  color: #F59E0B;
  letter-spacing: 1px;
}
.td-page .td-order-trust-text {
  font-size: 12.5px;
  color: var(--td-soft);
  font-weight: 500;
}

/* ── HERO SECURE LINE ────────────────────────────────────── */
.td-page .td-hero__secure {
  font-size: 13px;
  color: #94A3B8;
  text-align: center;
  margin: 6px 0 4px;
}

/* ── HIDE WORDPRESS THEME FOOTER ────────────────────────── 
.td-page ~ footer,
.wrapper ~ footer,
body > footer:not(.td-footer),
#colophon,
.site-footer:not(.td-footer),
footer.site-footer {
  display: none !important;
}*/


/* ── HERO PLATFORM TOGGLE ───────────────────────────────── */
.td-page .td-hero__plat-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.td-page .td-hero__plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--td-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--td-border);
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.td-page .td-hero__plat-btn--active {
  color: var(--td-text);
  background: rgba(37,99,235,0.18);
  border-color: rgba(37,99,235,0.40);
}

/* ── MID CTA STRIP ──────────────────────────────────────── */
.td-page .td-midcta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 28px 0;
  text-align: center;
}
.td-page .td-midcta-strip__text {
  font-size: 15px;
  color: var(--td-soft);
  font-weight: 500;
}
.td-page .td-midcta-strip__btn {
  max-width: 380px;
  width: 100%;
  justify-content: center;
}
.td-page .td-midcta-strip .tri-cta-mt { display: none; }
.td-page .td-midcta-strip .tri-cta-mt.is-show { display: flex; }

/* ── ORDER GUARANTEE LINE ───────────────────────────────── */
.td-page .td-order-guarantee {
  font-size: 11.5px;
  color: var(--td-muted);
  margin-top: 6px;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────── */
.td-page .td-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: rgba(7,6,13,0.96);
  border-top: 1px solid rgba(37,99,235,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.td-page .td-sticky-cta .tri-cta-mt { display: none; }
.td-page .td-sticky-cta .tri-cta-mt.is-show { display: flex; }
@media (max-width: 768px) {
  .td-page .td-sticky-cta { display: block; }
}

/* ── PLATFORM OVERLAY ON SCREENSHOT ────────────────────── */
.td-page .td-hero__plat-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.td-page .td-hero__plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(230,237,246,0.90);
  background: rgba(7,6,13,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 4px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.td-page .td-hero__plat-sep {
  font-size: 11px;
  color: var(--td-muted);
}

/* ── PLATFORM NOTE UNDER BUTTON ─────────────────────────── */
.td-page .td-hero__plat-note {
  font-size: 12px;
  color: var(--td-muted);
  text-align: center;
  margin-bottom: 8px;
}


/* ================================================================
   CR POLISH — FINAL FIXES (TZ spec)
================================================================ */

/* Order sub: "One-time payment • No subscription • Free updates" */
.td-page .td-order-price__sub {
  font-size: 13px;
  color: var(--td-muted);
  margin-bottom: 28px;
  letter-spacing: .01em;
}

/* Payment icons: enforce uniform height, no stretching */
.td-page .td-pay-icon,
.td-page .td-order-pay-icons img,
.td-page .td-order-pay-icons svg {
  height: 20px;
  width: auto;
  max-height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
/* Strip image (single wide image with all payment logos) */
.td-page .td-pay-icon--strip {
  height: auto;
  max-height: 28px;
  width: auto;
  max-width: 260px;
  opacity: 0.75;
  filter: grayscale(15%) brightness(1.1);
}

/* Testimonial pre-line */
.td-page .td-reviews-pre {
  font-size: 15px;
  color: var(--td-soft);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 28px;
  font-weight: 500;
  line-height: 1.6;
}

/* What's New sub-line */
.td-page .td-whatsnew-sub {
  font-size: 15px;
  color: var(--td-soft);
  text-align: center;
  margin: -24px auto 36px;
  max-width: 600px;
  line-height: 1.6;
}

/* Real Charts block: bigger screenshot */
.td-page .td-realcharts__img-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 16px;
}
.td-page .td-realcharts__img-wrap img {
  width: 100%;
  border-radius: var(--td-r);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.td-page .td-realcharts__caption {
  font-size: 14px;
  color: var(--td-muted);
  text-align: center;
  margin-top: 8px;
}

/* Video sub-line */
.td-page .td-video__sub {
  font-size: 15px;
  color: var(--td-soft);
  text-align: center;
  margin: -20px auto 24px;
  max-width: 480px;
}

/* Ensure ghost button stays consistent */
.td-page .td-btn--ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.36);
  color: #fff !important;
}

/* Section heading: enforce consistent margin rhythm */
.td-page .td-sec .td-h2 {
  margin-bottom: 12px;
}
.td-page .td-sec .td-sub {
  margin-bottom: 40px;
}

/* Mobile: enforce full-width CTA everywhere */
@media (max-width: 600px) {
  .td-page .td-btn--hero,
  .td-page .td-btn--order {
    width: 100%;
    min-height: 52px;
  }
  .td-page .td-order-price__main { font-size: 56px; }
}

/* ── TIMER MOBILE ────────────────────────────────────────── */
@media (max-width: 480px) {
  .td-page .td-order-timer__card {
    width: 64px;
    height: 64px;
    font-size: 32px;
    border-radius: 8px;
  }
  .td-page .td-order-timer__units { gap: 6px; }
  .td-page .td-order-timer__sep { font-size: 26px; }
}

/* ── HERO PRICE MOBILE ───────────────────────────────────── */
@media (max-width: 480px) {
  .td-page .td-hero__price-new { font-size: 36px; }
  .td-page .td-hero__price-old { font-size: 18px; }
}


/* ===== FOOTER FIX ===== */

footer a,
footer a:visited,
footer a:hover,
footer a:active {
  color: #6B778C !important; /* или твой цвет */
  text-decoration: none !important;
}

/* если нужен muted стиль как у disclaimer */
footer {
  color: #6B778C; /* твой td-muted */
  font-size: 12px;
  line-height: 1.6;
}

footer p {
  color: #6B778C;
}

footer a:hover {
  opacity: 0.8;
}


/* ================================================================
   MQL PRECHECKOUT MODAL — HARD OVERRIDE
================================================================ */

body .mql-precheckout-modal{
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

body .mql-precheckout-backdrop{
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.62) !important;
}

body .mql-precheckout-panel{
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%,-50%) !important;
  width: min(640px, calc(100vw - 28px)) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #0b0d12 !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.55) !important;
  overflow: hidden !important;
  border: 1px solid rgba(11,13,18,.10) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text","Segoe UI", Inter, Roboto, Arial, sans-serif !important;
}

body .mql-precheckout-head{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 18px !important;
  border-bottom: 1px solid rgba(11,13,18,.10) !important;
}

body .mql-precheckout-title{
  font-size: 15px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  letter-spacing: .01em !important;
  color: #0b0d12 !important;
  margin: 0 !important;
}

body .mql-precheckout-close{
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 10px !important;
  background: rgba(11,13,18,.06) !important;
  border: 1px solid rgba(11,13,18,.10) !important;
  color: rgba(11,13,18,.78) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body .mql-precheckout-body{
  padding: 18px !important;
}

body .mql-precheckout-subtitle{
  margin: -4px 0 14px 0 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: rgba(11,13,18,.62) !important;
}

body .mql-precheckout-row{
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  margin-bottom: 12px !important;
}

body .mql-precheckout-row label{
  display: block !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: rgba(11,13,18,.62) !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

body .mql-precheckout-row input[type="email"],
body .mql-precheckout-row input[type="text"]{
  width: 100% !important;
  height: auto !important;
  padding: 12px 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(11,13,18,.14) !important;
  background: #fff !important;
  color: #0b0d12 !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

body .mql-precheckout-row input[type="email"]:focus,
body .mql-precheckout-row input[type="text"]:focus{
  border-color: rgba(47,99,255,.55) !important;
  box-shadow: 0 0 0 4px rgba(47,99,255,.16) !important;
}

body .mql-precheckout-note{
  display: flex !important;
  gap: 8px !important;
  align-items: flex-start !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(11,13,18,.10) !important;
  background: rgba(11,13,18,.03) !important;
  color: rgba(11,13,18,.70) !important;
  font-size: 12px !important;
  margin: 8px 0 0 0 !important;
}

body .mql-precheckout-consent{
  display: flex !important;
  gap: 10px !important;
  align-items: flex-start !important;
  margin: 10px 0 0 0 !important;
  color: rgba(11,13,18,.70) !important;
  font-size: 12px !important;
}

body .mql-precheckout-consent input[type="checkbox"]{
  width: 16px !important;
  height: 16px !important;
  margin-top: 2px !important;
  accent-color: #2f63ff !important;
}

body .mql-precheckout-privacy{
  display: block !important;
  margin-top: 4px !important;
  color: rgba(11,13,18,.50) !important;
}

body .mql-precheckout-actions{
  margin-top: 14px !important;
}

body .mql-precheckout-submit{
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(11,13,18,.14) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  min-height: 52px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  background: linear-gradient(180deg, rgba(11,13,18,.94), rgba(11,13,18,.86)) !important;
  color: #fff !important;
  cursor: pointer !important;
  box-shadow: 0 18px 56px rgba(11,13,18,.18) !important;
  text-transform: none !important;
}

body .mql-precheckout-next{
  text-align: center !important;
  margin-top: 10px !important;
  font-size: 12px !important;
  color: rgba(11,13,18,.52) !important;
}

body .mql-precheckout-error{
  margin-top: 10px !important;
  color: #b42318 !important;
  font-size: 12px !important;
}

/* =========================================================
   MOBILE FIXES — HERO / CTA / REVIEWS
   add to END of tri_dark.css
========================================================= */

@media (max-width: 767px) {

  /* ---------- HERO WRAP ---------- */

  .td-page .td-hero {
    zoom: 1;
  }

  .td-page .td-hero__wrap {
    padding: 8px 18px 0;
  }

  .td-page .td-hero__h1 {
    font-size: 34px;
    line-height: 1.06;
    margin: 0 0 12px;
    max-width: 100%;
  }

  .td-page .td-hero__sub {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    max-width: 100%;
    white-space: normal;
  }

  .td-page .td-hero__img-wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .td-page .td-hero__img {
    border-radius: 13px;
  }

  /* ---------- CHIPS ON IMAGE ---------- */
  /* keep them ON the screenshot, but compact and centered */

  .td-page .td-hero__chips {
    top: 8px;
    left: 8px;
    right: 8px;
    transform: none;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    white-space: normal;
  }

  .td-page .td-chip {
    font-size: 9px;
    line-height: 1.15;
    padding: 5px 8px;
    border-radius: 7px;
    max-width: none;
    letter-spacing: .04em;
  }

  /* ---------- PLATFORM BADGES ON IMAGE ---------- */
  /* keep overlay, but make it fit better on mobile */

  .td-page .td-hero__plat-overlay {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 10;
  }

  .td-page .td-hero__plat-badge {
    font-size: 10px;
    line-height: 1.2;
    padding: 7px 10px;
    border-radius: 10px;
    white-space: nowrap;
  }

  .td-page .td-hero__plat-sep {
    display: none;
  }

  /* ---------- PRICE / CTA BLOCK ---------- */

  .td-page .td-hero__price-block {
    margin-bottom: 14px;
  }

  .td-page .td-hero__price-row {
    gap: 10px;
    align-items: baseline;
  }

  .td-page .td-hero__price-old {
    font-size: 28px;
  }

  .td-page .td-hero__price-new {
    font-size: 58px;
    line-height: .95;
  }

  .td-page .td-hero__price-save {
    margin-top: 8px;
    font-size: 11px;
    padding: 7px 12px;
  }

  .td-page .td-btn--hero {
    margin-bottom: 8px;
    min-height: 52px;
    padding: 15px 22px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* pull secure + trust upward so first screen is tighter */
  .td-page .td-hero__secure {
    font-size: 11.5px;
    line-height: 1.4;
    padding-bottom: 10px;
    margin: 0;
  }

  .td-page .td-hero__trust {
    gap: 7px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }

  .td-page .td-hero__stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .td-page .td-hero__trust-text {
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
  }

  .td-page .td-hero__scroll-hint {
    margin-top: 6px;
  }

  /* ---------- SECTIONS GENERAL ---------- */

  .td-page .td-sec {
    padding: 48px 0;
  }

  .td-page .td-sec__inner {
    padding: 0 18px;
  }

  .td-page .td-sub {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 100%;
  }

  /* ---------- REVIEWS ---------- */
  /* one card per screen */

  .td-page .td-reviews-carousel {
    padding: 0 18px;
    margin-top: 24px;
  }

  .td-page .td-reviews-track {
    gap: 12px;
  }

  .td-page .td-review {
    width: 100%;
    min-width: 100%;
    padding: 22px 18px;
  }

  .td-page .td-review__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .td-page .td-review__footer {
    font-size: 12px;
    line-height: 1.5;
  }

  /* if sticky CTA strip appears on mobile, keep it tighter */
  .td-page .td-midcta-strip {
    padding: 14px 18px;
  }

  .td-page .td-midcta-strip__text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .td-page .td-midcta-strip__btn {
    width: 100%;
    min-height: 52px;
  }
}
/* ── ALTERNATING SECTION BG ──────────────────────────────── */
.td-page .td-sec:nth-child(even) {
  background: var(--td-bg-soft);
}
