/*
  Versión TikTok México v4.
  Construcción inspirada en la cadencia del sitio de referencia, con una
  identidad propia en verde bosque, latón antiguo y papel cálido.
*/

.tiktok-page {
  --ink: #0f1a17;
  --ink-soft: #16231e;
  --ink-card: #1b2b24;
  --paper: #f3ede2;
  --paper-2: #e6dccb;
  --cream: #fffaf0;
  --muted: #c8c1b4;
  --muted-dark: #685f53;
  --gold: #c99a49;
  --gold-light: #e7c67f;
  --gold-dark: #856024;
  --green: #3d8b62;
  --line-dark: rgba(231, 198, 127, 0.18);
  --line-light: rgba(52, 72, 62, 0.18);
  --shadow: 0 20px 58px rgba(3, 10, 7, 0.28);
  background: var(--ink);
  color: var(--cream);
}

.tiktok-page .container {
  width: min(1120px, calc(100% - 40px));
}

.tiktok-page .announcement {
  background: var(--gold);
  color: #152019;
  font-size: 0.76rem;
  letter-spacing: 0.055em;
}

.tiktok-page .announcement-inner {
  padding-block: 9px;
}

.tiktok-page .button,
.human-choice .button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: var(--gold);
  color: #142019;
  box-shadow: 0 12px 28px rgba(201, 154, 73, 0.2);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tiktok-page .button:hover,
.human-choice .button:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  filter: none;
  transform: translateY(-2px);
}

.tiktok-page .button:focus-visible,
.tiktok-page a:focus-visible,
.tiktok-page button:focus-visible,
.tiktok-page summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

/* Hero: mensaje directo, producto real y precio dentro del flujo inicial. */
.human-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 38px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--cream);
}

.human-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 14%, rgba(201, 154, 73, 0.13), transparent 31rem),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  content: "";
  pointer-events: none;
}

.human-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.62fr);
  align-items: center;
  gap: 34px clamp(44px, 7vw, 90px);
}

.human-hero-copy {
  max-width: 650px;
}

.human-hero .eyebrow,
.real-page-label {
  margin-bottom: 15px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.human-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  letter-spacing: -0.042em;
  line-height: 1.01;
}

.human-hero-lead {
  max-width: 620px;
  margin-bottom: 23px;
  color: #d6d0c5;
  font-size: 1.06rem;
  line-height: 1.62;
}

.hero-conversion-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #f1ece3;
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.hero-conversion-list li {
  position: relative;
  padding-left: 25px;
}

.hero-conversion-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-light);
  content: "✓";
  font-weight: 900;
}

.human-real-page {
  width: min(100%, 440px);
  margin: 0 auto;
}

.real-page-label {
  margin: 0 0 10px;
  text-align: center;
}

.human-real-page button {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(231, 198, 127, 0.45);
  border-radius: 14px;
  background: #fff;
  box-shadow: 14px 18px 0 rgba(201, 154, 73, 0.15), var(--shadow);
  cursor: zoom-in;
}

.human-real-page img {
  width: 100%;
  border-radius: 8px;
}

.human-real-page figcaption {
  margin-top: 17px;
  color: #bdb6aa;
  font-size: 0.76rem;
  line-height: 1.52;
  text-align: center;
}

.human-real-page figcaption strong {
  color: var(--gold-light);
}

.human-hero-bottom {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.human-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  color: #bcb5a9;
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.human-facts strong,
.human-facts span {
  display: grid;
  align-content: start;
  min-height: 54px;
  padding: 0 18px;
  border-right: 1px solid var(--line-dark);
  color: #c9c2b7;
}

.human-facts strong {
  padding-left: 0;
}

.human-facts span:last-child {
  border-right: 0;
}

.human-facts b {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.human-first-offer {
  display: flex;
  align-items: center;
  gap: 19px;
}

.human-first-offer p {
  display: grid;
  margin: 0;
  color: #aaa296;
  font-size: 0.72rem;
  line-height: 1.38;
  text-align: right;
}

.human-first-offer p strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.52rem;
  line-height: 1.1;
}

.human-first-offer p small {
  color: #aca498;
}

.human-first-offer .button {
  min-width: 228px;
}

/* Oferta: dos decisiones inequívocas, sin popup ni botón falso. */
.human-offers {
  padding: 70px 0 52px;
  background: var(--ink-soft);
  color: var(--cream);
}

.human-offers-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(270px, 0.5fr);
  align-items: end;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto 35px;
}

.human-offers-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -21px;
  color: var(--gold-light);
}

.human-offers-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}

.human-offers-heading > p:last-child {
  margin: 0;
  color: #bbb4a9;
  font-size: 0.87rem;
  line-height: 1.62;
}

.human-choice-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  border: 0;
}

.human-choice {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px 30px 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: var(--ink-card);
  color: var(--cream);
}

.human-choice-complete {
  border: 2px solid var(--gold);
  background: #1d3028;
  box-shadow: 0 24px 58px rgba(3, 10, 7, 0.32);
}

.human-choice-base {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.choice-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #142019;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.human-choice-name,
.human-choice-base .human-choice-name {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.human-choice h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.07;
}

.human-choice-intro,
.human-choice-base .human-choice-intro {
  margin-bottom: 19px;
  color: #bdb6aa;
  font-size: 0.83rem;
  line-height: 1.55;
}

.human-choice ul {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  color: #eee9df;
  font-size: 0.82rem;
  line-height: 1.4;
  list-style: none;
}

.human-choice li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.human-choice li:last-child {
  border-bottom: 0;
}

.human-choice li::before {
  margin-right: 9px;
  color: var(--gold-light);
  content: "✓";
  font-weight: 900;
}

.choice-detail-link {
  align-self: flex-start;
  margin: -2px 0 18px;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.human-choice-price,
.human-choice-base .human-choice-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.human-choice-price > span,
.human-choice-base .human-choice-price > span {
  display: block;
  color: #aaa296;
  font-size: 0.73rem;
  text-transform: uppercase;
}

.human-choice-price s {
  color: #df8b78;
}

.human-choice-price > strong,
.human-choice-base .human-choice-price > strong {
  display: block;
  margin: 4px 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 3.65rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.human-choice-price strong small {
  color: #ddd6ca;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.human-choice-price p,
.human-choice-base .human-choice-price p {
  margin: 0 0 16px;
  color: #aaa296;
  font-size: 0.71rem;
}

.human-choice .button {
  width: 100%;
  min-height: 60px;
  padding: 14px 12px;
  font-size: 0.76rem;
}

.human-choice-base .button {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold-light);
  box-shadow: none;
}

.human-choice-base .button:hover {
  background: var(--gold);
  color: #142019;
}

.human-checkout-note,
.human-choice-base .human-checkout-note {
  display: block;
  margin-top: 10px;
  color: #9f978c;
  font-size: 0.67rem;
  text-align: center;
}

.human-trust-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: #e3ddd3;
  font-size: 0.7rem;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.human-trust-line span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-right: 1px solid var(--line-dark);
}

.human-trust-line span:last-child {
  border-right: 0;
}

.human-payment-note {
  max-width: 740px;
  margin: 13px auto 0;
  color: #999185;
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

/* Prueba social con el mismo patrón fácil de recorrer del sitio de referencia. */
.mx-testimonials {
  padding: 67px 0 53px;
  background: var(--paper);
  color: var(--ink);
}

.mx-testimonials .section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.mx-testimonials .section-heading .eyebrow {
  color: var(--gold-dark);
}

.mx-testimonials .section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
}

.mx-testimonials .section-heading p:last-child {
  color: var(--muted-dark);
}

.mx-testimonial-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

.mx-testimonials .testimonial-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #d3c9ba;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 26, 23, 0.08);
}

.mx-testimonials .testimonial-card img {
  width: 100%;
}

.mx-testimonials .testimonial-card figcaption {
  min-height: 58px;
  padding: 11px 13px;
  border-top: 1px solid #ddd3c6;
  color: #544d44;
  font-size: 0.7rem;
  line-height: 1.45;
}

.mx-more-testimonials,
.testimonial-permission {
  max-width: 940px;
  margin-inline: auto;
}

.mx-more-testimonials > summary {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.testimonial-permission {
  color: #71685d;
  text-align: center;
}

/* Garantía, FAQ y transición: contraste alto y lectura simple. */
.mx-guarantee {
  padding: 48px 0;
  border-block: 1px solid #d0c5b5;
  background: var(--paper-2);
  color: var(--ink);
}

.mx-guarantee .guarantee-card {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 34px;
  max-width: 870px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mx-guarantee .guarantee-number {
  width: 106px;
  height: 106px;
  border-color: var(--gold-dark);
  color: var(--ink);
}

.mx-guarantee .guarantee-number small,
.mx-guarantee .eyebrow {
  color: var(--gold-dark);
}

.mx-guarantee .guarantee-number strong {
  font-size: 2.8rem;
}

.mx-guarantee h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.mx-guarantee p:last-child {
  max-width: 690px;
  margin: 0;
  color: #5f574e;
}

.mx-faq {
  padding: 64px 0;
  background: #faf6ef;
  color: var(--ink);
}

.mx-faq .section-heading .eyebrow {
  color: var(--gold-dark);
}

.mx-faq .section-heading h2 {
  color: var(--ink);
}

.mx-faq .section-heading p:last-child {
  color: var(--muted-dark);
}

.mx-faq .faq-list {
  border-top-color: #d4cabb;
}

.mx-faq .faq-list details {
  border-bottom-color: #ddd3c6;
}

.mx-faq .faq-list summary {
  color: #19231f;
  font-size: 0.96rem;
}

.mx-faq .faq-list summary span {
  color: var(--gold-dark);
}

.mx-faq .faq-list details p {
  color: #5f574e;
}

.mx-more-gate {
  padding: 53px 0;
  background: var(--gold);
  color: #142019;
  text-align: center;
}

.mx-more-gate .eyebrow {
  color: #3d2c10;
}

.mx-more-gate h2 {
  max-width: 780px;
  margin: 0 auto 12px;
  color: #142019;
}

.mx-more-gate p {
  max-width: 700px;
  margin: 0 auto 22px;
  color: #352c1e;
}

.mx-more-gate .button {
  width: min(100%, 420px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
}

.mx-more-gate .button:hover {
  border-color: #233a30;
  background: #233a30;
}

/* Revestimiento coherente para el contenido largo conservado. */
.tiktok-page .problem-section,
.tiktok-page .bonus-section,
.tiktok-page .faq-section,
.tiktok-page .trust-section,
.tiktok-page .site-footer {
  background: var(--ink);
}

.tiktok-page .section-dark,
.tiktok-page .steps-section,
.tiktok-page .offers-section {
  background-color: var(--ink-soft);
}

/* Contraste explícito para impedir herencias ilegibles en esta sección. */
.tiktok-page .steps-section {
  color: var(--cream);
}

.tiktok-page .steps-section h2 {
  color: var(--cream);
}

.tiktok-page .steps-section .section-heading > p:last-child {
  color: #d0c9bd;
  opacity: 1;
}

.tiktok-page .steps-section .eyebrow {
  color: var(--gold-light);
}

.tiktok-page .steps-grid article {
  border-top-color: var(--gold);
  background: #fbf7ef;
  color: var(--ink);
}

.tiktok-page .steps-grid h3 {
  color: var(--ink);
}

.tiktok-page .steps-grid p {
  color: #5d554b;
}

.tiktok-page .section-light,
.tiktok-page #contenido-del-material,
.tiktok-page .guarantee-section {
  background: var(--paper);
}

.tiktok-page .guarantee-section {
  color: var(--ink);
}

.tiktok-page .guarantee-section .guarantee-card {
  border-color: rgba(133, 96, 36, 0.42);
  background: #fffaf2;
  box-shadow: 0 16px 38px rgba(15, 26, 23, 0.08);
}

.tiktok-page .guarantee-section h2 {
  color: var(--ink);
}

.tiktok-page .guarantee-section .guarantee-subheadline {
  color: #38483f !important;
}

.tiktok-page .guarantee-section .guarantee-card p:last-child {
  color: #5d554b;
}

.tiktok-page .eyebrow,
.tiktok-page .text-link-gold,
.tiktok-page .bonus-index,
.tiktok-page .tour-kicker,
.tiktok-page .offer-badge {
  color: var(--gold-light);
}

.tiktok-page .section-light .eyebrow,
.tiktok-page #contenido-del-material .eyebrow,
.tiktok-page .guarantee-section .eyebrow {
  color: var(--gold-dark);
}

.tiktok-page .benefit-number,
.tiktok-page .steps-grid article > span {
  border-color: var(--gold);
  color: var(--gold-light);
}

.tiktok-page .sample-arrow,
.tiktok-page .sample-dot.is-active {
  border-color: var(--gold);
  background-color: var(--gold);
  color: #142019;
}

.tiktok-page .offer-complete {
  border-color: var(--gold);
  background: #1d3028;
}

.tiktok-page .offer-price strong,
.tiktok-page .offer-card li::before,
.tiktok-page .price-highlight,
.tiktok-page .guarantee-number {
  color: var(--gold-light);
}

.tiktok-page .final-cta {
  background: var(--gold);
  color: #142019;
}

.tiktok-page .final-cta h2,
.tiktok-page .final-cta .eyebrow,
.tiktok-page .final-cta-inner > div > p:last-child {
  color: #142019;
}

.tiktok-page .final-cta .button-gold {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.tiktok-page .mobile-cta {
  background: var(--gold);
  color: #142019;
}

.tiktok-page .purchase-notice {
  border-color: rgba(231, 198, 127, 0.48);
  background: var(--ink-card);
}

.tiktok-page .preview-dialog {
  background: #07100c;
}

@media (max-width: 900px) {
  .human-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
    gap: 32px;
  }

  .human-hero-bottom {
    grid-template-columns: 1fr;
  }

  .human-first-offer {
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .tiktok-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .tiktok-page .container {
    width: min(680px, calc(100% - 30px));
  }

  .tiktok-page .announcement {
    font-size: 0.69rem;
  }

  .tiktok-page .announcement-inner {
    padding-block: 7px;
  }

  .human-hero {
    padding: 32px 0 26px;
  }

  .human-hero::before {
    background: radial-gradient(circle at 90% 12%, rgba(201, 154, 73, 0.12), transparent 20rem);
  }

  .human-hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .human-hero-copy {
    text-align: center;
  }

  .human-hero .eyebrow {
    margin-bottom: 11px;
  }

  .human-hero h1 {
    margin: 0 auto 15px;
    font-size: clamp(2rem, 9.9vw, 2.75rem);
    line-height: 1.02;
  }

  .human-hero-lead {
    margin: 0 auto 18px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-conversion-list {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    gap: 7px;
    font-size: 0.82rem;
    text-align: left;
  }

  .human-real-page {
    width: min(88vw, 390px);
  }

  .real-page-label {
    font-size: 0.68rem;
  }

  .human-real-page button {
    padding: 6px;
    border-radius: 11px;
    box-shadow: 9px 11px 0 rgba(201, 154, 73, 0.14), 0 15px 35px rgba(0, 0, 0, 0.28);
  }

  .human-real-page figcaption {
    margin-top: 14px;
    font-size: 0.71rem;
  }

  .human-hero-bottom {
    gap: 19px;
    margin-top: 0;
    padding-top: 21px;
  }

  .human-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
  }

  .human-facts strong,
  .human-facts span {
    min-height: 62px;
    padding: 0 7px;
  }

  .human-facts b {
    font-size: 1.43rem;
  }

  .human-first-offer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .human-first-offer p {
    text-align: center;
  }

  .human-first-offer .button {
    width: 100%;
    min-width: 0;
  }

  .human-offers {
    padding: 52px 0 38px;
  }

  .human-offers-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 29px;
    text-align: center;
  }

  .human-offers-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .human-offers-heading h2 {
    font-size: 2.18rem;
  }

  .human-choice-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .human-choice {
    padding: 31px 20px 24px;
  }

  .human-choice-complete {
    order: -1;
  }

  .human-choice-base {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
  }

  .human-choice h3 {
    font-size: 2rem;
  }

  .human-choice-price > strong,
  .human-choice-base .human-choice-price > strong {
    font-size: 3.1rem;
  }

  .human-choice .button {
    font-size: 0.72rem;
  }

  .human-trust-line {
    grid-template-columns: 1fr 1fr;
    font-size: 0.65rem;
  }

  .human-trust-line span {
    min-height: 58px;
    border-bottom: 1px solid var(--line-dark);
  }

  .human-trust-line span:nth-child(2) {
    border-right: 0;
  }

  .human-trust-line span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .mx-testimonials {
    padding: 49px 0 41px;
  }

  .mx-testimonials .section-heading {
    margin-bottom: 25px;
  }

  .mx-testimonials .section-heading h2 {
    font-size: 2.08rem;
  }

  .mx-testimonial-featured {
    grid-template-columns: none;
    grid-auto-columns: min(84vw, 350px);
    grid-auto-flow: column;
    overflow-x: auto;
    gap: 13px;
    margin-inline: -15px;
    padding: 3px 15px 18px;
    scroll-padding-inline: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mx-testimonial-featured::-webkit-scrollbar {
    display: none;
  }

  .mx-testimonial-featured .testimonial-card {
    scroll-snap-align: center;
  }

  .testimonial-permission {
    text-align: left;
  }

  .mx-guarantee {
    padding: 37px 0;
  }

  .mx-guarantee .guarantee-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    text-align: left;
  }

  .mx-guarantee .guarantee-number {
    width: 72px;
    height: 72px;
  }

  .mx-guarantee .guarantee-number strong {
    font-size: 1.95rem;
  }

  .mx-guarantee h2 {
    font-size: 1.45rem;
  }

  .mx-guarantee p:last-child {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .mx-faq {
    padding: 48px 0;
  }

  .mx-faq .faq-layout {
    gap: 23px;
  }

  .mx-faq .section-heading h2 {
    font-size: 2.1rem;
  }

  .mx-faq .faq-list summary {
    min-height: 60px;
    color: #17211d;
    font-size: 0.9rem;
  }

  .mx-faq .faq-list details p {
    color: #5a534a;
  }

  .mx-more-gate {
    padding: 43px 0;
  }

  .mx-more-gate h2 {
    font-size: 2rem;
  }

  .mx-more-gate .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .human-hero h1 {
    font-size: clamp(1.95rem, 9.3vw, 2.35rem);
  }

  .human-real-page {
    width: min(89vw, 370px);
  }

  .human-facts {
    font-size: 0.61rem;
  }

  .human-facts b {
    font-size: 1.31rem;
  }

  .human-choice .button {
    padding-inline: 9px;
    font-size: 0.67rem;
    letter-spacing: 0.025em;
  }
}

@media (max-width: 350px) {
  .tiktok-page .container {
    width: calc(100% - 24px);
  }

  .human-hero h1 {
    font-size: 1.83rem;
  }

  .human-facts strong,
  .human-facts span {
    padding-inline: 4px;
  }

  .human-facts b {
    font-size: 1.15rem;
  }

  .human-choice {
    padding-inline: 15px;
  }

  .human-choice .button {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tiktok-page * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
