*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --muted: #eef2f7;
  --primary: #10b981;
  --primary-dark: #E83E8C;
  --ink: #0f1b2e;
  --subtle: #4b5a70;
  --border: #d5deea;
  --shadow: 0 16px 40px rgba(15, 27, 46, 0.12);
  --radius: 16px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --muted: #f3f4f6;
  --primary: #e83e8c;
  --primary-dark: #c21e68;
  --ink: #0f172a;
  --subtle: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  display: block;
  height: 64px;
  width: auto;
}

.brand__symbol {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #34d399);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand__title {
  font-weight: 700;
}

.brand__subtitle {
  color: var(--subtle);
  font-size: 0.95rem;
}

.nav__cta {
  display: flex;
  gap: 0.65rem;
}

.nav__book-btn {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(200, 30, 110, 0.28);
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: rgba(232, 62, 140, 0.25);
}

.btn.secondary:hover {
  background: rgba(232, 62, 140, 0.06);
  transform: translateY(-1px);
}

.btn.ghost {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(232, 62, 140, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn.ghost:hover {
  background: rgba(232, 62, 140, 0.06);
  transform: translateY(-1px);
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(232, 62, 140, 0.12), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(248, 113, 150, 0.12), transparent 32%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: rgba(232, 62, 140, 0.1);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0.6rem 0 0.6rem;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
}

.hero__highlight {
  display: block;
  background: linear-gradient(90deg, #e83e8c, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 1.4rem;
  color: var(--subtle);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero__chips span {
  background: #f3f7ff;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  color: var(--subtle);
  font-weight: 600;
}

.hero__doctor {
  display: flex;
  justify-content: center;
}

.doctor-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 360px;
  width: 100%;
  height: 70%;
}

.doctor-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.doctor-card__img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.doctor-card__body {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 0.4rem;
}

.doctor-card__name {
  font-weight: 700;
}

.doctor-card__role,
.doctor-card__loc {
  color: var(--subtle);
  font-size: 0.95rem;
}

.doctor-card__tag {
  background: #e8f1ff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid #cfe0ff;
}

.doctor-section {
  position: relative;
}

.doctor-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: center;
}

.doctor-section__photo {
  display: flex;
  justify-content: center;
}

.doctor-photo-card {
  background: linear-gradient(145deg, #111827, #4b5563);
  border-radius: 24px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.doctor-photo-card__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.doctor-section__content h2 {
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
}

.doctor-section__lede {
  margin: 0 0 1.3rem;
  color: var(--subtle);
}

.doctor-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.doctor-section__card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.pill--doctor {
  margin-bottom: 0.35rem;
  background: #eaf2ff;
  color: #E83E8C;
}

.section {
  padding: 3rem 0;
}

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.muted {
  background: var(--muted);
}

.section--recovery {
  background: radial-gradient(circle at 0% 0%, rgba(31, 122, 224, 0.14), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(83, 160, 255, 0.18), transparent 55%),
              var(--muted);
}

.recovery-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e8f1ff;
  color: var(--primary);
  border: 1px solid #cfe0ff;
  font-size: 0.85rem;
  font-weight: 600;
}

.recovery-timeline {
  position: relative;
  margin-top: 1.8rem;
  padding: 2rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.recovery-timeline::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 83%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(175, 188, 205, 0.25), rgba(31, 122, 224, 0.6), rgba(175, 188, 205, 0.25));
}

.recovery-timeline__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.recovery-timeline__marker {
  position: relative;
  z-index: 1;
}

.recovery-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #173b33;
  color: #e9f2ff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(23, 59, 51, 0.55);
  border: 3px solid #f3f7fb;
}

.recovery-timeline__content {
  max-width: 300px;
}

.recovery-timeline__content h3 {
  margin: 0 0 0.35rem;
}

.recovery-timeline__content p {
  margin: 0 0 0.55rem;
  color: var(--subtle);
  font-size: 0.95rem;
}

.recovery-timeline__content h3 {
  font-size: 1rem;
}

.recovery-timeline__item:nth-child(1) .recovery-timeline__dot {
  background: #1f7ae0;
}

.recovery-timeline__item:nth-child(2) .recovery-timeline__dot {
  background: #37a36b;
}

.recovery-timeline__item:nth-child(3) .recovery-timeline__dot {
  background: #f28b30;
}

@media (max-width: 760px) {
  .recovery-timeline {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 0 0.5rem;
    gap: 1.5rem;
    position: relative;
  }

  .recovery-timeline::before {
    display: none;
  }

  .recovery-timeline::after {
    content: '';
    position: absolute;
    left: 17px; /* Center of the 34px dot (34px / 2 = 17px) */
    top: calc(1.5rem + 17px);   /* align with center of first dot (container padding + dot radius) */
    bottom: calc(0.5rem + 17px);/* align with center of last dot (bottom padding + dot radius) */
    width: 2px;
    background: linear-gradient(180deg, rgba(31, 122, 224, 0.3), rgba(55, 163, 107, 0.3), rgba(242, 139, 48, 0.3));
    border-radius: 999px;
  }

  .recovery-timeline__item {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 1rem;
    position: relative;
    padding-left: 0;
  }

  .recovery-timeline__marker {
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: 34px; /* Explicit width to ensure consistent positioning */
    order: -1; /* Move marker to the left in mobile view */
  }

  .recovery-timeline__content {
    max-width: 100%;
    flex: 1;
  }

  .recovery-timeline__content h3 {
    font-size: 1.05rem;
  }

  .note-list {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .note-list span {
    width: 100%;
    text-align: center;
  }
}

.band {
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(31, 122, 224, 0.16), transparent 55%), radial-gradient(circle at 100% 100%, rgba(83, 160, 255, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.band > .shell {
  position: relative;
  z-index: 1;
}

.band--eligibility {
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 62, 140, 0.06), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.06), transparent 55%),
    var(--muted);
  color: var(--ink);
}

.band--eligibility .section__sub {
  color: var(--subtle);
}

.section__head {
  text-align: center;
  margin-bottom: 2rem;
}

.section__sub {
  margin: 0.35rem auto 0;
  color: var(--subtle);
  max-width: 640px;
}

.tiles {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tiles.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.tile h3 {
  margin: 0 0 0.35rem;
}

.tile p {
  margin: 0;
  color: var(--subtle);
}

.symptom-tile {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.symptom-icon-wrap {
  min-width: 70px;
  min-height: 70px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eaf2ff, #f7fbff);
  border: 1px solid #d4e2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symptom-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.symptom-text h3 {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .symptom-tile {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .symptom-icon-wrap {
    min-width: 56px;
    min-height: 56px;
  }

  .symptom-icon {
    width: 32px;
    height: 32px;
  }

  .symptom-text h3 {
    font-size: 0.95rem;
  }
}

.tiles--eligibility .tile {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}

.tiles--eligibility .tile h3 {
  color: var(--ink);
}

.tiles--eligibility .tile ul {
  color: var(--subtle);
}

.eligibility-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.eligibility-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 60%),
    rgba(248, 250, 252, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.eligibility-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.eligibility-text h3 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .eligibility-tile {
    align-items: center;
  }
}

.section--spotlight {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 62, 140, 0.16), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 60%),
    #fdf2f8;
  overflow: hidden;
}

.section--spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.9), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.section--spotlight > .shell {
  position: relative;
  z-index: 1;
}

.pill--compare {
  margin-bottom: 0.6rem;
  background: rgba(232, 62, 140, 0.09);
  color: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

.section--spotlight .compare__table,
.section--spotlight .card.highlight,
.section--spotlight .compare-modern__cards {
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.6s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease-out;
}

.section--spotlight .card.highlight {
  position: relative;
}

.section--spotlight .card.highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31, 122, 224, 0.2), rgba(83, 160, 255, 0.45));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section--spotlight.is-visible .compare__table,
.section--spotlight.is-visible .card.highlight,
.section--spotlight.is-visible .compare-modern__cards {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 18px 40px rgba(31, 122, 224, 0.15);
}


.section--spotlight .compare__table:hover,
.section--spotlight .card.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 27, 46, 0.28);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.panel--accent {
  background: linear-gradient(135deg, #eaf3ff, #f7fbff);
}

.callout {
  background: #f6f9ff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  margin: 1rem 0;
}

ul {
  margin: 0.4rem 0;
  padding-left: 1.1rem;
  color: var(--subtle);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.chips span {
  background: #e8f1ff;
  color: black;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #d5e5ff;
  font-weight: 600;
}

.stat-card {
  background: #111827;
  color: #e9f2ff;
  padding: 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat-card__number {
  font-size: 2.3rem;
  font-weight: 800;
}

.stat-card__label {
  color: #c8d9ef;
}

.illustration {
  position: relative;
  margin-top: 1rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.illustration__image {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 10px;
}

.illustration__caption {
  position: relative;
  margin-top: 0.6rem;
  color: #c8d9ef;
  font-size: 0.95rem;
}

.compare {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

/* Modern Card-Based Comparison */
.compare-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.compare-modern__cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 27, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.compare-card--embolisation {
  background: var(--surface);
  border: 1px solid #bbf7d0;
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15);
  transform: translateY(0);
  z-index: 2;
  position: relative;
}

.compare-card--embolisation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  background-size: 200% 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  animation: shimmer 3s ease-in-out infinite;
}

.compare-card--embolisation:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(80, 120, 130, 0.28), 0 0 0 1px rgba(23, 59, 51, 0.2);
}

.compare-card--surgery {
  background: linear-gradient(135deg, #fef2f2, #fef9f9);
  border: 1px solid #fecaca;
  opacity: 0.98;
  transform: scale(0.98);
}

.compare-card--surgery:hover {
  transform: scale(0.99);
  box-shadow: 0 12px 32px rgba(15, 27, 46, 0.1);
}

.compare-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, #507882, #173b33);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(80, 120, 130, 0.4);
  text-transform: uppercase;
  z-index: 3;
}

.compare-card__header {
  margin-bottom: 1.75rem;
  padding-right: 6rem;
}

.compare-card--embolisation .compare-card__header {
  margin-top: 0.5rem;
}

.compare-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.compare-card--embolisation .compare-card__title {
  color: #064e3b;
}

.compare-card--surgery .compare-card__title {
  color: #991b1b;
}

.compare-card__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--subtle);
  line-height: 1.5;
}

.compare-card--embolisation .compare-card__subtitle {
  color: var(--subtle);
}

.compare-card__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.compare-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(213, 222, 234, 0.4);
}

.compare-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compare-feature__label {
  font-weight: 600;
  color: var(--subtle);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-feature__value {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: fit-content;
}

.compare-feature__value--positive {
  background: linear-gradient(135deg, rgba(80, 120, 130, 0.15), rgba(23, 59, 51, 0.2));
  color: #173b33;
  border-left: 3px solid #507882;
  box-shadow: 0 2px 8px rgba(80, 120, 130, 0.2);
}

.compare-feature__value--neutral {
  background: #f3f7fb;
  color: var(--subtle);
  border-left: 3px solid var(--border);
}

.compare__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.compare__option-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 27, 46, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.compare__option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 27, 46, 0.12);
}

.compare__option-card--selected {
  border-color: #10b981;
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
  position: relative;
}

.compare__option-card--selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.compare__option-card--surgery {
  border-color: #e5e7eb;
}

.compare__option-header {
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compare__option-card--selected .compare__option-header {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-bottom-color: rgba(16, 185, 129, 0.2);
}

.compare__option-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.compare__option-card--selected .compare__option-title {
  color: #065f46;
}

.compare__option-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare__feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(213, 222, 234, 0.3);
}

.compare__feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compare__feature-label {
  font-weight: 600;
  color: var(--subtle);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare__feature-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.compare__feature-value--negative {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #991b1b;
  border-left: 3px solid #ef4444;
}

.compare__feature-value--positive {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border-left: 3px solid #10b981;
  font-weight: 700;
}

.compare__icon--positive {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.compare__table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 27, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare__table:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 27, 46, 0.12);
}

.compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(213, 222, 234, 0.5);
  transition: background-color 0.2s ease;
}

.compare__row:last-child {
  border-bottom: none;
}

.compare__row:not(.compare__row--head):hover {
  background: rgba(232, 62, 140, 0.04);
}

.compare__row--head {
  background: linear-gradient(135deg, #fdf2f8, #fef9fb);
  font-weight: 700;
  padding: 1.3rem 1.2rem;
  border-bottom: 2px solid var(--border);
}

.compare__label {
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.compare__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  position: relative;
}

.compare__option-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.compare__option--surgery {
  color: var(--subtle);
}

.compare__option--embolisation {
  color: #065f46;
}

.compare__row--head .compare__option--embolisation {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  margin: -0.3rem -0.5rem;
}

.compare__row--head .compare__option--embolisation .compare__option-label {
  color: #ffffff;
}

.compare__row--head .compare__option--surgery {
  color: var(--ink);
}

.compare__embolisation {
  background: #fdf2f8;
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid #0a1b16;
  position: relative;
}

.compare__row--head .compare__embolisation {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  border-left: none;
  text-align: center;
}

.compare__row:not(.compare__row--head) .compare__embolisation {
  margin: -0.5rem 0;
}

.compare__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  }
}

.compare__value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.compare__value--negative {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #991b1b;
  border-left: 3px solid #ef4444;
}

.compare__value--positive {
  background: linear-gradient(135deg, #e6f7ed, #f0fdf4);
  color: #065f46;
  border-left: 3px solid #10b981;
  font-weight: 600;
}

.compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.compare__icon--positive {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.compare__icon--negative {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card.highlight {
  background: linear-gradient(135deg, #e6f2ff, #f4fbff);
  border: 2px solid rgba(31, 122, 224, 0.15);
  position: relative;
  overflow: hidden;
}

.card.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f7ae0, #53a0ff, #1f7ae0);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.highlight__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.highlight__icon {
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.highlight__header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--subtle);
}

.checklist__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4f7ec;
  color: #1f8b4d;
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline__step {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(213, 222, 234, 0.9);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.timeline--pill .timeline__step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 122, 224, 0.15), rgba(31, 122, 224, 0.5));
}

.timeline__title {
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.timeline--pill {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.timeline--pill .timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.timeline__icon {
  background: linear-gradient(135deg, var(--primary), #53a0ff);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(31, 122, 224, 0.18);
}

.timeline__body p {
  margin: 0 0 0.35rem;
  color: var(--subtle);
}

.timeline__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: #e8f1ff;
  color: var(--primary);
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f7ff;
  border: 1px solid #d9e6ff;
  font-size: 1rem;
}

.note-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  color: var(--subtle);
}

.note-list span {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 0.85rem 1rem 0.85rem 2.4rem;
  border-radius: 14px;
  color: var(--ink);
  position: relative;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.note-list span::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(232, 62, 140, 0.35);
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--subtle);
}

.reviews-section {
  background: linear-gradient(145deg, #fdf2f8, #f9fafb);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews-logo {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .reviews-header {
    flex-direction: column;
    text-align: center;
  }

  .reviews-logo {
    height: 40px;
  }
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #111827, #4b5563);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}

.reviews-summary__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.reviews-summary__score {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.reviews-summary__stars {
  margin: 0.25rem 0;
}

.stars-large {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.reviews-summary__count {
  color: #c9dbf2;
  font-size: 0.95rem;
}

.reviews-summary__action {
  flex: 1;
  display: flex;
  justify-content: center;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 1rem 0;
}

.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  animation: scroll-reviews 40s linear infinite;
  will-change: transform;
}

.reviews-carousel__track:hover {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 27, 46, 0.15);
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #53a0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-card__avatar-initial {
  line-height: 1;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.review-card__rating {
  margin-top: 0.25rem;
}

.stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-card__body {
  flex: 1;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.review-card__body p {
  margin: 0;
  font-size: 0.95rem;
}

.review-card__date {
  color: var(--subtle);
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-360px * 5 - 1.25rem * 5));
  }
}

@media (max-width: 860px) {
  .reviews-summary {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  .reviews-summary__action {
    width: 100%;
  }

  .reviews-summary__action .btn {
    width: 100%;
  }

  .review-card {
    width: 320px;
  }

  @keyframes scroll-reviews {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 5 - 1.25rem * 5));
    }
  }
}

@media (max-width: 640px) {
  .reviews-summary__score {
    font-size: 2.8rem;
  }

  .stars-large {
    font-size: 1.3rem;
  }

  .review-card {
    width: 280px;
  }

  @keyframes scroll-reviews {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 5 - 1.25rem * 5));
    }
  }
}

.faq-section {
  background: linear-gradient(145deg, #fdf2f8, #f9fbf);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1.5fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.faq-intro__card {
  background: linear-gradient(145deg, #111827, #4b5563);
  color: #e9f2ff;
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}

.faq-intro__card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.faq-intro__card p {
  margin: 0 0 1rem;
  color: #c9dbf2;
}

.faq-points {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  color: #d5e4ff;
}

.faq-points li + li {
  margin-top: 0.25rem;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq__question {
  font-weight: 700;
}

.faq__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #e8f1ff;
  color: black;
  border: 1px solid #cfe0ff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.faq details[open] {
  border-color: #c7dbff;
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cta-strip {
  background: #173b33;
  color: #e9f2ff;
  padding: 3rem 0;
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 1rem;
}

.cta-strip p {
  color: #c9dbf2;
  margin: 0.4rem 0 0;
}

.sticky-book-btn {
  position: fixed;
  right: 1rem;
  bottom: 6.25rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #E83E8C;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 35px rgba(31, 122, 224, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 260px;
  text-align: center;
}

.sticky-book-btn:hover {
  background: #1a6cc3;
  transform: translateY(-1px);
}

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: none;
  z-index: 50;
}

.sticky-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .compare {
    grid-template-columns: 1fr;
  }

  .compare__options {
    grid-template-columns: 1fr;
  }

  .compare-modern__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .compare-card--embolisation {
    order: -1;
  }

  .compare-card--surgery {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .compare__option-header {
    padding: 1.25rem 1.25rem 0.85rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .compare__option-title {
    font-size: 1.3rem;
  }

  .compare__option-body {
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .compare__feature {
    padding-bottom: 0.85rem;
  }

  .compare__feature-value {
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100%, 94vw);
  }

  .nav__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav__cta {
    display: none;
  }

  .nav__book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    background: #E83E8C;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(31, 122, 224, 0.24);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .nav__book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 122, 224, 0.3);
  }

  .hero {
    padding: 2.4rem 0 1.9rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .doctor-section__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brand__logo {
    height: 36px;
  }

  .section__head {
    text-align: left;
  }

  .section__sub {
    max-width: none;
  }

  .tiles,
  .tiles.three {
    grid-template-columns: 1fr;
  }

  .compare__row {
    grid-template-columns: 1fr;
    padding: 0.9rem 1rem;
    row-gap: 0.4rem;
    align-items: flex-start;
  }

  .compare__row--head {
    display: none;
  }

  .compare__row > div:first-child {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--subtle);
  }

  .compare__value {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }

  .compare__icon {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .compare__badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .compare-modern__cards {
    gap: 1rem;
  }

  .compare-card {
    padding: 1.5rem 1.25rem;
  }

  .compare-card__header {
    padding-right: 5rem;
    margin-bottom: 1.5rem;
  }

  .compare-card__title {
    font-size: 1.5rem;
  }

  .compare-card__badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  .compare-feature {
    padding-bottom: 0.85rem;
    gap: 0.4rem;
  }

  .compare-feature__value {
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
  }

  .cta-strip {
    padding: 2.2rem 0;
  }

  .sticky-book-btn {
    display: none;
  }

  .sticky-cta {
    display: block;
  }

  .sticky-cta .btn.ghost {
    background: #16a34a;
    color: #ffffff;
    border-color: #15803d;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
  }

  .sticky-cta .btn.ghost:hover {
    background: #15803d;
    transform: translateY(-1px);
  }

  body {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  body {
    font-size: 0.97rem;
  }

  .tile,
  .panel,
  .card,
  .faq details {
    padding: 1rem;
  }

  .insurance-carousel__slide {
    width: 120px;
    height: 75px;
    padding: 0.875rem;
  }

  .insurance-carousel__track {
    gap: 1rem;
  }
}

.insurance-section {
  padding: 4rem 0;
}

.insurance-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.5rem 0;
}

.insurance-carousel__track {
  display: flex;
  gap: 2rem;
  animation: scroll 120s linear infinite;
  will-change: transform;
}

.insurance-carousel__track:hover {
  animation-play-state: paused;
}

.insurance-carousel__slide {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insurance-carousel__slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 27, 46, 0.12);
}

.insurance-logo {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 50 - 2rem * 50));
  }
}

@media (max-width: 768px) {
  .insurance-carousel__slide {
    width: 140px;
    height: 85px;
    padding: 1rem;
  }

  .insurance-carousel__track {
    gap: 1.5rem;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 50 - 1.5rem * 50));
    }
  }
}
