/*
 * Thérapie de couple – Page-specific styles
 * Identity: soin / sérénité / confiance — palette teal/emeraude + or (DA site)
 * Prefix: ther- (zero conflict with new-styles.css, communication.css, crise.css)
 */

/* ===== PAGE VARIABLES ===== */
:root {
  --ther-teal: #0D9488;
  --ther-teal-light: rgba(13, 148, 136, 0.08);
  --ther-teal-mid: rgba(13, 148, 136, 0.18);
  --ther-gold: #FFC400;
  --ther-pink: #FF3F7F;
  --ther-deep: #0F766E;
  --ther-gradient: linear-gradient(135deg, #8C00FF 0%, #FF3F7F 55%, #FFC400 100%);
  --ther-gradient-full: linear-gradient(150deg, #450693 0%, #8C00FF 25%, #FF3F7F 66%, #FFC400 100%);
  --ther-gradient-teal: linear-gradient(135deg, #0D9488 0%, #14B8A6 60%, #5EEAD4 100%);
  --ther-bg-warm: #F7FBF8;
  --ther-bg-card: #FAFFFE;
  --ther-night: #0A1628;
}

/* ===== HERO – plein écran sombre (vibe Communication / Crise) ===== */
.ther-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ther-night);
  padding-top: var(--navbar-height);
}

/* Vidéo de fond */
.ther-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ther-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* Cercles concentriques SVG — décoration propre à la thérapie */
.ther-hero__circles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ther-circle-svg {
  position: absolute;
  opacity: 0;
  animation: therCircleAppear 1.4s ease-out forwards;
}

.ther-circle-svg:nth-child(1) {
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.1s;
}

.ther-circle-svg--right {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  transform: none;
  animation-delay: 0.4s;
}

@keyframes therCircleAppear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes therCircleAppearRight {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ther-circle-svg--right {
  animation-name: therCircleAppearRight;
}

/* Radial glows */
.ther-hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ther-hero__glow--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(13,148,136,0.28) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: therGlowPulse 7s ease-in-out infinite alternate;
}

.ther-hero__glow--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,196,0,0.2) 0%, transparent 70%);
  bottom: 40px; left: -60px;
  animation: therGlowPulse 9s ease-in-out infinite alternate-reverse;
}

@keyframes therGlowPulse {
  from { transform: scale(1); opacity: 0.65; }
  to   { transform: scale(1.18); opacity: 1; }
}

/* Particules flottantes */
.ther-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ther-particle {
  position: absolute;
  border-radius: 50%;
  animation: therParticleFloat linear infinite;
}

.ther-particle:nth-child(1) {
  width: 4px; height: 4px;
  background: #0D9488;
  left: 20%; bottom: -10px;
  animation-duration: 9s;
  animation-delay: 0s;
  opacity: 0.6;
}
.ther-particle:nth-child(2) {
  width: 3px; height: 3px;
  background: #FFC400;
  left: 45%; bottom: -10px;
  animation-duration: 11s;
  animation-delay: 2s;
  opacity: 0.5;
}
.ther-particle:nth-child(3) {
  width: 5px; height: 5px;
  background: #5EEAD4;
  left: 65%; bottom: -10px;
  animation-duration: 8s;
  animation-delay: 4s;
  opacity: 0.4;
}
.ther-particle:nth-child(4) {
  width: 3px; height: 3px;
  background: #FF3F7F;
  left: 82%; bottom: -10px;
  animation-duration: 10s;
  animation-delay: 1s;
  opacity: 0.4;
}

@keyframes therParticleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* Contenu hero centré */
.ther-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 var(--container-padding);
  margin: 0 auto;
  text-align: center;
}

.ther-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(13,148,136,0.5);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5EEAD4;
  background: rgba(13,148,136,0.12);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: therFadeUp 0.8s ease forwards 0.2s;
}

.ther-hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ther-gradient-teal);
  animation: therDotPulse 2s ease-in-out infinite;
}

@keyframes therDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.ther-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: therFadeUp 0.9s ease forwards 0.4s;
}

.ther-hero__title-accent {
  display: block;
  background: var(--ther-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ther-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: therFadeUp 0.9s ease forwards 0.6s;
}

.ther-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: therFadeUp 0.9s ease forwards 0.8s;
}

.ther-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--ther-gradient);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(255, 63, 127, 0.4);
}

.ther-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 63, 127, 0.55);
  color: #fff;
  text-decoration: none;
}

.ther-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ther-btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
}

/* Scroll indicator (centré en bas) */
.ther-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: therScrollFadeUp 1s ease forwards 1.2s;
}
.ther-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(13,148,136,0.7), transparent);
  animation: therScrollLine 1.5s ease-in-out infinite;
}

@keyframes therScrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.3; }
}

/* ===== SHARED ANIMATIONS ===== */
@keyframes therFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes therScrollFadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== REVEAL ON SCROLL ===== */
.ther-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ther-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ther-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ther-reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

.ther-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ther-reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.ther-d1 { transition-delay: 0.1s; }
.ther-d2 { transition-delay: 0.2s; }
.ther-d3 { transition-delay: 0.3s; }
.ther-d4 { transition-delay: 0.4s; }

/* ===== SHARED TYPOGRAPHY ===== */
.ther-section-label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ther-teal);
  margin-bottom: 0.75rem;
}

.ther-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ther-section-sub {
  color: var(--color-text-medium);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ===== INTRO — "Pourquoi consulter" strip horizontal ===== */
.ther-intro {
  padding: 5rem var(--container-padding);
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.ther-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ther-intro__header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

/* Situation cards — horizontal scroll on mobile, grid on desktop */
.ther-intro__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ther-intro__card {
  background: var(--ther-bg-card);
  border: 1px solid rgba(13,148,136,0.1);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.ther-intro__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,148,136,0.14);
  border-color: rgba(13,148,136,0.3);
}

.ther-intro__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ther-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.ther-intro__card:hover::after {
  transform: scaleX(1);
}

.ther-intro__card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.ther-intro__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.ther-intro__card-text {
  font-size: 0.88rem;
  color: var(--color-text-medium);
  line-height: 1.65;
}

/* ===== HOW IT WORKS — processus en 3 étapes horizontal ===== */
.ther-process {
  padding: 6rem var(--container-padding);
  background: var(--ther-bg-warm);
  position: relative;
  overflow: hidden;
}

.ther-process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ther-gradient);
}

.ther-process__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ther-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* Ligne connectrice entre les steps */
.ther-process__steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(16.66% + 2rem);
  right: calc(16.66% + 2rem);
  height: 2px;
  background: linear-gradient(to right, rgba(13,148,136,0.3), rgba(255,63,127,0.3), rgba(255,196,0,0.3));
}

.ther-step {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ther-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,148,136,0.12);
}

.ther-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ther-gradient);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(255,63,127,0.3);
  position: relative;
  z-index: 1;
}

.ther-step__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.ther-step__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.ther-step__text {
  font-size: 0.9rem;
  color: var(--color-text-medium);
  line-height: 1.7;
}

/* ===== PRICE SECTION — dark split avec stats ===== */
.ther-price {
  padding: 6rem var(--container-padding);
  background: var(--ther-night);
  position: relative;
  overflow: hidden;
}

.ther-price::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13,148,136,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,196,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.ther-price__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ther-price .ther-section-label { color: #5EEAD4; }
.ther-price .ther-section-title { color: #fff; }
.ther-price .ther-section-sub { color: rgba(255,255,255,0.55); }

.ther-price__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ther-price__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.ther-price__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ther-gradient);
  flex-shrink: 0;
}

.ther-price__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ther-price__stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.ther-price__stat:hover {
  border-color: rgba(13,148,136,0.4);
  background: rgba(13,148,136,0.06);
}

.ther-price__stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--ther-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ther-price__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.ther-price__stat--featured {
  grid-column: span 2;
  background: rgba(255,255,255,0.06);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem;
}

.ther-price__stat--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--ther-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ther-price__stat--featured::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,196,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ther-price__stat--featured:hover {
  background: rgba(255,255,255,0.09);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,63,127,0.18);
}

.ther-price__stat--featured .ther-price__stat-val {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
  font-size: 2.4rem;
  flex-shrink: 0;
  margin-bottom: 0;
}

.ther-price__stat--featured .ther-price__stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
}

/* ===== ALTERNATIVES — layout asymétrique ===== */
.ther-alts {
  padding: 6rem var(--container-padding);
  background: #fff;
}

.ther-alts__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ther-alts__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.ther-alts__image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(13,148,136,0.15);
  position: relative;
}

.ther-alts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.ther-alts__image:hover img {
  transform: scale(1.03);
}

.ther-alts__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.65) 0%, transparent 50%);
}

.ther-alts__image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
}

.ther-alts__image-caption h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.ther-alts__image-caption p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.35rem;
}

.ther-alts__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ther-alt-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--ther-bg-warm);
  border: 1px solid rgba(13,148,136,0.08);
  transition: all var(--transition-fast);
}

.ther-alt-item:hover {
  border-color: rgba(13,148,136,0.3);
  transform: translateX(6px);
  background: rgba(13,148,136,0.04);
}

.ther-alt-item__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--ther-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,63,127,0.28);
}

.ther-alt-item__content {}

.ther-alt-item__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.ther-alt-item__text {
  font-size: 0.88rem;
  color: var(--color-text-medium);
  line-height: 1.65;
}

/* ===== INSURANCE SECTION — strip avec 2 cols ===== */
.ther-insurance {
  padding: 6rem var(--container-padding);
  background: var(--ther-bg-warm);
  position: relative;
}

.ther-insurance__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ther-insurance__image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ther-insurance__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ther-insurance__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.ther-insurance__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(13,148,136,0.1);
  transition: all var(--transition-fast);
}

.ther-insurance__item:hover {
  border-color: rgba(13,148,136,0.3);
  transform: translateX(4px);
}

.ther-insurance__item-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ther-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(255,63,127,0.28);
}

.ther-insurance__item-check svg {
  color: #fff;
}

.ther-insurance__item-text {
  font-size: 0.92rem;
  color: var(--color-text-medium);
  line-height: 1.6;
}

.ther-insurance__item-text strong {
  color: var(--color-text-dark);
  font-family: 'Poppins', sans-serif;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

/* ===== CTA SECTION ===== */
.ther-cta {
  padding: 6rem var(--container-padding);
  background: var(--ther-gradient-full);
  position: relative;
  overflow: hidden;
}

.ther-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ther-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ther-cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.ther-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ther-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.ther-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #450693;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-decoration: none;
}

.ther-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  color: #450693;
  text-decoration: none;
}

/* ===== FAQ SECTION ===== */
.ther-faq {
  padding: 6rem var(--container-padding);
  background: #fff;
}

.ther-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.ther-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ther-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ther-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.ther-faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.ther-faq__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.ther-faq__q {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.ther-faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(13,148,136,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.ther-faq__icon svg {
  transition: transform var(--transition-fast);
  color: var(--ther-teal);
}

.ther-faq__item.is-open .ther-faq__icon {
  background: var(--ther-gradient);
}

.ther-faq__item.is-open .ther-faq__icon svg {
  transform: rotate(45deg);
  color: #fff;
}

.ther-faq__item.is-open .ther-faq__q {
  color: var(--ther-teal);
}

.ther-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ther-faq__item.is-open .ther-faq__panel {
  max-height: 300px;
}

.ther-faq__a {
  padding: 0 0 1.5rem;
  font-size: 0.93rem;
  color: var(--color-text-medium);
  line-height: 1.75;
}

/* ===== ITM SECTION ===== */
.ther-itm {
  padding: 6rem var(--container-padding);
  background: var(--ther-night);
  position: relative;
  overflow: hidden;
}

.ther-itm::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(13,148,136,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(255,196,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.ther-itm__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ther-itm__image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.ther-itm__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ther-itm .ther-section-label { color: #5EEAD4; }
.ther-itm .ther-section-title { color: #fff; }

.ther-itm__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.ther-itm__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.ther-itm__feature:hover {
  border-color: rgba(13,148,136,0.4);
  background: rgba(13,148,136,0.06);
  transform: translateX(4px);
}

.ther-itm__feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ther-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,63,127,0.28);
}

.ther-itm__feature-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.ther-itm__feature-text strong {
  color: #fff;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

/* ===== LINKS SECTION ===== */
.ther-links {
  padding: 4rem var(--container-padding);
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.ther-links__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ther-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ther-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #F9F9F9;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.ther-link-card:hover {
  background: rgba(13,148,136,0.06);
  border-color: rgba(13,148,136,0.3);
  color: var(--ther-teal);
  text-decoration: none;
  transform: translateY(-2px);
}

.ther-link-card::after {
  display: none;
}

.ther-link-card svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.ther-link-card:hover svg {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ther-intro__cards {
    grid-template-columns: 1fr 1fr;
  }

  .ther-process__steps {
    grid-template-columns: 1fr;
  }

  .ther-process__steps::before {
    display: none;
  }

  .ther-price__inner,
  .ther-alts__layout,
  .ther-insurance__inner,
  .ther-itm__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ther-price__stats {
    grid-template-columns: 1fr 1fr;
  }

  .ther-links__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ther-hero__title { font-size: 2.4rem; }
  .ther-hero__actions { flex-direction: column; align-items: center; }
  .ther-btn-primary, .ther-btn-ghost { width: 100%; justify-content: center; }
  .ther-intro__cards { grid-template-columns: 1fr; }
  .ther-price__stats { grid-template-columns: 1fr; }
  .ther-price__stat--featured { grid-column: span 1; }
}
