.tx-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.tx-ba-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(26, 43, 86, 0.14);
  background: #ece8e2;
}

.tx-ba-card img {
  width: 100%;
  height: min(58vw, 520px);
  object-fit: contain;
  object-position: center center;
  display: block;
}

.tx-ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tx-ba-label--before {
  background: rgba(26, 43, 86, 0.88);
  color: #fff;
}

.tx-ba-label--after {
  background: #2f9e5d;
  color: #fff;
}

@media (max-width: 640px) {
  .tx-ba {
    grid-template-columns: 1fr;
  }

  .tx-ba-card img {
    height: 420px;
  }
}

.tx-breadcrumb {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.tx-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.tx-breadcrumb a {
  color: var(--navy);
  font-weight: 500;
}

.tx-breadcrumb a:hover {
  color: var(--purple);
}

.tx-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 6px;
  color: #9aa6bd;
}

.tx-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, #f4f1ff 0%, #f8fafc 42%, #eef3fb 100%);
  padding: 28px 0 36px;
}

.tx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.tx-hero-eyebrow {
  display: inline-flex;
  background: #f7efd4;
  color: var(--gold-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.tx-hero h1 {
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.tx-hero-lead {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 22px;
}

.tx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.tx-btn--primary {
  background: var(--navy);
  color: #fff;
}

.tx-btn--primary:hover {
  background: var(--navy-deep);
}

.tx-btn--outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #c8d3ea;
}

.tx-btn--wa {
  color: #128c3e;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.tx-hero-trust {
  margin-top: 18px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

.tx-hero-photo {
  justify-self: center;
  width: min(100%, 380px);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #eef2f8, #e4eaf5);
  box-shadow: 0 18px 40px rgba(26, 43, 86, 0.12);
}

.tx-hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top center;
}

.tx-section {
  padding: 48px 0;
}

.tx-section h2 {
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  margin-bottom: 14px;
}

.tx-section h3 {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tx-copy {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 78ch;
}

.tx-copy p + p {
  margin-top: 12px;
}

.tx-copy a {
  color: var(--purple);
  font-weight: 600;
}

.tx-copy a:hover {
  text-decoration: underline;
}

.tx-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.tx-split img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 340px;
  box-shadow: 0 12px 28px rgba(26, 43, 86, 0.1);
}

.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.tx-card {
  background: #fff;
  border: 1px solid rgba(26, 43, 86, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 8px 22px rgba(26, 43, 86, 0.05);
}

.tx-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.tx-card p,
.tx-card li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.tx-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.tx-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.tx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.tx-alert {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid #ead7a8;
}

.tx-alert--info {
  background: #f3f0ff;
  border-color: #d9d3f5;
}

.tx-alert strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.tx-alert p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.tx-care {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.tx-care article {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border-top: 3px solid var(--purple);
  box-shadow: 0 8px 20px rgba(26, 43, 86, 0.05);
}

.tx-care h3 {
  font-size: 15px;
}

.tx-bg {
  background: #fff;
}

.tx-bg-soft {
  background: #f3f0fa;
}

.tx-clinic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: start;
}

.tx-clinic-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(26, 43, 86, 0.08);
}

.tx-clinic-card h3 {
  margin-bottom: 10px;
}

.tx-clinic-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.tx-clinic-card a {
  color: var(--navy);
  font-weight: 700;
}

.tx-related {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.tx-related a {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid rgba(26, 43, 86, 0.06);
  min-height: 64px;
}

.tx-related a:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.tx-faq-wrap {
  max-width: 860px;
}

.tx-cta {
  background: linear-gradient(120deg, #132a72, #5c4db1);
  color: #fff;
  padding: 48px 0;
}

.tx-cta h2 {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 10px;
}

.tx-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
  margin-bottom: 18px;
  line-height: 1.7;
}

.tx-cta .tx-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.tx-cta .tx-btn--wa {
  color: #b8f0c8;
}

.tx-review {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 1023px) {
  .tx-hero-grid,
  .tx-split,
  .tx-clinic {
    grid-template-columns: 1fr;
  }

  .tx-hero-photo {
    order: -1;
    max-width: 280px;
  }

  .tx-grid,
  .tx-care {
    grid-template-columns: 1fr 1fr;
  }

  .tx-related {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .tx-section {
    padding: 36px 0;
  }

  .tx-grid,
  .tx-care {
    grid-template-columns: 1fr;
  }

  #types .tx-grid,
  #types .tx-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-hero-actions {
    flex-direction: column;
  }

  .tx-hero-actions .tx-btn {
    width: 100%;
  }

  .tx-related {
    grid-template-columns: 1fr;
  }
}

.tx-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(26, 43, 86, 0.12);
  background: #e8edf5;
}

.tx-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tx-media:hover img {
  transform: scale(1.05);
}

.tx-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}

.tx-media--wide {
  min-height: 180px;
}

.tx-grid--2 {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

#types .tx-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tx-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.tx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(26, 43, 86, 0.12);
}

.tx-card--photo {
  overflow: hidden;
  padding: 0;
}

.tx-card--photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.tx-card--photo:hover img {
  transform: scale(1.06);
}

.tx-card--photo > div {
  padding: 16px;
}

.tx-clinic-card img {
  width: calc(100% + 44px);
  margin: -22px -22px 16px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.tx-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(26, 43, 86, 0.16);
}

.tx-cta {
  position: relative;
  overflow: hidden;
}

.tx-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  pointer-events: none;
}

.tx-cta-inner {
  position: relative;
  z-index: 1;
}

.tx-hero-copy .tx-hero-eyebrow,
.tx-hero-copy h1,
.tx-hero-copy .tx-hero-lead,
.tx-hero-copy .tx-hero-actions,
.tx-hero-copy .tx-btn--wa,
.tx-hero-copy .tx-hero-trust {
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tx-hero-copy h1 { animation-delay: 0.08s; }
.tx-hero-copy .tx-hero-lead { animation-delay: 0.16s; }
.tx-hero-copy .tx-hero-actions { animation-delay: 0.24s; }
.tx-hero-copy .tx-btn--wa { animation-delay: 0.3s; }
.tx-hero-copy .tx-hero-trust { animation-delay: 0.36s; }

.tx-hero-photo {
  animation: hero-in-right 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.tx-care article {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tx-care article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26, 43, 86, 0.1);
}

.tx-related a {
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.tx-related a:hover {
  transform: translateY(-3px);
}

@media (max-width: 1023px) {
  .tx-section-head,
  .tx-grid--2 {
    grid-template-columns: 1fr;
  }

  #types .tx-grid,
  #types .tx-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-hero-photo {
    max-width: 100%;
  }

  .tx-hero-photo img {
    max-height: 280px;
  }
}

.tx-symptoms-nav {
  display: none;
}

@media (max-width: 768px) {
  .tx-symptoms-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-top: 18px;
    padding: 4px 12px 10px 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tx-symptoms-row::-webkit-scrollbar {
    display: none;
  }

  .tx-symptoms-row > .tx-card {
    flex: 0 0 82%;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .tx-symptoms-row > .tx-card:hover {
    transform: none;
  }

  .tx-symptoms-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .tx-symptoms-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(26, 43, 86, 0.12);
    background: #fff;
    color: #1a2b56;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(26, 43, 86, 0.08);
  }

  .tx-symptoms-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .tx-symptoms-nav-btn:hover {
    background: #5c4db1;
    border-color: #5c4db1;
    color: #fff;
  }

  .tx-symptoms-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .tx-symptoms-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c8cde0;
    cursor: pointer;
  }

  .tx-symptoms-dot.is-active {
    width: 20px;
    background: #5c4db1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tx-hero-copy .tx-hero-eyebrow,
  .tx-hero-copy h1,
  .tx-hero-copy .tx-hero-lead,
  .tx-hero-copy .tx-hero-actions,
  .tx-hero-copy .tx-btn--wa,
  .tx-hero-copy .tx-hero-trust,
  .tx-hero-photo,
  .tx-media img,
  .tx-card,
  .tx-btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
