/* Treatment landing page v2 */
.tp-redesign {
  --tp-primary: #1ba8e8;
  --tp-dark: #0b1f4d;
  --tp-bg: #f8fbff;
  --tp-accent: #eaf7fd;
  --tp-border: #dceaf5;
  --tp-radius: 24px;
  background: var(--tp-bg);
}

.tp-redesign .premium-section {
  padding: clamp(64px, 7vw, 94px) 0;
}

.tp-redesign .premium-soft-band {
  background: var(--tp-bg);
}

.tp-redesign .premium-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.tp-redesign .tp-centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.tp-redesign .premium-section-heading h2,
.tp-redesign .premium-booking-grid h2 {
  color: var(--tp-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
}

.tp-redesign .premium-kicker {
  color: var(--tp-primary);
}

.tp-hero {
  padding: 190px 0 104px;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 86% 16%, rgba(27, 168, 232, 0.18), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f8fbff 52%, #eaf7fd 100%);
}

.tp-redesign .premium-treatment-hero-grid {
  grid-template-columns: 48fr 52fr;
  gap: 80px;
}

/* Hero container max-width for treatment pages */
.tp-redesign .premium-treatment-hero .container,
.tp-hero .container {
  max-width: 1320px;
  padding-left: 48px;
  padding-right: 48px;
}

.tp-redesign .premium-treatment-hero-grid > *,
.tp-redesign .premium-booking-grid > * {
  min-width: 0;
}

.tp-redesign .premium-treatment-hero h1 {
  max-width: 700px;
  margin: 10px 0 20px;
  color: var(--tp-dark);
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.tp-redesign .premium-treatment-hero h2 {
  max-width: 650px;
  color: var(--tp-primary);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 20px;
}

.tp-redesign .premium-treatment-hero p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.tp-redesign .premium-trust-row {
  margin-bottom: 28px;
}

.tp-redesign .premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

/* ✓ checkmark prefix on all trust chips */
.tp-redesign .premium-trust-row span::before {
  content: '✓';
  margin-right: 7px;
  color: #10b981;
  font-weight: 900;
}

.tp-redesign .premium-hero-actions .btn {
  min-width: 160px;
  min-height: 50px;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  gap: 9px;
}
.tp-redesign .premium-hero-actions iconify-icon { flex: 0 0 auto; font-size: 1.2rem; }

/* Video card — premium floating appearance with grid overflow */
.tp-video-player,
.tp-video-poster,
.tp-hero-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
}

.tp-hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #07162f;
}

.tp-video-player {
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 100px rgba(11, 31, 77, 0.18), 0 8px 30px rgba(27, 168, 232, 0.1);
}

/* Organic glow accent behind media card */
.premium-hero-media {
  position: relative;
  width: 100%;
  max-width: 720px;
  justify-self: end;
}
.premium-hero-media::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(27, 168, 232, 0.16) 0%, rgba(20, 198, 198, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(55px);
}
.premium-hero-media .tp-video-player {
  position: relative;
  z-index: 1;
}

@media (min-width: 1600px) {
  .tp-redesign .premium-treatment-hero .container,
  .tp-hero .container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.tp-video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 77, 0.05), rgba(11, 31, 77, 0.78));
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.tp-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--tp-primary);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.3);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.9);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.tp-play-button[hidden] { display: none; }
.tp-play-button iconify-icon { font-size: 2rem; margin-left: 4px; }
.tp-video-player.is-playing .tp-video-shade,
.tp-video-player.is-playing .tp-video-caption { opacity: 0; }

.tp-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 24px 60px rgba(11, 31, 77, 0.35);
}

.tp-play-button svg { margin-left: 4px; }

.tp-video-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: grid;
  color: #fff;
  pointer-events: none;
}

.tp-video-caption span,
.tp-video-caption small {
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-video-caption strong { font-size: 1.25rem; }

.tp-image-placeholder,
.tp-result-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100%;
  padding: 24px;
  color: var(--tp-dark);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(27, 168, 232, 0.16) 0 2px, transparent 3px) 0 0 / 24px 24px,
    var(--tp-accent);
}

.tp-image-placeholder small { color: #64748b; }

.tp-placeholder-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tp-primary);
  border-radius: 18px;
  font-size: 2rem;
  line-height: 1;
  transform: rotate(45deg);
}

.tp-knowledge { background: #fff; }

.tp-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.tp-knowledge-card,
.tp-feature-card,
.tp-journey-card {
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(11, 31, 77, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tp-knowledge-card:hover,
.tp-feature-card:hover,
.tp-journey-card:hover {
  border-color: rgba(27, 168, 232, 0.5);
  box-shadow: 0 24px 58px rgba(11, 31, 77, 0.11);
  transform: translateY(-5px);
}

.tp-knowledge-card { padding: 30px; }

.tp-card-icon,
.tp-feature-icon,
.tp-step-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: var(--tp-primary);
  background: var(--tp-accent);
  border-radius: 16px;
  font-weight: 900;
}

.tp-knowledge-card h3,
.tp-feature-card h3,
.tp-journey-card h3 {
  margin-bottom: 9px;
  color: var(--tp-dark);
  font-size: 1.18rem;
}

.tp-knowledge-card p,
.tp-feature-card p,
.tp-journey-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.tp-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tp-journey-track::before {
  content: '';
  position: absolute;
  top: 56px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--tp-primary), #67d5e8);
}

.tp-journey-card {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 24px 20px;
}

.tp-step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #bfd6e8;
  font-size: 1.7rem;
  font-weight: 900;
}

.tp-step-icon {
  color: #fff;
  background: var(--tp-dark);
  border: 6px solid #fff;
  box-shadow: 0 0 0 2px var(--tp-border);
}

.tp-results { background: #fff; }

.tp-featured-result {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--tp-border);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(11, 31, 77, 0.08);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.tp-featured-result:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(11, 31, 77, 0.13);
}

.tp-featured-result .ba-slider {
  height: clamp(360px, 50vw, 590px);
  background: var(--tp-accent);
}

.tp-featured-result .ba-before,
.tp-featured-result .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tp-featured-result .ba-before { z-index: 1; }

.tp-featured-result .ba-after {
  z-index: 2;
  width: 100%;
  clip-path: inset(0 50% 0 0);
  border-right: none;
}

.tp-featured-result .ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.tp-featured-result .tp-result-placeholder { min-width: min(1080px, calc(100vw - 40px)); }

.tp-featured-result .ba-slider::before,
.tp-featured-result .ba-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 42px;
  pointer-events: none;
}

.tp-featured-result .ba-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 31, 77, 0.22), transparent);
}

.tp-featured-result .ba-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 31, 77, 0.22), transparent);
}

.tp-featured-result .ba-label {
  top: 10px;
  bottom: auto;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--tp-dark);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(11, 31, 77, 0.08);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}

.tp-featured-result .ba-label-before { left: 10px; right: auto; }
.tp-featured-result .ba-label-after { right: 10px; left: auto; }

.tp-featured-result .ba-handle {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  transform: translateX(-50%);
  margin-left: 0;
  z-index: 30;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-featured-result .ba-handle-line {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  transition: width 0.2s ease;
}

.tp-featured-result .ba-slider:hover .ba-handle-line {
  width: 2px;
}

.tp-featured-result .ba-handle-button {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1f4d;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease;
}

.tp-featured-result .ba-handle:hover .ba-handle-button {
  transform: scale(1.1);
  border-color: #5BBEF0;
}

.tp-featured-result .ba-handle-button svg {
  width: 14px;
  height: 14px;
  stroke: #5BBEF0;
}

.tp-result-details {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  gap: 1px;
  background: var(--tp-border);
}

.tp-result-details div {
  display: grid;
  gap: 6px;
  padding: 24px 26px;
  background: #fff;
}

.tp-result-details span {
  color: var(--tp-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-result-details strong { color: var(--tp-dark); }

.tp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tp-feature-card {
  min-height: 230px;
  padding: 26px;
}

.tp-feature-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--tp-primary), #64d6e9);
}

.tp-redesign .premium-faq-accordion .accordion-item {
  border-color: var(--tp-border);
  border-radius: 18px;
}

.tp-redesign .premium-faq-accordion .accordion-header {
  min-height: 72px;
  padding: 20px 24px;
}

.tp-redesign .premium-faq-accordion .accordion-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--tp-primary);
  background: var(--tp-accent);
  border-radius: 50%;
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.tp-redesign .accordion-item.active .accordion-icon { transform: rotate(45deg); }

.tp-booking {
  background: linear-gradient(135deg, #eef9ff, #f8fbff);
}

.tp-redesign .premium-booking-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 7vw, 90px);
}

.tp-booking-benefits {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.tp-booking-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--tp-dark);
  font-weight: 700;
}

.tp-booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
}

.tp-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tp-whatsapp-btn {
  color: #fff;
  background: #16a34a;
}

.tp-redesign .premium-appointment-form {
  border-radius: var(--tp-radius);
  border-color: var(--tp-border);
  box-shadow: 0 26px 64px rgba(11, 31, 77, 0.1);
}

.tp-redesign .premium-appointment-form input,
.tp-redesign .premium-appointment-form select,
.tp-redesign .premium-appointment-form textarea {
  border-color: var(--tp-border);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 1100px) {
  .tp-redesign .premium-treatment-hero-grid,
  .tp-redesign .premium-booking-grid {
    grid-template-columns: 1fr;
  }

  .tp-redesign .premium-hero-media { max-width: 780px; }
  .tp-redesign .premium-treatment-hero .container,
  .tp-hero .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .tp-journey-track { grid-template-columns: repeat(3, 1fr); }
  .tp-journey-track::before { display: none; }
}

@media (max-width: 760px) {
  .tp-hero { padding: 112px 0 48px; min-height: auto; }
  .tp-redesign .premium-treatment-hero .container,
  .tp-hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .premium-hero-media { transform: none; }
  .premium-hero-media::before { display: none; }
  .tp-redesign .premium-treatment-hero h1 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .tp-redesign .premium-treatment-hero h2 { font-size: 1.18rem; }
  .tp-redesign .premium-trust-row { display: grid; grid-template-columns: 1fr; }
  .tp-redesign .premium-trust-row span { min-height: 44px; padding: 8px 10px; font-size: 0.78rem; }
  .tp-redesign .premium-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tp-redesign .premium-hero-actions .btn { width: 100%; }
  .tp-video-player { padding: 5px; }
  .tp-play-button { width: 72px; height: 72px; }
  .tp-video-caption { right: 16px; bottom: 15px; left: 16px; }
  .tp-video-caption strong { font-size: 1rem; }
  .tp-knowledge-grid,
  .tp-feature-grid,
  .tp-journey-track,
  .tp-result-details {
    grid-template-columns: 1fr;
  }
  .tp-knowledge-card,
  .tp-feature-card,
  .tp-journey-card { min-height: auto; padding: 22px; }
  .tp-featured-result .ba-slider { height: 360px; }
  .tp-featured-result .ba-slider::before,
  .tp-featured-result .ba-slider::after { width: 36px; }
  .tp-featured-result .ba-label { min-height: 19px; padding: 2px 7px; font-size: 8px; }
  .tp-featured-result .ba-handle { width: 24px; }
  .tp-featured-result .ba-handle-button { width: 24px; height: 24px; }
  .tp-featured-result .ba-handle-button svg { width: 10px; height: 10px; }
  .tp-result-details { gap: 0; }
  .tp-result-details div { padding: 18px 20px; border-bottom: 1px solid var(--tp-border); }
  .tp-redesign .premium-appointment-form { grid-template-columns: 1fr; padding: 20px; }
  .tp-redesign .premium-appointment-form label,
  .tp-redesign .premium-form-wide { grid-column: 1; }
  .tp-direct-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .tp-direct-actions .btn { min-width: 0; padding-inline: 12px; }
}

/* ==========================================================================
   PREMIUM THIN AND TRANSPARENT COMPARISON SLIDERS (OVERRIDE ALL)
   ========================================================================== */

/* 1. Divider Line styling */
/* Homepage sliders */
.ba-premium-card .ba-handle-line {
  width: 2px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15) !important;
}

/* Results and components general sliders where .ba-handle is the line */
.ba-slider .ba-handle {
  width: 2px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15) !important;
}
.ba-slider .ba-handle-line {
  background: transparent !important;
  box-shadow: none !important;
}

/* Treatment page result card sliders */
.premium-result-card .ba-handle-line {
  width: 2px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15) !important;
}

/* Treatment redesigned featured results */
.tp-featured-result .ba-handle-line {
  width: 2px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15) !important;
}

/* Also remove double divider border on treatment result cards */
.premium-result-card .ba-after,
.tp-featured-result .ba-after,
.ba-slider-after {
  border-right: none !important;
}

/* 2. Drag Handle Button/Circle styling */
/* Homepage slider handles */
.ba-premium-card .ba-handle-circle {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12) !important;
  color: #0b1f4d !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}

.ba-premium-card:hover .ba-handle-circle {
  transform: scale(1.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 16px rgba(11, 31, 77, 0.18) !important;
}

.ba-premium-card .ba-handle-circle svg {
  width: 12px !important;
  height: 12px !important;
}

/* Results page slider handles */
.ba-slider .ba-handle-button {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12) !important;
  color: #1ba8e8 !important;
  font-size: 0.95rem !important;
  line-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ba-slider .ba-handle:hover .ba-handle-button,
.ba-slider:hover .ba-handle-button {
  transform: translate(-50%, -50%) scale(1.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 16px rgba(11, 31, 77, 0.18) !important;
}

/* Treatment page result card handles */
.premium-result-card .ba-handle-button {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12) !important;
  color: #1ba8e8 !important;
  font-size: 0.95rem !important;
  line-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.premium-result-card .ba-handle:hover .ba-handle-button,
.premium-result-card .ba-slider:hover .ba-handle-button {
  transform: translate(-50%, -50%) scale(1.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 16px rgba(11, 31, 77, 0.18) !important;
}

/* Treatment redesigned page handles */
.tp-featured-result .ba-handle-button {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12) !important;
  color: #0b1f4d !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tp-featured-result .ba-handle:hover .ba-handle-button {
  transform: scale(1.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 16px rgba(11, 31, 77, 0.18) !important;
}

/* 3. Mobile adjustments */
@media (max-width: 768px) {
  .ba-premium-card .ba-handle-circle,
  .ba-slider .ba-handle-button,
  .premium-result-card .ba-handle-button,
  .tp-featured-result .ba-handle-button {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
    line-height: 26px !important;
  }
  .ba-premium-card .ba-handle-circle svg {
    width: 9px !important;
    height: 9px !important;
  }
}

/* Reference-inspired treatment hero: Manohar Dental color system */
.tp-redesign .tp-hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 110px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(27, 168, 232, 0.24), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(20, 198, 198, 0.13), transparent 32%),
    linear-gradient(120deg, #102b61 0%, #0b1f4d 48%, #071733 100%);
}

.tp-redesign .tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 78%);
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.tp-redesign .tp-hero .container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 72px;
  padding-left: 72px;
}

.tp-redesign .premium-treatment-hero-grid {
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(68px, 6vw, 84px);
  align-items: center;
  padding-top: 0;
  padding-bottom: 20px;
}

.tp-redesign .premium-treatment-hero-copy {
  width: 100%;
  max-width: 520px;
}

.tp-redesign .premium-treatment-hero .premium-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  color: #57c7ff;
  background: rgba(27, 168, 232, 0.16);
  border: 1px solid rgba(87, 199, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tp-redesign .premium-treatment-hero h1 {
  max-width: 520px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.tp-redesign .premium-treatment-hero h2 {
  max-width: 520px;
  margin: 0 0 20px;
  color: #d9e8fb;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.tp-redesign .premium-treatment-hero p {
  max-width: 500px;
  margin: 0;
  color: #aebfda;
  font-size: 1.1rem;
  line-height: 1.8;
}

.tp-redesign .premium-treatment-hero .premium-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.tp-redesign .premium-treatment-hero .premium-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 17px;
  color: #e7f1ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(190, 218, 255, 0.24);
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.tp-redesign .premium-treatment-hero .premium-trust-row span::before {
  content: '\2713';
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  color: #57c7ff;
  border: 1px solid rgba(87, 199, 255, 0.55);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.tp-redesign .premium-treatment-hero .premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.tp-redesign .premium-treatment-hero .premium-hero-actions .btn {
  min-width: 0;
  min-height: 56px;
  padding: 0 28px;
  gap: 9px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.tp-redesign .premium-treatment-hero .premium-hero-actions .btn-primary {
  color: #0b1f4d;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.tp-redesign .premium-treatment-hero .premium-hero-actions .btn-primary:hover {
  color: #ffffff;
  background: #1ba8e8;
  border-color: #1ba8e8;
}

.tp-redesign .premium-treatment-hero .premium-hero-actions .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.72);
}

.tp-redesign .premium-treatment-hero .premium-hero-actions .btn-outline:hover {
  color: #0b1f4d;
  background: #ffffff;
  border-color: #ffffff;
}

.tp-redesign .premium-treatment-hero .premium-hero-media {
  width: 100%;
  max-width: 540px;
  margin-top: 0;
  justify-self: end;
}

.tp-redesign .premium-treatment-hero .premium-hero-media::before {
  top: -72px;
  right: -64px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27, 168, 232, 0.3), rgba(20, 198, 198, 0.12) 40%, transparent 70%);
}

.tp-redesign .premium-treatment-hero .tp-video-player {
  padding: 10px;
  overflow: hidden;
  background: rgba(4, 15, 39, 0.62);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(11, 31, 77, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tp-redesign .premium-treatment-hero .tp-hero-video {
  border-radius: 20px;
}

.tp-redesign .premium-treatment-hero .tp-play-button {
  width: 82px;
  height: 82px;
}

@media (min-width: 1600px) {
  .tp-redesign .tp-hero .container {
    max-width: 1240px;
    padding-right: 88px;
    padding-left: 88px;
  }
}

@media (max-width: 1100px) {
  .tp-redesign .tp-hero {
    min-height: auto;
    padding: 96px 0;
  }

  .tp-redesign .premium-treatment-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .tp-redesign .premium-treatment-hero-copy {
    max-width: 680px;
  }

  .tp-redesign .premium-treatment-hero .premium-hero-media {
    max-width: 560px;
    margin-top: 0;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .tp-redesign .tp-hero {
    padding: 112px 0 50px;
  }

  .tp-redesign .tp-hero .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tp-redesign .premium-treatment-hero-grid {
    gap: 34px;
    padding-top: 0;
  }

  .tp-redesign .premium-treatment-hero .premium-kicker {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.68rem;
    margin-bottom: 16px;
  }

  .tp-redesign .premium-treatment-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .tp-redesign .premium-treatment-hero h2 {
    margin-bottom: 16px;
    font-size: 1.12rem;
    line-height: 1.4;
  }

  .tp-redesign .premium-treatment-hero p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .tp-redesign .premium-treatment-hero .premium-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 20px;
    margin-bottom: 28px;
  }

  .tp-redesign .premium-treatment-hero .premium-trust-row span {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .tp-redesign .premium-treatment-hero .premium-trust-row span::before {
    width: 19px;
    height: 19px;
    margin-right: 6px;
  }

  .tp-redesign .premium-treatment-hero .premium-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .tp-redesign .premium-treatment-hero .premium-hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .tp-redesign .premium-treatment-hero .tp-video-player {
    padding: 7px;
    border-radius: 22px;
  }

  .tp-redesign .premium-treatment-hero .tp-hero-video {
    border-radius: 16px;
  }
}

/* Treatment-specific patient education guide */
.tp-redesign .tp-patient-guide {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(27, 168, 232, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.tp-redesign .tp-guide-heading {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
}

.tp-redesign .tp-guide-heading h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.tp-redesign .tp-guide-heading p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.tp-redesign .tp-patient-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tp-redesign .tp-patient-guide-card {
  position: relative;
  min-width: 0;
  padding: clamp(25px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(11, 31, 77, 0.07);
  transition: transform 200ms ease, border-color 200ms ease;
}

.tp-redesign .tp-patient-guide-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at top right, rgba(27, 168, 232, 0.1), transparent 70%);
  pointer-events: none;
}

.tp-redesign .tp-patient-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 168, 232, 0.28);
}

.tp-redesign .tp-guide-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.tp-redesign .tp-guide-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: #159ed9;
  background: #eaf7fd;
}

.tp-redesign .tp-guide-icon iconify-icon {
  font-size: 1.65rem;
}

.tp-redesign .tp-guide-card-head small {
  display: block;
  margin-bottom: 3px;
  color: #1ba8e8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-redesign .tp-guide-card-head h3 {
  margin: 0;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tp-redesign .tp-guide-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-redesign .tp-guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #52637c;
  font-size: 0.94rem;
  line-height: 1.45;
}

.tp-redesign .tp-guide-list iconify-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #1ba8e8;
  font-size: 1.05rem;
}

.tp-redesign .tp-guide-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.tp-redesign .tp-guide-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: #314666;
}

.tp-redesign .tp-guide-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  bottom: -14px;
  left: 17px;
  width: 1px;
  background: rgba(27, 168, 232, 0.25);
}

.tp-redesign .tp-guide-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #087fb8;
  background: #e9f7fd;
  border: 1px solid rgba(27, 168, 232, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
}

.tp-redesign .tp-guide-steps strong {
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1.4;
}

.tp-redesign .tp-guide-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
}

.tp-redesign .tp-guide-timeline > div {
  display: grid;
  grid-template-columns: minmax(92px, 0.32fr) minmax(0, 1fr);
  gap: 15px;
  padding: 12px 14px;
  border-radius: 13px;
  background: #f5f9fc;
}

.tp-redesign .tp-guide-timeline dt {
  color: #0b1f4d;
  font-size: 0.79rem;
  font-weight: 800;
}

.tp-redesign .tp-guide-timeline dd {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.tp-redesign .tp-guide-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(27, 168, 232, 0.18);
  border-radius: 18px;
  background: #edf8fd;
}

.tp-redesign .tp-guide-contact > iconify-icon {
  color: #159ed9;
  font-size: 1.75rem;
}

.tp-redesign .tp-guide-contact strong {
  display: block;
  margin-bottom: 3px;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
}

.tp-redesign .tp-guide-contact p {
  margin: 0;
  color: #607089;
  font-size: 0.84rem;
  line-height: 1.5;
}

.tp-redesign .tp-guide-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: #ffffff;
  background: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.tp-redesign .tp-guide-contact a:hover {
  background: #159ed9;
}

@media (max-width: 900px) {
  .tp-redesign .tp-patient-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tp-redesign .tp-guide-contact {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tp-redesign .tp-guide-contact a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .tp-redesign .tp-guide-heading {
    margin-bottom: 32px;
  }

  .tp-redesign .tp-patient-guide-grid {
    grid-template-columns: 1fr;
  }

  .tp-redesign .tp-patient-guide-card {
    padding: 22px 19px;
    border-radius: 19px;
  }

  .tp-redesign .tp-guide-card-head {
    margin-bottom: 20px;
  }

  .tp-redesign .tp-guide-timeline > div {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .tp-redesign .tp-guide-contact {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 17px;
  }

  .tp-redesign .tp-guide-contact a {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tp-redesign .tp-patient-guide-card {
    transition: none;
  }
}

/* Editorial treatment UX: breadcrumb, discovery, suitability, and journey */
.tp-redesign .tp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #81d5fb;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.tp-redesign .tp-breadcrumb a {
  color: #81d5fb;
  text-decoration: none;
  transition: color 160ms ease;
}

.tp-redesign .tp-breadcrumb a:hover {
  color: #ffffff;
}

.tp-redesign .tp-breadcrumb span[aria-current='page'] {
  color: #ffffff;
}

.tp-redesign .premium-treatment-hero .premium-hero-actions {
  margin-top: 28px;
}

.tp-redesign .tp-treatment-nav {
  position: relative;
  z-index: 4;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
}

.tp-redesign .tp-treatment-nav .container,
.tp-redesign .tp-editorial-guide .container {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.tp-redesign .tp-treatment-nav-label {
  display: block;
  margin-bottom: 13px;
  color: #62738d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tp-redesign .tp-treatment-chip-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 1px 1px 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 168, 232, 0.28) transparent;
  -webkit-overflow-scrolling: touch;
}

.tp-redesign .tp-treatment-chip-row::-webkit-scrollbar {
  height: 3px;
}

.tp-redesign .tp-treatment-chip-row::-webkit-scrollbar-track {
  background: transparent;
}

.tp-redesign .tp-treatment-chip-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(27, 168, 232, 0.28);
}

.tp-redesign .tp-treatment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 999px;
  color: #314665;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.tp-redesign .tp-treatment-chip:hover {
  transform: translateY(-1px);
  color: #087fb8;
  border-color: rgba(27, 168, 232, 0.36);
}

.tp-redesign .tp-treatment-chip.active {
  color: #ffffff;
  border-color: #0b1f4d;
  background: #0b1f4d;
  box-shadow: 0 8px 18px rgba(11, 31, 77, 0.14);
}

.tp-redesign .tp-editorial-guide {
  padding: 80px 0;
  background: #f8fbfd;
}

.tp-redesign .tp-editorial-guide .container {
  max-width: 1100px;
}

.tp-redesign .tp-editorial-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.tp-redesign .tp-editorial-heading .premium-kicker {
  margin-bottom: 13px;
}

.tp-redesign .tp-editorial-heading h2 {
  margin: 0 0 13px;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.tp-redesign .tp-editorial-heading p {
  max-width: 580px;
  margin: 0;
  color: #66768c;
  font-size: 1rem;
  line-height: 1.7;
}

.tp-redesign .tp-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tp-redesign .tp-fit-panel {
  min-width: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(11, 31, 77, 0.06);
}

.tp-redesign .tp-fit-panel-expect {
  background: linear-gradient(145deg, #0f2b61 0%, #0b1f4d 100%);
  border-color: #0b1f4d;
  box-shadow: 0 22px 50px rgba(11, 31, 77, 0.15);
}

.tp-redesign .tp-fit-label {
  display: block;
  margin-bottom: 24px;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tp-redesign .tp-fit-panel-expect .tp-fit-label {
  color: #ffffff;
}

.tp-redesign .tp-fit-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-redesign .tp-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #52647e;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tp-redesign .tp-fit-list iconify-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #1ba8e8;
  font-size: 1.05rem;
}

.tp-redesign .tp-fit-panel-expect .tp-fit-list li {
  color: #dce9f8;
}

.tp-redesign .tp-fit-panel-expect .tp-fit-list iconify-icon {
  color: #65d2ff;
}

.tp-redesign .tp-editorial-journey {
  margin-top: 70px;
  padding-top: 52px;
  border-top: 1px solid rgba(11, 31, 77, 0.1);
}

.tp-redesign .tp-journey-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.tp-redesign .tp-journey-heading span {
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tp-redesign .tp-journey-heading p {
  margin: 0;
  color: #78879a;
  font-size: 0.86rem;
}

.tp-redesign .tp-horizontal-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-redesign .tp-horizontal-timeline li {
  position: relative;
  min-width: 0;
  padding: 0 20px 0 0;
}

.tp-redesign .tp-horizontal-timeline li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  right: 0;
  left: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 168, 232, 0.55), rgba(27, 168, 232, 0.14));
}

.tp-redesign .tp-horizontal-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 17px;
  border: 1px solid rgba(27, 168, 232, 0.25);
  border-radius: 50%;
  color: #087fb8;
  background: #eaf7fd;
  font-size: 0.67rem;
  font-weight: 800;
}

.tp-redesign .tp-horizontal-timeline strong {
  display: block;
  max-width: 165px;
  color: #334864;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .tp-redesign .tp-treatment-nav .container,
  .tp-redesign .tp-editorial-guide .container {
    padding-right: 28px;
    padding-left: 28px;
  }

  .tp-redesign .tp-horizontal-timeline strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 700px) {
  .tp-redesign .tp-breadcrumb {
    margin-bottom: 16px;
    font-size: 0.62rem;
  }

  .tp-redesign .premium-treatment-hero .premium-hero-actions {
    margin-top: 22px;
  }

  .tp-redesign .tp-treatment-nav {
    padding: 19px 0 20px;
  }

  .tp-redesign .tp-treatment-nav .container,
  .tp-redesign .tp-editorial-guide .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tp-redesign .tp-treatment-chip-row {
    margin-right: -20px;
    padding-right: 20px;
  }

  .tp-redesign .tp-editorial-guide {
    padding: 64px 0;
  }

  .tp-redesign .tp-editorial-heading {
    margin-bottom: 28px;
  }

  .tp-redesign .tp-fit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tp-redesign .tp-fit-panel {
    padding: 26px 22px;
    border-radius: 19px;
  }

  .tp-redesign .tp-editorial-journey {
    margin-top: 52px;
    padding-top: 40px;
  }

  .tp-redesign .tp-journey-heading {
    display: block;
    margin-bottom: 28px;
  }

  .tp-redesign .tp-journey-heading p {
    margin-top: 7px;
  }

  .tp-redesign .tp-horizontal-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tp-redesign .tp-horizontal-timeline li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    min-height: 64px;
    padding: 0 0 15px;
  }

  .tp-redesign .tp-horizontal-timeline li:not(:last-child)::after {
    top: 34px;
    bottom: 0;
    left: 17px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(27, 168, 232, 0.55), rgba(27, 168, 232, 0.14));
  }

  .tp-redesign .tp-horizontal-timeline span {
    margin: 0;
  }

  .tp-redesign .tp-horizontal-timeline strong {
    max-width: none;
    padding-top: 7px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tp-redesign .tp-treatment-chip,
  .tp-redesign .tp-breadcrumb a {
    transition: none;
  }
}

/* ==========================================================================
   TREATMENT PAGE REDESIGN - BREADCRUMBS, CHIPS, GUIDE & TIMELINE
   ========================================================================== */

/* Spacing and Padding Overrides */
.tp-redesign .premium-section {
  padding: 80px 0 !important;
}

.tp-redesign .container {
  max-width: 1280px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.tp-redesign .premium-section-heading,
.tp-redesign .tp-centered-heading {
  max-width: 1100px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

/* Breadcrumbs Styling */
.tp-breadcrumbs {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tp-breadcrumbs a {
  color: #1ba8e8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tp-breadcrumbs a:hover {
  color: #0b1f4d;
}

.tp-breadcrumbs span {
  color: #64748b;
}

/* Explore Other Treatments Pill Navigation Chips */
.tp-nav-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.tp-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 14px;
  text-align: center;
}

.tp-nav-chips-container {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.tp-nav-chips-container::-webkit-scrollbar {
  display: none;
}

.tp-nav-chips {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  padding: 4px 0;
  width: max-content;
  margin: 0 auto;
}

.tp-nav-chip {
  display: inline-block;
  padding: 10px 22px;
  background: #f1f5f9;
  color: #334155;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.tp-nav-chip:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.tp-nav-chip.active {
  background: #eaf7fd;
  color: #1ba8e8;
  border-color: #1ba8e8;
  box-shadow: 0 4px 12px rgba(27, 168, 232, 0.15);
}

@media (max-width: 991px) {
  .tp-nav-section {
    position: static; /* Disable sticky scroll on mobile to avoid overlapping */
  }
  .tp-nav-chips {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tp-nav-label {
    text-align: left;
    padding-left: 20px;
  }
}

/* Patient Guide Section */
.tp-patient-guide {
  background: #f8fbff;
}

.tp-guide-subtext {
  font-size: 1.1rem;
  color: #475569;
  max-width: 650px;
  margin: 12px auto 0;
}

.tp-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.tp-guide-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tp-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 31, 77, 0.06);
}

.tp-guide-card.left-card {
  border-top: 5px solid #1ba8e8;
}

.tp-guide-card.right-card {
  border-top: 5px solid #0b1f4d;
}

.tp-guide-card h3 {
  font-size: 1.35rem;
  color: #0b1f4d;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tp-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tp-guide-list li {
  font-size: 1rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.tp-guide-list li .check-icon {
  color: #1ba8e8;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.tp-guide-card.right-card .check-icon {
  color: #0b1f4d;
}

@media (max-width: 768px) {
  .tp-guide-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tp-guide-card {
    padding: 30px;
  }
}

/* Treatment Journey Timeline */
.tp-journey-timeline {
  background: #ffffff;
}

.tp-timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.tp-timeline-line {
  position: absolute;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

/* Timeline Desktop */
@media (min-width: 992px) {
  .tp-timeline-line {
    top: 62px; /* Center alignment with node circle */
    left: 8%;
    right: 8%;
    height: 3px;
    z-index: 1;
  }
  
  .tp-timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  
  .tp-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }
  
  .tp-timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .tp-timeline-step:hover .tp-timeline-node {
    border-color: #1ba8e8;
    color: #1ba8e8;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(27, 168, 232, 0.25);
  }
  
  .tp-timeline-content h3 {
    font-size: 1.15rem;
    color: #0b1f4d;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .tp-timeline-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
  }
}

/* Timeline Mobile */
@media (max-width: 991px) {
  .tp-timeline-line {
    top: 40px;
    bottom: 40px;
    left: 38px; /* Alignment line with circle node */
    width: 3px;
    z-index: 1;
  }
  
  .tp-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .tp-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-left: 16px;
  }
  
  .tp-timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .tp-timeline-step:hover .tp-timeline-node {
    border-color: #1ba8e8;
    color: #1ba8e8;
  }
  
  .tp-timeline-content {
    padding-top: 6px;
  }
  
  .tp-timeline-content h3 {
    font-size: 1.2rem;
    color: #0b1f4d;
    margin-bottom: 8px;
    font-weight: 700;
  }
  
  .tp-timeline-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
  }
}

/* ==========================================================================
   TREATMENT PAGE REDESIGN - ABOVE-THE-FOLD HERO OPTIMIZATION
   ========================================================================== */

/* Reduce Overall Hero Height & Spacing */
.tp-redesign .tp-hero {
  padding: 130px 0 60px !important;
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 991px) {
  .tp-redesign .tp-hero {
    padding: 100px 0 40px !important;
  }
}

/* Copy Section Tight Spacing */
.tp-redesign .tp-breadcrumbs {
  margin-bottom: 8px !important;
}

.tp-redesign .premium-treatment-hero h1 {
  margin: 6px 0 10px !important;
  font-size: clamp(2rem, 3.2vw, 2.8rem) !important;
  line-height: 1.1 !important;
}

.tp-redesign .premium-treatment-hero h2 {
  margin-bottom: 12px !important;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem) !important;
  line-height: 1.3 !important;
}

.tp-redesign .premium-treatment-hero p {
  margin-bottom: 16px !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  max-width: 620px !important;
}

/* CTA Buttons Single Row */
.tp-redesign .premium-hero-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 480px) {
  .tp-redesign .premium-hero-actions {
    flex-wrap: wrap !important;
  }
  .tp-redesign .premium-hero-actions .btn {
    flex: 1 1 auto !important;
    text-align: center !important;
  }
}

/* Benefit Chips 2x2 Grid Layout (Visible on all viewports) */
.tp-redesign .premium-hero-checklist {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px 20px !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  max-width: 540px !important;
  width: 100% !important;
}

.tp-redesign .checklist-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.tp-redesign .checklist-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1ba8e8 !important;
  font-size: 0.95rem !important;
  font-weight: bold !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
}

.tp-redesign .checklist-text {
  font-size: 0.85rem !important;
  color: #475569 !important;
  font-weight: 600 !important;
}

@media (max-width: 576px) {
  .tp-redesign .premium-hero-checklist {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* Video Card Sizing & Alignment */
.tp-redesign .premium-hero-media {
  max-width: 580px !important;
  width: 100% !important;
  align-self: center !important;
  justify-self: end !important;
  margin-top: 0 !important;
}

.tp-redesign .premium-hero-media::before {
  width: 400px !important;
  height: 400px !important;
  top: -40px !important;
  right: -40px !important;
}

.tp-redesign .tp-video-player {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.12) !important;
}

.tp-redesign .tp-hero-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Hide floating metrics/trust cards to prevent clutter on standard laptop displays */
.tp-redesign .premium-hero-metrics,
.tp-redesign .premium-hero-float {
  display: none !important;
}

/* Before/After Slider Interaction Improvements */
.ba-slider {
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider .ba-handle {
  cursor: grab !important;
}

.ba-slider.ba-dragging .ba-handle,
body.ba-grabbing-active,
body.ba-grabbing-active * {
  cursor: grabbing !important;
}

/* Subtle hover effect on handle button only */
.ba-slider .ba-handle-button {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.ba-slider .ba-handle:hover .ba-handle-button {
  transform: scale(1.15) !important;
  background-color: #eaf7fd !important;
  border-color: #1ba8e8 !important;
  box-shadow: 0 6px 16px rgba(27, 168, 232, 0.25) !important;
  color: #1ba8e8 !important;
}

/* Canonical comparison slider used by every treatment page. */
.tp-featured-result {
  width: min(100%, 980px);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(11, 31, 77, 0.11);
}

.tp-featured-result .tp-standard-slider {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  touch-action: pan-y;
  cursor: ew-resize;
  background: #eaf4f9;
}

.tp-featured-result .tp-standard-slider:focus-visible {
  outline: 3px solid rgba(27, 168, 232, 0.55);
  outline-offset: 5px;
}

.tp-featured-result .tp-standard-slider .ba-before,
.tp-featured-result .tp-standard-slider .ba-after {
  background: #eaf4f9;
}

.tp-featured-result .tp-standard-slider .ba-image {
  background-color: #eaf4f9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.tp-featured-result .tp-standard-slider .ba-label {
  top: 16px;
  min-height: 30px;
  padding: 7px 12px;
  color: #0b1f4d;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(11, 31, 77, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tp-featured-result .tp-standard-slider .ba-label-before { left: 16px; }
.tp-featured-result .tp-standard-slider .ba-label-after { right: 16px; }

.tp-featured-result .tp-standard-slider .ba-handle {
  width: 44px !important;
  height: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

.tp-featured-result .tp-standard-slider .ba-handle-line {
  width: 2px !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 0 8px rgba(11, 31, 77, 0.24) !important;
  backdrop-filter: none !important;
}

.tp-featured-result .tp-standard-slider .ba-handle-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 48px !important;
  height: 48px !important;
  transform: translate(-50%, -50%) !important;
  color: #0b1f4d !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 2px solid rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 8px 24px rgba(11, 31, 77, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.tp-featured-result .tp-standard-slider:hover .ba-handle-button,
.tp-featured-result .tp-standard-slider.ba-dragging .ba-handle-button {
  transform: translate(-50%, -50%) scale(1.08) !important;
  color: #1ba8e8 !important;
  border-color: rgba(91, 190, 240, 0.7) !important;
}

.tp-featured-result .tp-standard-slider .ba-handle-button svg {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
}

.tp-featured-result .tp-result-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-featured-result .tp-result-details > div {
  min-height: 112px;
  align-content: center;
}

@media (max-width: 760px) {
  .tp-featured-result {
    border-radius: 18px;
  }

  .tp-featured-result .tp-standard-slider {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

  .tp-featured-result .tp-standard-slider .ba-label {
    top: 10px;
    min-height: 24px;
    padding: 5px 9px;
    font-size: 0.58rem;
  }

  .tp-featured-result .tp-standard-slider .ba-label-before { left: 10px; }
  .tp-featured-result .tp-standard-slider .ba-label-after { right: 10px; }

  .tp-featured-result .tp-standard-slider .ba-handle {
    width: 36px !important;
  }

  .tp-featured-result .tp-standard-slider .ba-handle-button {
    width: 38px !important;
    height: 38px !important;
  }

  .tp-featured-result .tp-result-details {
    grid-template-columns: 1fr;
  }

  .tp-featured-result .tp-result-details > div {
    min-height: 0;
  }
}

/* Premium patient guide: one clinical experience, not a feature-card grid. */
.tp-redesign .tp-patient-guide {
  padding: 84px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(91, 190, 240, 0.12), transparent 28%),
    #f7fbfe;
}

.tp-redesign .tp-patient-guide .container {
  max-width: 1180px;
}

.tp-redesign .tp-guide-heading {
  max-width: 720px;
  margin: 0 0 38px;
  text-align: left;
}

.tp-redesign .tp-guide-heading h2 {
  margin: 10px 0 0;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.tp-redesign .tp-guide-subtext {
  max-width: 640px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.tp-redesign .tp-patient-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(11, 31, 77, 0.09);
}

.tp-redesign .tp-symptom-panel,
.tp-redesign .tp-roadmap-panel {
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
}

.tp-redesign .tp-roadmap-panel {
  position: relative;
  border-left: 1px solid rgba(11, 31, 77, 0.08);
  background:
    linear-gradient(145deg, rgba(235, 248, 255, 0.96), rgba(247, 251, 255, 0.98));
}

.tp-redesign .tp-roadmap-panel::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(91, 190, 240, 0.1);
  pointer-events: none;
}

.tp-redesign .tp-guide-panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.tp-redesign .tp-guide-icon {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(27, 168, 232, 0.16);
  border-radius: 16px;
  color: #0b91d0;
  background: #eaf7fd;
  font-size: 1.65rem;
}

.tp-redesign .tp-guide-panel-heading small {
  display: block;
  margin-bottom: 3px;
  color: #159edc;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tp-redesign .tp-guide-panel-heading h3 {
  margin: 0;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tp-redesign .tp-symptom-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-redesign .tp-symptom-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 58px;
  padding: 9px 4px;
  border-bottom: 1px solid rgba(11, 31, 77, 0.075);
}

.tp-redesign .tp-symptom-list li:last-child {
  border-bottom: 0;
}

.tp-redesign .tp-symptom-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #129edc;
  background: #f0f9fe;
  font-size: 1.2rem;
}

.tp-redesign .tp-symptom-list strong {
  color: #314561;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
}

.tp-redesign .tp-symptom-check {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #2db7f5, #109bdc);
  box-shadow: 0 7px 16px rgba(45, 183, 245, 0.2);
  font-size: 1.05rem;
}

.tp-redesign .tp-guide-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 25px 0 0;
  color: #78879a;
  font-size: 0.78rem;
  line-height: 1.55;
}

.tp-redesign .tp-guide-note iconify-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #159edc;
  font-size: 1rem;
}

.tp-redesign .tp-recovery-roadmap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-redesign .tp-recovery-roadmap li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 76px;
  padding-bottom: 15px;
}

.tp-redesign .tp-recovery-roadmap li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 39px;
  bottom: -2px;
  left: 20px;
  width: 2px;
  background: linear-gradient(#8bd5f7, rgba(139, 213, 247, 0.25));
}

.tp-redesign .tp-roadmap-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(27, 168, 232, 0.24);
  border-radius: 50%;
  color: #0b91d0;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(11, 31, 77, 0.08);
  font-size: 1.2rem;
}

.tp-redesign .tp-recovery-roadmap strong {
  display: block;
  margin: 1px 0 4px;
  color: #0b1f4d;
  font-size: 0.95rem;
  font-weight: 750;
}

.tp-redesign .tp-recovery-roadmap p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #66768c;
  font-size: 0.78rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 820px) {
  .tp-redesign .tp-patient-guide {
    padding: 64px 0;
  }

  .tp-redesign .tp-patient-experience {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .tp-redesign .tp-roadmap-panel {
    border-top: 1px solid rgba(11, 31, 77, 0.08);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .tp-redesign .tp-guide-heading {
    margin-bottom: 28px;
  }

  .tp-redesign .tp-guide-heading h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .tp-redesign .tp-symptom-panel,
  .tp-redesign .tp-roadmap-panel {
    padding: 28px 22px;
  }

  .tp-redesign .tp-guide-panel-heading {
    gap: 13px;
    margin-bottom: 23px;
  }

  .tp-redesign .tp-guide-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .tp-redesign .tp-symptom-list li {
    min-height: 54px;
    gap: 12px;
  }

  .tp-redesign .tp-recovery-roadmap li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .tp-redesign .tp-roadmap-node {
    width: 38px;
    height: 38px;
  }

  .tp-redesign .tp-recovery-roadmap li:not(:last-child)::after {
    top: 36px;
    left: 18px;
  }
}

/* Specialist trust section */
.tp-redesign .tp-trust-section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(45, 183, 245, 0.09), transparent 32%),
    #ffffff;
}

.tp-redesign .tp-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  max-width: 1180px;
}

.tp-redesign .tp-trust-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  background: #dff3fc;
  box-shadow: 0 24px 60px rgba(11, 31, 77, 0.14);
}

.tp-redesign .tp-trust-visual::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 25, 66, 0.72));
}

.tp-redesign .tp-trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 38% center;
  transition: transform 300ms ease;
}

.tp-redesign .tp-trust-visual:hover img {
  transform: scale(1.025);
}

.tp-redesign .tp-trust-photo-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
}

.tp-redesign .tp-trust-photo-label span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-redesign .tp-trust-photo-label strong {
  font-size: 0.95rem;
  font-weight: 750;
}

.tp-redesign .tp-trust-content {
  min-width: 0;
}

.tp-redesign .tp-trust-content h2 {
  max-width: 620px;
  margin: 12px 0 17px;
  color: #0d2d6c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 3.3vw, 3.65rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.tp-redesign .tp-trust-intro {
  max-width: 660px;
  margin: 0;
  color: #62748f;
  font-size: 1rem;
  line-height: 1.72;
}

.tp-redesign .tp-trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  margin-top: 27px;
}

.tp-redesign .tp-trust-point {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 83px;
  padding: 15px 6px;
  border-bottom: 1px solid rgba(13, 45, 108, 0.09);
  transition: transform 180ms ease, background-color 180ms ease;
}

.tp-redesign .tp-trust-point:hover {
  transform: translateX(4px);
  background: rgba(45, 183, 245, 0.035);
}

.tp-redesign .tp-trust-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #2db7f5, #109bdc);
  box-shadow: 0 7px 16px rgba(45, 183, 245, 0.2);
  font-size: 0.95rem;
}

.tp-redesign .tp-trust-point h3 {
  margin: 1px 0 4px;
  color: #0d2d6c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.3;
}

.tp-redesign .tp-trust-point p {
  margin: 0;
  color: #718097;
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .tp-redesign .tp-trust-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .tp-redesign .tp-trust-visual,
  .tp-redesign .tp-trust-visual img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .tp-redesign .tp-trust-section {
    padding: 56px 0;
  }

  .tp-redesign .tp-trust-layout {
    gap: 34px;
  }

  .tp-redesign .tp-trust-visual,
  .tp-redesign .tp-trust-visual img {
    min-height: 340px;
  }

  .tp-redesign .tp-trust-visual {
    border-radius: 22px;
  }

  .tp-redesign .tp-trust-photo-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .tp-redesign .tp-trust-content h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .tp-redesign .tp-trust-points {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .tp-redesign .tp-trust-point {
    min-height: auto;
    padding: 14px 4px;
  }
}
