.fiv-page {
  overflow: visible;
  background:
    radial-gradient(circle at 0 36%, rgba(22, 167, 201, .08), transparent 20%),
    radial-gradient(circle at 100% 18%, rgba(13, 59, 115, .06), transparent 18%),
    #fff;
}

/* Congelación de óvulos */
.cryo-page .fiv-main-column {
  min-width: 0;
}

.cryo-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  min-height: 560px;
  padding: clamp(42px, 6vw, 82px);
  border: 1px solid #dceaf2;
  background: linear-gradient(135deg, #f3fbff, #fff);
}

.cryo-hero h1 {
  margin: 0;
  color: #0d3b73;
  font: 400 clamp(52px, 5vw, 78px)/.98 var(--font-display);
}

.embryo-page .cryo-hero h1 {
  font-size: clamp(44px, 4.2vw, 68px);
}

.cryo-hero h1 span,
.cryo-page h2 span {
  color: #0799b7;
}

.cryo-hero p {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.75;
}

.cryo-hero>img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(13, 59, 115, .12);
}

.cryo-intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: center;
}

.cryo-intro h2,
.cryo-candidates h2,
.cryo-steps>h2,
.cryo-cta h2 {
  margin: 0;
  color: #0d3b73;
  font: 400 clamp(42px, 4vw, 62px)/1.02 var(--font-display);
}

.cryo-intro p {
  font-size: 17px;
  line-height: 1.8;
}

.cryo-intro>img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.cryo-candidates ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cryo-candidates li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid #dceaf2;
}

.cryo-candidates li .fa {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eefafd;
  color: #0799b7;
  font-size: 28px;
}

.cryo-candidates li img,
.cryo-candidate-icon {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.cryo-candidates li p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.cryo-feature-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 32px;
  box-shadow: 0 10px 30px rgba(13, 59, 115, 0.08);
}

.cryo-cta {
  padding: clamp(32px, 5vw, 64px);
  border-radius: 14px;
  background: linear-gradient(135deg, #eef8ff, #edf3ff);
}

.cryo-cta p {
  margin: 18px 0 28px;
  font-size: 18px;
}

.cryo-step-list {
  margin-top: 34px;
  border: 1px solid #dceaf2;
  border-radius: 14px;
  overflow: hidden;
}

.cryo-step-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #dceaf2;
}

.cryo-step-list article:last-child {
  border-bottom: 0;
}

.cryo-step-list article>b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0799b7;
  background: #eefafd;
  font: 500 22px var(--font-display);
}

.cryo-step-list h3 {
  margin: 0 0 8px;
  color: #0d3b73;
  font: 600 27px/1.15 var(--font-display);
}

.cryo-step-list p {
  margin: 0;
  line-height: 1.6;
}

.cryo-step-list img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 1279px) {
  .cryo-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 46px;
  }

  .cryo-hero>img {
    height: 360px;
  }

  .cryo-step-list article {
    grid-template-columns: 58px minmax(0, 1fr) 220px;
  }
}

@media (max-width: 1023px) {

  .cryo-hero,
  .cryo-intro {
    grid-template-columns: 1fr;
  }

  .cryo-hero>img,
  .cryo-intro>img {
    height: min(54vw, 430px);
  }
}

@media (max-width: 767px) {
  .cryo-hero {
    padding: 28px 20px;
    gap: 26px;
  }

  .cryo-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .embryo-page .cryo-hero h1 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .cryo-hero>img,
  .cryo-intro>img {
    height: 280px;
  }

  .cryo-intro {
    gap: 24px;
  }

  .cryo-intro h2,
  .cryo-candidates h2,
  .cryo-steps>h2,
  .cryo-cta h2 {
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: anywhere;
  }

  .cryo-candidates li {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .cryo-candidates li img,
  .cryo-candidate-icon,
  .cryo-candidates li .fa {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .cryo-step-list article {
    grid-template-columns: 48px 1fr;
    padding: 18px 14px;
  }

  .cryo-step-list article>b {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .cryo-step-list h3 {
    font-size: 23px;
  }

  .cryo-step-list img {
    grid-column: 1 / -1;
    height: 210px;
  }

  .cryo-cta .fiv-btn {
    width: 100%;
  }
}

/* Escala lateral uniforme para todos los gráficos de barras. */
.drjam-bar-chart {
  --chart-axis-left: 12px;
  --chart-axis-top: 18px;
  --chart-axis-bottom: 0px;
  --chart-axis-width: 38px;
  --chart-line-left: 64px;
  position: relative;
  border-left: 0;
  background-color: rgba(255, 255, 255, .58);
}

.drjam-bar-chart::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: var(--chart-axis-top);
  bottom: var(--chart-axis-bottom);
  left: var(--chart-line-left);
  width: 2px;
  border-radius: 2px;
  background: #9eb8ca;
  pointer-events: none;
}

.drjam-chart-axis {
  position: absolute;
  z-index: 3;
  top: var(--chart-axis-top);
  bottom: var(--chart-axis-bottom);
  left: var(--chart-axis-left);
  width: var(--chart-axis-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #496680;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.drjam-chart-axis>span {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  display: block;
  border-radius: 0;
  color: inherit;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.drjam-chart-axis>span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 7px);
  width: 8px;
  border-top: 1px solid #9eb8ca;
}

.drjam-chart-axis-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -25px;
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-90deg);
  pointer-events: none;
}

.chart-bars.drjam-bar-chart {
  padding-left: 78px;
}

.ia-success-chart>.drjam-bar-chart {
  --chart-axis-left: 24px;
  --chart-axis-top: 38px;
  --chart-axis-bottom: 42px;
  --chart-line-left: 76px;
  padding-left: 92px;
}

.ovo-chart.drjam-bar-chart {
  --chart-axis-left: 12px;
  --chart-axis-top: 20px;
  --chart-axis-bottom: 34px;
  --chart-line-left: 62px;
  padding-left: 78px;
}

.ia-success-chart>.drjam-bar-chart>span:not(.drjam-chart-axis-title),
.ovo-chart.drjam-bar-chart>span:not(.drjam-chart-axis-title) {
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 1.05s cubic-bezier(.2, .85, .25, 1);
}

.ia-success-chart>.drjam-bar-chart>span:nth-of-type(3),
.ovo-chart.drjam-bar-chart>span:nth-of-type(4) {
  transition-delay: .14s;
}

.ia-success-chart>.drjam-bar-chart>span:nth-of-type(4),
.ovo-chart.drjam-bar-chart>span:nth-of-type(5) {
  transition-delay: .28s;
}

.ia-success-chart>.drjam-bar-chart.is-chart-visible>span:not(.drjam-chart-axis-title),
.ovo-chart.drjam-bar-chart.is-chart-visible>span:not(.drjam-chart-axis-title) {
  transform: scaleY(1);
}

@media (max-width: 680px) {
  .drjam-chart-axis-title {
    left: -29px;
    font-size: 10px;
  }

  .chart-bars.drjam-bar-chart {
    gap: 12px;
    padding-left: 66px;
    padding-right: 8px;
  }

  .ia-success-chart>.drjam-bar-chart {
    --chart-axis-left: 12px;
    --chart-line-left: 58px;
    padding-left: 68px;
    padding-right: 8px;
  }

  .ovo-chart.drjam-bar-chart {
    --chart-axis-left: 7px;
    --chart-line-left: 52px;
    padding-left: 62px;
    padding-right: 8px;
  }

  .drjam-chart-axis {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ia-success-chart>.drjam-bar-chart>span:not(.drjam-chart-axis-title),
  .ovo-chart.drjam-bar-chart>span:not(.drjam-chart-axis-title) {
    transform: scaleY(1);
    transition: none;
  }
}

/* Carrusel global y administrable de testimonios. */
.drjam-testimonials-carousel {
  position: relative;
  width: 100%;
  padding: 58px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f4fbfe 100%);
}

.drjam-testimonials-carousel .wrap {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.drjam-testimonials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.drjam-testimonials-heading span {
  color: #12a5c5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.drjam-testimonials-heading h2 {
  max-width: 760px;
  margin: 5px 0 0;
  color: #0d3b73;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.drjam-carousel-controls {
  display: flex;
  gap: 10px;
}

.drjam-carousel-controls button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #cde3ee;
  border-radius: 50%;
  color: #0d3b73;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 59, 115, .09);
  cursor: pointer;
  font-size: 24px;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.drjam-carousel-controls button:hover,
.drjam-carousel-controls button:focus-visible {
  color: #fff;
  background: #16a7c9;
  transform: translateY(-2px);
}

.drjam-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  padding: 4px 2px 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #16a7c9 #e2f1f6;
}

.drjam-testimonial-slide {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #d9e9f1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 59, 115, .08);
}

.drjam-testimonial-slide>img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.drjam-testimonial-body {
  display: flex;
  min-height: 320px;
  padding: 24px;
  flex-direction: column;
}

.drjam-testimonial-body .stars {
  color: #f5b642;
  font-size: 17px;
  letter-spacing: 3px;
}

.drjam-testimonial-body blockquote {
  flex: 1;
  margin: 15px 0 22px;
  color: #263d5a;
  font-size: 15px;
  line-height: 1.65;
}

.drjam-testimonial-body footer {
  padding-top: 16px;
  border-top: 1px solid #e2edf3;
}

.drjam-testimonial-body footer strong,
.drjam-testimonial-body footer span {
  display: block;
}

.drjam-testimonial-body footer strong {
  color: #0d3b73;
  font-size: 15px;
}

.drjam-testimonial-body footer span {
  margin-top: 2px;
  color: #718096;
  font-size: 13px;
}

.drjam-testimonial-body>a {
  margin-top: 16px;
  color: #079abc;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.drjam-carousel-status {
  margin-top: 4px;
  color: #718096;
  font-size: 12px;
  text-align: center;
}

.contact-trust-section {
  margin-top: 0 !important;
}

@media (max-width: 920px) {
  .drjam-testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .drjam-testimonials-carousel {
    padding: 38px 0;
  }

  .drjam-testimonials-carousel .wrap {
    width: min(100% - 24px, 1180px);
  }

  .drjam-testimonials-heading {
    align-items: center;
  }

  .drjam-testimonials-heading h2 {
    font-size: 32px;
  }

  .drjam-testimonials-heading span {
    font-size: 11px;
  }

  .drjam-carousel-controls button {
    width: 42px;
    height: 42px;
  }

  .drjam-testimonial-track {
    grid-auto-columns: 88%;
    gap: 14px;
  }

  .drjam-testimonial-slide>img {
    height: 190px;
  }

  .drjam-testimonial-body {
    min-height: 300px;
    padding: 20px;
  }
}

.fiv-breadcrumb {
  padding: 26px 0 10px;
}

.fiv-breadcrumb span,
.fiv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #dcecf4;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 6px 14px rgba(13, 59, 115, .06);
}

.fiv-breadcrumb .fa,
.fiv-kicker .fa {
  font-size: 20px;
}

.fiv-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 74px;
  padding: 60px 80px;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(245, 251, 255, .98), rgba(255, 255, 255, .94)),
    radial-gradient(circle at 0 100%, rgba(22, 167, 201, .18), transparent 34%);
  border: 1px solid #e5eef6;
}

.fiv-hero::after,
.fiv-cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 120px;
  border-bottom: 2px solid rgba(22, 167, 201, .55);
  border-right: 2px solid rgba(22, 167, 201, .45);
  border-radius: 0 0 160px 0;
  left: 28%;
  bottom: 30px;
  transform: rotate(9deg);
  pointer-events: none;
}

.fiv-hero h1,
.fiv-content h2,
.fiv-benefits h2,
.fiv-indications h2,
.fiv-process h2,
.fiv-results h2,
.fiv-cta-band h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.fiv-hero h1 {
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: .92;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/* Títulos principales de todos los tratamientos en mayúsculas. */
.fiv-hero h1,
.icsi-hero h1,
.ia-hero h1,
.ovo-hero h1,
.genetic-hero h1,
.ropa-hero h1,
.doctor-hero h1,
.contact-hero h1 {
  text-transform: uppercase;
}

.fiv-hero h1 span,
.fiv-content h2 span,
.fiv-benefits h2 span,
.fiv-indications h2 span,
.fiv-process h2 span,
.fiv-results h2 span {
  color: var(--teal-dark);
}

.fiv-line {
  width: 68px;
  height: 4px;
  margin: 0 0 24px;
  /* background: var(--teal); */
  border-radius: 999px;
  padding: 2px;
}

.fiv-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.fiv-hero p {
  max-width: 520px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.fiv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--teal), #0f94b6);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(13, 59, 115, .15);
}

.fiv-btn.small {
  min-height: 54px;
  padding: 0 28px;
  font-size: 15px;
}

.fiv-btn.large {
  width: min(100%, 650px);
  min-height: 68px;
  margin: 24px 0 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 22px;
}

.fiv-hero-media {
  position: relative;
  min-height: 360px;
}

.fiv-hero-media img {
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(13, 59, 115, .14);
}

/* Motivos para elegir el centro: composición inspirada en la pieza institucional. */
.fiv-choice-section {
  position: relative;
  padding: 54px 36px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 18%, rgba(22, 167, 201, .08) 0 2px, transparent 3px) 0 0 / 18px 18px,
    linear-gradient(140deg, #f6fcff 0%, #fff 42%, #fbfdff 100%);
}

.fiv-choice-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -125px;
  width: 230px;
  height: 650px;
  border: 26px solid rgba(22, 167, 201, .08);
  border-radius: 50%;
  transform: rotate(8deg);
  pointer-events: none;
}

.fiv-choice-section>header {
  position: relative;
  z-index: 1;
  margin: 0 auto 28px;
  text-align: center;
}

.fiv-choice-section>header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

.fiv-choice-section>header h2 span,
.fiv-choice-section>header strong,
.fiv-choice-copy strong {
  color: var(--teal-dark);
}

.fiv-choice-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 8px;
  color: var(--teal-dark);
  font-size: 24px;
}

.fiv-choice-heart::before,
.fiv-choice-heart::after {
  content: "";
  width: 145px;
  height: 2px;
  background: var(--teal-dark);
}

.fiv-choice-section>header p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.fiv-choice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.fiv-choice-grid article {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  min-height: 0;
  padding: 24px 28px;
  align-items: center;
  border: 1px solid #dce9f1;
  border-radius: 18px;
  background: rgba(247, 252, 255, .92);
  box-shadow: 0 12px 30px rgba(13, 59, 115, .06);
}

.fiv-choice-grid article.wide {
  grid-column: auto;
}

.fiv-choice-icon {
  display: flex;
  width: 92px;
  height: 92px;
  min-width: 92px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #e5f6fb;
  font-size: 44px;
  box-sizing: border-box;
}

.fiv-choice-icon--image {
  overflow: visible;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 92px;
  height: 92px;
  min-width: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiv-choice-icon--image .fiv-choice-icon-image {
  display: block;
  width: 90px;
  height: 90px;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

.fiv-choice-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.12;
}

.fiv-choice-copy .fiv-line {
  width: 64px;
  height: 3px;
  margin: 16px 0;
}

.fiv-choice-copy p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

.fiv-choice-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  margin-top: 14px;
  padding: 10px 20px;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(90deg, #078eaa, #0aa0aa);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.fiv-choice-badge .fa {
  font-size: 29px;
}

@media (max-width: 1023px) {
  .fiv-choice-grid {
    grid-template-columns: 1fr;
  }

  .fiv-choice-grid article.wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .fiv-choice-section {
    padding: 36px 16px 20px;
  }

  .fiv-choice-section>header h2 {
    font-size: 34px;
  }

  .fiv-choice-section>header p {
    font-size: 15px;
  }

  .fiv-choice-heart::before,
  .fiv-choice-heart::after {
    width: 72px;
  }

  .fiv-choice-grid article,
  .fiv-choice-grid article.wide {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px 16px;
    align-items: start;
  }

  .fiv-choice-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    font-size: 30px;
  }

  .fiv-choice-copy h3 {
    font-size: 22px;
    text-align: left;
  }

  .fiv-choice-copy .fiv-line {
    margin: 12px 0;
  }

  .fiv-choice-copy p {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }

  .fiv-choice-badge {
    width: 100%;
    padding: 10px 12px;
  }

  .fiv-choice-badge {
    border-radius: 18px;
    font-size: 13px;
  }
}

.fiv-hero-main {
  width: 78%;
  height: 330px;
  margin-top: 70px;
  object-position: center;
}

.fiv-hero-float {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 220px;
}

.fiv-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 58px;
  padding: 34px 0 92px;
}

.fiv-main-column {
  display: grid;
  gap: 76px;
  min-width: 0;
}

/* Después de Videos relacionados, las secciones vuelven a ocupar las 12 columnas. */
.fiv-full-width-section {
  width: min(1320px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.fiv-full-width-section+.fiv-full-width-section {
  margin-top: 76px;
}

.fiv-layout-expanded {
  padding-bottom: 76px;
}

.fiv-layout-expanded+.fiv-full-width-section {
  margin-top: 0;
}

@media (max-width: 620px) {
  .fiv-full-width-section {
    width: min(100% - 24px, 1320px);
  }

  .fiv-full-width-section+.fiv-full-width-section {
    margin-top: 42px;
  }

  .fiv-layout-expanded {
    padding-bottom: 42px;
  }
}

.fiv-section {
  min-width: 0;
}

.fiv-content,
.fiv-benefits,
.fiv-indications,
.fiv-process,
.fiv-results {
  min-width: 0;
}

.fiv-content h2,
.fiv-indications h2,
.fiv-process h2,
.fiv-results h2 {
  font-size: clamp(42px, 3.7vw, 62px);
  line-height: 1;
  margin-top: 20px;
}

.fiv-benefits h2 {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.02;
}

.fiv-content p,
.fiv-indications>p,
.fiv-process>p,
.fiv-results>p,
.fiv-cta-band p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.center {
  text-align: center;
}

.fiv-wide-img {
  width: 100%;
  height: 300px;
  margin-top: 18px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(13, 59, 115, .12);
}

.fiv-doctor-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid #dfe8f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 59, 115, .08);
}

.fiv-sticky-doctor {
  position: sticky;
  top: 24px;
}

.fiv-doctor-top {
  position: relative;
  min-height: 350px;
  padding: 20px 16px 0;
  background:
    radial-gradient(circle at 100% 76%, rgba(22, 167, 201, .08), transparent 34%),
    linear-gradient(180deg, #fff, var(--soft));
}

.fiv-doctor-top h3 {
  position: relative;
  z-index: 3;
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.fiv-doctor-top h3 span {
  display: block;
  color: var(--teal-dark);
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.fiv-doctor-top ul {
  position: relative;
  z-index: 3;
  width: 54%;
  max-width: 175px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  color: #3d5269;
}

.fiv-doctor-top li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fiv-doctor-top li .fa {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #edf8fc;
  font-size: 15px;
  flex-shrink: 0;
}

.fiv-doctor-top li span {
  flex: 1;
}

.fiv-doctor-top img {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 180px;
  height: auto;
  max-height: 265px;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  pointer-events: none;
}

.fiv-doctor-bottom {
  position: relative;
  padding: 6px 20px;
  text-align: center;
  border-top: 1px solid #dfe8f3;
  background: #fff;
  z-index: 4;
}

.fiv-doctor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fiv-doctor-actions>br {
  display: none !important;
}

.fiv-wa {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #45c454;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(69, 196, 84, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fiv-wa:hover {
  background: #3cb44a;
  transform: scale(1.05);
}

.fiv-doctor-actions .fiv-btn.small {
  flex: 1;
  height: 52px;
  border-radius: 26px;
  background: #009cb9;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 156, 185, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fiv-doctor-actions .fiv-btn.small:hover {
  background: #0087a4;
  transform: translateY(-2px);
}

.fiv-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.fiv-card-grid article {
  min-height: 230px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-content: start;
  gap: 0 24px;
  padding: 32px;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 22px rgba(13, 59, 115, .06);
}

.fiv-card-grid article.wide {
  grid-column: 1 / -1;
  min-height: 150px;
}

.fiv-card-grid article>.fa {
  grid-row: 1 / 4;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #eaf8fc;
  font-size: 36px;
}

.fiv-card-grid h3 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 21px;
  line-height: 1.25;
}

.fiv-card-grid .fiv-line {
  width: 48px;
  height: 3px;
  margin: 12px 0 14px;
}

.fiv-card-grid p {
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

.fiv-cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  gap: 34px;
  min-height: 420px;
  padding: 44px 56px;
  border: 1px solid #dfe8f3;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff 0%, var(--soft) 100%);
  box-shadow: 0 12px 28px rgba(13, 59, 115, .08);
}

.fiv-cta-band h2 {
  max-width: 760px;
  font-size: clamp(44px, 4vw, 66px);
  line-height: .98;
}

.fiv-cta-band img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.fiv-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 9px;
  padding-top: 18px;
  border-top: 1px solid #dbe7f0;
  color: var(--navy);
  font-size: 25px;
  font-weight: 700;
}

.fiv-phone-row .fa {
  color: var(--teal);
  margin-right: 10px;
}

.fiv-script {
  margin-top: 22px;
  color: var(--teal-dark) !important;
  font-family: var(--font-subtitle);
  font-size: 24px !important;
  font-style: italic;
}

.fiv-indications h2,
.fiv-process h2,
.fiv-results h2 {
  text-align: center;
}

.fiv-indications ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.fiv-indications li {
  min-height: 64px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  border: 1px solid #e5ecf3;
  border-radius: 12px;
  background: #fff;
}

.fiv-indications li .fa {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
  border: 1px solid #dfe8f3;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  font-size: 27px;
}

.fiv-indications li span {
  position: relative;
  padding: 0 22px 0 26px;
  color: var(--navy);
  font-weight: 600;
}

.fiv-indications li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--teal);
}

.fiv-steps {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid #dfe8f3;
  border-radius: 10px;
  background: #fff;
}

.fiv-steps article {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr) 330px;
  align-items: center;
  gap: 22px;
  min-height: 128px;
  padding: 14px 16px 14px 28px;
  border-bottom: 1px solid #e9eff5;
}

.fiv-steps article:last-child {
  border-bottom: 0;
}

.fiv-steps b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 20px;
}

.fiv-steps article>.fa {
  color: var(--teal-dark);
  font-size: 48px;
  text-align: center;
}

.fiv-steps h3 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.fiv-steps p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.fiv-steps img {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.fiv-results {
  padding: 36px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(245, 251, 255, .94)),
    url("../images/landing-hero-mother-baby.jpg") right center / auto 100% no-repeat;
  border: 1px solid #e5eef6;
}

.fiv-results-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  margin-top: 26px;
}

.fiv-chart,
.fiv-stat-box {
  border: 1px solid #dfe8f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 22px rgba(13, 59, 115, .07);
}

.fiv-chart {
  padding: 26px 28px 34px;
}

.fiv-chart h3 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 19px;
  margin-bottom: 22px;
}

.chart-bars {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 42px;
  padding: 18px 32px 0;
  margin-bottom: 44px;
  border-left: 2px solid #b8c6d4;
  border-bottom: 2px solid #b8c6d4;
}

.chart-bars div {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-bars span {
  width: 88px;
  display: block;
  border-radius: 8px 8px 0 0;
  background: var(--teal);
}

.chart-bars span.navy {
  background: var(--navy);
}

.chart-bars b {
  position: absolute;
  bottom: calc(var(--bar-bottom, 0px) + 118px);
  color: var(--teal-dark);
  font-size: 28px;
}

.chart-bars div:nth-child(1) b {
  bottom: 122px;
}

.chart-bars div:nth-child(2) b {
  bottom: 188px;
  color: var(--navy);
}

.chart-bars small {
  position: absolute;
  top: 100%;
  width: 180px;
  margin-top: 8px;
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.fiv-stat-box {
  display: grid;
  gap: 0;
  padding: 22px 28px;
}

.fiv-stat-box div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 6px 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d8e7ef;
}

.fiv-stat-box div:last-child {
  border-bottom: 0;
}

.fiv-stat-box .fa {
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 28px;
}

.fiv-stat-box div:nth-child(2) .fa {
  background: var(--navy);
}

.fiv-stat-box strong {
  color: var(--teal-dark);
  font-size: 44px;
  line-height: .9;
}

.fiv-stat-box span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

/* Resultados FIV: gráfico animado y tarjetas con mayor claridad visual. */
.fiv-results {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(22, 167, 201, .13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(241, 249, 253, .96));
  box-shadow: 0 20px 46px rgba(13, 59, 115, .09);
}

.fiv-results::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 28px solid rgba(22, 167, 201, .06);
  border-radius: 50%;
  pointer-events: none;
}

.fiv-results-grid {
  position: relative;
  z-index: 1;
  gap: 22px;
}

.fiv-chart,
.fiv-stat-box {
  border-color: #d7e7ef;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(13, 59, 115, .08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fiv-chart:hover,
.fiv-stat-box:hover {
  border-color: rgba(22, 167, 201, .42);
  box-shadow: 0 22px 42px rgba(13, 59, 115, .13);
  transform: translateY(-4px);
}

.fiv-chart h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.fiv-chart h3::before {
  content: "\f080";
  color: var(--teal-dark);
  font-family: FontAwesome;
  font-size: 20px;
}

.chart-bars {
  position: relative;
  border-color: #b9cbd6;
  background: repeating-linear-gradient(to top, transparent 0 58px, rgba(13, 59, 115, .06) 59px 60px);
}

.chart-bars span {
  position: relative;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 1.25s cubic-bezier(.2, .85, .25, 1);
  background: linear-gradient(180deg, #25b6d2 0%, #079ab9 100%);
  box-shadow: 0 10px 24px rgba(22, 167, 201, .22);
}

.chart-bars div:nth-child(2) span {
  transition-delay: .18s;
}

.chart-bars span.navy {
  background: linear-gradient(180deg, #235a95 0%, #0d3b73 100%);
  box-shadow: 0 10px 24px rgba(13, 59, 115, .23);
}

.fiv-results.is-animated .chart-bars span,
.chart-bars.is-chart-visible span,
.chart-bars div span {
  transform: scaleY(1);
}

.chart-bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .36) 48%, transparent 72%);
  transform: translateX(-120%);
}

.fiv-results.is-animated .chart-bars span::after {
  animation: fivBarShine 1.1s .75s ease-out forwards;
}

.chart-bars b,
.fiv-stat-box strong {
  font-variant-numeric: tabular-nums;
}

.fiv-stat-box div {
  position: relative;
  padding: 24px 4px;
  transition: transform .25s ease;
}

.fiv-stat-box div:hover {
  transform: translateX(5px);
}

.fiv-stat-box .fa {
  box-shadow: 0 10px 22px rgba(22, 167, 201, .22);
  transition: transform .3s ease, box-shadow .3s ease;
}

.fiv-stat-box div:nth-child(2) .fa {
  box-shadow: 0 10px 22px rgba(13, 59, 115, .2);
}

.fiv-results.is-animated .fiv-stat-box .fa {
  animation: fivResultIcon 700ms cubic-bezier(.2, .85, .25, 1) both;
}

.fiv-results.is-animated .fiv-stat-box div:nth-child(2) .fa {
  animation-delay: .18s;
}

@keyframes fivBarShine {
  to {
    transform: translateX(120%);
  }
}

@keyframes fivResultIcon {
  from {
    opacity: 0;
    transform: scale(.55) rotate(-12deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .chart-bars span,
  .fiv-stat-box .fa {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.fiv-section.last {
  margin-bottom: 0;
}

.fiv-section-heading.left {
  margin-bottom: 24px;
}

.fiv-section-heading.left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fiv-section-heading.left span::before {
  content: "\f03d";
  font-family: FontAwesome;
}

.fiv-section-heading.left h2 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: clamp(34px, 3vw, 46px);
}

.fiv-related-videos,
.fiv-testimonials,
.fiv-faq,
.fiv-location {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid #dfe8f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 40px rgba(13, 59, 115, .08);
}

.fiv-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.fiv-video-card {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 20px 38px rgba(13, 59, 115, .18);
}

.fiv-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: .82;
}

.fiv-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 59, 115, .04), rgba(13, 59, 115, .88));
}

.play-button {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(22, 167, 201, .92);
  box-shadow: 0 12px 28px rgba(13, 59, 115, .24);
}

.play-button .fa {
  margin-left: 4px;
  font-size: 26px;
}

.fiv-video-card div {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.fiv-video-card b {
  display: block;
  font-family: var(--font-subtitle);
  font-size: 28px;
  line-height: 1.08;
}

.fiv-video-card small {
  display: block;
  margin-top: 8px;
  color: #dff8ff;
  font-weight: 600;
}

.fiv-video-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 12%, rgba(22, 167, 201, .13), transparent 26%),
    var(--soft);
}

.fiv-video-copy .fa {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 26px;
}

.fiv-video-copy h3 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 28px;
  line-height: 1.12;
}

.fiv-testimonials {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(245, 251, 255, .92), rgba(255, 255, 255, .98)),
    #fff;
}

.fiv-testimonials h2 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: clamp(34px, 3.2vw, 50px);
}

.fiv-testimonials h2 span {
  color: var(--teal-dark);
}

.testimonial-card {
  width: min(100%, 650px);
  margin: 22px auto 28px;
  padding: 30px 34px;
  border: 1px solid #d1e2ed;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  box-shadow: 0 16px 32px rgba(13, 59, 115, .07);
}

.stars {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  margin: 18px 0;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-card b {
  color: var(--teal-dark);
  font-style: italic;
}

.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.testimonial-gallery img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(13, 59, 115, .09);
}

.fiv-faq h2 {
  color: var(--navy);
  text-align: center;
  font-family: var(--font-subtitle);
  font-size: clamp(34px, 3vw, 50px);
}

.faq-list {
  margin-top: 20px;
  border: 1px solid var(--teal);
  border-radius: 10px;
  overflow: hidden;
}

.faq-list details {
  background: #fff;
  border-bottom: 1px solid #8bd1df;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 16px 54px 16px 18px;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 54px 18px 18px;
  color: var(--text);
  line-height: 1.7;
}

.fiv-location {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 36px;
  align-items: stretch;
  background: #ffffff;
  padding: 44px;
  border: 1px solid #dfe8f3;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(13, 59, 115, .06);
  width: min(1320px, calc(100% - 40px));
  margin: 76px auto;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.location-copy>.fa-female,
.location-copy>.fa {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0087a4 !important;
  background: #eef8fc !important;
  font-size: 26px !important;
  margin-bottom: 4px;
}

.location-copy h2 {
  color: var(--navy, #162542);
  font-family: var(--font-subtitle);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.15;
  margin: 0;
}

.location-copy h2 span {
  color: var(--teal-dark, #0087a4);
  display: block;
}

.fiv-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-style: normal;
  margin: 12px 0 20px;
}

.fiv-address .fa {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0087a4;
  background: #eef8fc;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fiv-address b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy, #162542);
  margin-bottom: 4px;
}

.fiv-address em {
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: #0087a4;
  margin-bottom: 6px;
}

.fiv-address small {
  display: block;
  font-size: 15px;
  color: #55687d;
  line-height: 1.4;
}

.location-copy .fiv-btn {
  height: 52px;
  border-radius: 26px;
  background: #009cb9;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  width: max-content;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 156, 185, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.location-copy .fiv-btn:hover {
  background: #0087a4;
  transform: translateY(-2px);
}

.location-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #d5e6f0;
  border-radius: 16px;
  background:
    linear-gradient(112deg, transparent 0 45%, rgba(190, 210, 224, .45) 45% 49%, transparent 49% 100%),
    linear-gradient(172deg, transparent 0 52%, rgba(190, 210, 224, .4) 52% 57%, transparent 57% 100%),
    linear-gradient(90deg, rgba(22, 167, 201, .1) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(rgba(13, 59, 115, .06) 1px, transparent 1px) 0 0 / 60px 60px,
    #edf7fc;
}

.location-map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.location-map::before,
.location-map::after {
  content: "";
  position: absolute;
  background: rgba(13, 59, 115, .08);
  border-radius: 999px;
}

.location-map::before {
  width: 120%;
  height: 22px;
  left: -8%;
  top: 58%;
  transform: rotate(-8deg);
}

.location-map::after {
  width: 22px;
  height: 120%;
  left: 62%;
  top: -10%;
  transform: rotate(8deg);
}

.map-card {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(13, 59, 115, .12);
}

.map-card b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #162542);
}

.map-card span {
  display: block;
  font-size: 14px;
  color: var(--navy, #162542);
  margin-top: 2px;
}

.map-card small {
  display: block;
  margin-top: 8px;
  color: #0087a4;
  font-size: 13.5px;
  font-weight: 700;
}

.map-pin {
  position: absolute;
  left: 60%;
  top: 48%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0087a4;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 135, 164, 0.25);
}

.location-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dfe8f3;
  box-shadow: 0 6px 20px rgba(13, 59, 115, .04);
}

.location-note>.fa {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0087a4;
  background: #eef8fc;
  font-size: 30px;
}

.location-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #55687d;
}

.location-note b {
  display: block;
  font-size: 17px;
  color: var(--navy, #162542);
  margin-bottom: 4px;
}

.location-note ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-note li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy, #162542);
  font-size: 14.5px;
  font-weight: 600;
}

.location-note li .fa-check {
  color: #0087a4;
  font-size: 14px;
}

.location-note li {
  display: flex;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.location-note li::before {
  content: none !important;
}

.ia-hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  gap: 48px;
  align-items: center;
  padding: 56px 72px;
  border: 1px solid #e0edf6;
  background: linear-gradient(135deg, #f5fbff 0%, #fff 82%);
  box-shadow: 0 18px 42px rgba(13, 59, 115, .06);
}

.ia-hero-copy {
  min-width: 0;
}

.ia-page .fiv-main-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
}

.ia-page .fiv-main-column {
  width: 100%;
  max-width: 100%;
}

.ia-hero h1,
.ia-what h2,
.ia-candidates h2,
.ia-soft-cta h2,
.ia-process h2,
.ia-success h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.ia-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 5vw, 78px);
  line-height: .92;
}

.ia-hero h1 span,
.ia-what h2 span,
.ia-candidates h2 span,
.ia-soft-cta h2 span,
.ia-process h2 span,
.ia-success h2 span {
  color: var(--teal-dark);
}

.ia-hero p {
  max-width: 500px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.ia-hero small,
.ia-soft-cta small {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--navy, #162542);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.ia-hero small .fa-shield,
.ia-soft-cta small .fa-shield,
.ia-hero small .fa,
.ia-soft-cta small .fa {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0087a4 !important;
  background: #eef8fc !important;
  font-size: 24px !important;
  flex-shrink: 0;
}

.ia-hero small span,
.ia-soft-cta small span {
  min-width: 0;
  line-height: 1.4;
}

.ia-hero-media,
.ia-hero>p:has(> img) {
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: center;
}

.ia-hero img,
.ia-hero-media img,
.ia-hero>p:has(> img) img {
  display: block;
  width: 100%;
  height: clamp(430px, 36vw, 540px);
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(13, 59, 115, .14);
}

.ia-hero .fiv-btn {
  margin-top: 10px;
  margin-bottom: 22px;
}

.ia-hero small {
  margin-top: 0;
}

.ia-what {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(420px, 1.12fr);
  gap: 68px;
  align-items: center;
  padding: 64px 48px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(245, 251, 255, .98) 0%, rgba(255, 255, 255, .96) 100%),
    radial-gradient(circle at 0 50%, rgba(22, 167, 201, .08), transparent 34%);
}

.ia-what h2,
.ia-candidates h2,
.ia-soft-cta h2,
.ia-process h2,
.ia-success h2 {
  margin: 0;
  font-size: clamp(39px, 4.8vw, 16px);
  line-height: .98;
}

.ia-what .fiv-line.heart,
.ia-candidates .fiv-line.heart,
.ia-soft-cta .fiv-line.heart {
  margin-top: 20px;
  margin-bottom: 28px;
}

.ia-what-copy article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 36px;
}

.ia-what-copy article .fa,
.ia-candidates li .fa {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 32px;
  box-shadow: inset 0 0 0 1px #d9edf6;
}

.ia-what-copy article p {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid #c9e3ee;
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
}

.ia-what-copy b,
.ia-candidates b,
.ia-soft-cta b,
.ia-success b {
  color: var(--teal-dark);
}

.ia-what-media {
  position: relative;
  min-height: 690px;
}

.ia-what-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 18px 40px rgba(13, 59, 115, .12);
}

.ia-what-media div {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: -14px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 30px;
  border: 1px solid #dcecf4;
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(13, 59, 115, .12);
}

.ia-what-media div .fa {
  grid-row: span 2;
  color: var(--teal-dark);
  font-size: 42px;
}

.ia-what-media div b,
.ia-what-media div span {
  display: block;
}

.ia-candidates ul {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ia-candidates li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 108px;
  padding: 20px 0;
  border-bottom: 1px solid #dbe8f1;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.ia-soft-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
  padding: 58px 70px;
  border: 1px solid #dcecf4;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef8fe 0%, #f9fdff 100%);
  box-shadow: 0 18px 36px rgba(13, 59, 115, .08);
}

.ia-soft-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
}

.ia-soft-cta .fiv-btn {
  margin-top: 24px;
  margin-bottom: 22px;
}

.ia-soft-cta small {
  margin-top: 0;
}

.ia-mother-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  justify-self: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(22, 167, 201, .08);
}

.ia-mother-illustration::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 4px solid rgba(22, 167, 201, .72);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
}

.ia-mother-illustration .fa-female {
  position: relative;
  z-index: 1;
  font-size: 138px;
}

.ia-mother-illustration .fa-circle-o {
  position: absolute;
  z-index: 2;
  right: 76px;
  bottom: 90px;
  color: var(--teal-dark);
  font-size: 70px;
  background: #e8f6fb;
  border-radius: 50%;
}

.ia-mother-illustration .fa-heart-o {
  position: absolute;
  top: 48px;
  right: 48px;
  color: rgba(22, 167, 201, .28);
  font-size: 34px;
}

.ia-process {
  padding-top: 18px;
}

.ia-process>p,
.ia-success>p {
  max-width: 880px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.ia-process-list {
  margin-top: 28px;
  border: 1px solid #dcecf4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.ia-process-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #e0e9f2;
}

.ia-process-list article:last-child {
  border-bottom: 0;
}

.ia-process-list article>b {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.ia-process-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.ia-process-list p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.ia-process-list img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.ia-success {
  padding: 30px 0 10px;
}

.ia-success-chart {
  max-width: 960px;
  margin: 26px auto 22px;
  padding: 26px 34px 34px;
  border: 1px solid #dcecf4;
  border-radius: 12px;
  background: #f8fcff;
  box-shadow: 0 10px 24px rgba(13, 59, 115, .06);
}

.ia-success-chart h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  text-align: center;
}

.ia-success-chart>div {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 300px;
  padding: 38px 28px 42px 70px;
  border-left: 2px solid #9fb8cc;
  border-bottom: 2px solid #9fb8cc;
  background: repeating-linear-gradient(to top, transparent 0 58px, rgba(13, 59, 115, .09) 59px 60px);
}

.ia-success-chart span {
  position: relative;
  width: 108px;
  min-height: 34px;
  display: flex;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  background: var(--teal-dark);
}

.ia-success-chart span b {
  position: absolute;
  top: -42px;
  color: var(--teal-dark);
  font-size: 26px;
}

.ia-success-chart span small {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 160px;
  transform: translateX(-50%);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.ia-centered-btn,
.ia-note {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.ia-note {
  margin-top: 12px;
  color: var(--muted);
}

.ia-faq summary {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
}

.ia-faq summary .fa {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
}

.icsi-page .fiv-main-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
}

.icsi-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: 64px;
  align-items: center;
  padding: 66px 72px;
  border: 1px solid #e0edf6;
  background: linear-gradient(135deg, #f5fbff 0%, #fff 88%);
  box-shadow: 0 18px 42px rgba(13, 59, 115, .06);
}

.icsi-hero h1,
.icsi-intro h2,
.icsi-indications h2,
.icsi-process h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.icsi-hero h1 {
  font-size: clamp(56px, 5.2vw, 86px);
  line-height: .94;
}

.icsi-hero h1 span,
.icsi-intro h2 span,
.icsi-indications h2 span,
.icsi-process h2 span {
  color: var(--teal-dark);
}

.icsi-hero p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

.icsi-hero b,
.icsi-intro b,
.icsi-indications b,
.icsi-cta b {
  color: var(--teal-dark);
}

.icsi-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(13, 59, 115, .14);
}

.icsi-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 32px;
  border-top: 0;
}

.icsi-hero-features span {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid #cbdde9;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.icsi-hero-features span:last-child {
  border-right: 0;
}

.icsi-hero-features .fa {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 38px;
}

.icsi-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 56px;
  align-items: center;
  padding: 36px 0 20px;
}

.icsi-intro h2 {
  font-size: clamp(52px, 4.8vw, 76px);
  line-height: 1;
}

.icsi-intro p {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.78;
}

.icsi-intro img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: center;
  justify-self: center;
  object-fit: cover;
  object-position: center center;
  padding: 10px;
  border: 1px solid #dcebf3;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f3fbfe);
  box-shadow: 0 20px 44px rgba(13, 59, 115, .14);
}

.icsi-indications {
  padding-top: 18px;
}

.icsi-indications h2 {
  font-size: clamp(48px, 4.4vw, 70px);
  line-height: 1.02;
}

.icsi-indications>p {
  margin: 22px 0 26px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.6;
}

.icsi-indications ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icsi-indications li {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 136px;
  padding: 22px 0;
  border-bottom: 1px solid #d9e7f0;
}

.icsi-indications li .fa,
.icsi-indications li img {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #f3fbff;
  border: 1px solid #d7eaf4;
  box-sizing: border-box;
}

.icsi-indications li .fa {
  font-size: 42px;
}

.icsi-indications li img {
  object-fit: contain;
  object-position: center;
  padding: 16px;
}

.icsi-indications li span {
  padding-left: 28px;
  border-left: 2px solid #c5dfeb;
}

.icsi-indications li b,
.icsi-indications li small {
  display: block;
}

.icsi-indications li b {
  color: var(--navy);
  font-size: 25px;
}

.icsi-indications li small {
  margin-top: 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.45;
}

.icsi-process h2 {
  font-size: clamp(48px, 4.4vw, 70px);
  line-height: .98;
}

.icsi-process-list {
  margin-top: 26px;
  border-top: 1px solid #d7e4ee;
}

.icsi-process-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d7e4ee;
}

.icsi-process-list article>b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
}

.icsi-process-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
}

.icsi-process-list p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.icsi-process-list img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1350px) {
  .fiv-hero {
    padding: 52px 48px;
    gap: 42px;
  }

  .fiv-main-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
  }

  .fiv-doctor-top {
    min-height: 344px;
    padding: 24px 24px 0;
  }

  .fiv-doctor-top h3 {
    font-size: 20px;
  }

  .fiv-doctor-top ul {
    max-width: 176px;
    font-size: 10.5px;
    gap: 13px;
  }

  .fiv-doctor-top img {
    width: 52%;
    max-height: 250px;
    right: -10px;
  }

  .fiv-steps article {
    grid-template-columns: 50px 70px minmax(0, 1fr) 250px;
  }

  .ia-hero {
    grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
    padding: 48px;
    gap: 44px;
  }

  .icsi-hero {
    padding: 54px 48px;
    gap: 44px;
  }

  .icsi-page .fiv-main-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
  }

  .icsi-process-list article {
    grid-template-columns: 52px minmax(0, 1fr) 250px;
  }

  .ia-process-list article {
    grid-template-columns: 58px minmax(0, 1fr) 280px;
  }
}

@media (max-width: 1023px) {

  .fiv-hero,
  .fiv-main-layout,
  .fiv-cta-band,
  .ia-hero,
  .icsi-hero,
  .icsi-intro,
  .ia-what,
  .ia-soft-cta {
    grid-template-columns: 1fr;
  }

  .icsi-page .fiv-main-layout {
    grid-template-columns: 1fr;
  }

  .icsi-hero img {
    height: 360px;
  }

  .icsi-process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .icsi-process-list img {
    grid-column: 2;
  }

  .ia-hero img,
  .ia-hero .ia-hero-media img,
  .ia-hero>p:has(> img) img {
    height: 340px;
  }

  .ia-hero-media,
  .ia-hero>p:has(> img) {
    grid-column: 1;
  }

  .ia-what-media {
    min-height: 520px;
  }

  .ia-what-media img {
    height: 500px;
  }

  .ia-soft-cta {
    grid-template-columns: 1fr 240px;
  }

  .ia-mother-illustration {
    width: 220px;
    height: 220px;
  }

  .ia-mother-illustration .fa-female {
    font-size: 104px;
  }

  .ia-mother-illustration .fa-circle-o {
    right: 50px;
    bottom: 62px;
    font-size: 54px;
  }

  .ia-process-list article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .ia-process-list img {
    grid-column: 2;
  }

  .fiv-hero-media {
    min-height: 330px;
  }

  .fiv-sticky-doctor {
    position: static;
    order: -1;
  }

  .fiv-doctor-top {
    min-height: 390px;
  }

  .fiv-doctor-top ul {
    max-width: 58%;
  }

  .fiv-doctor-top img {
    width: 38%;
    max-height: 270px;
    right: 0;
  }

  .fiv-steps article {
    grid-template-columns: 50px 70px minmax(0, 1fr);
  }

  .fiv-steps img {
    grid-column: 3;
    height: 150px;
  }

  .fiv-results-grid {
    grid-template-columns: 1fr;
  }

  .fiv-video-grid,
  .fiv-location,
  .location-note {
    grid-template-columns: 1fr;
  }

  .testimonial-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-note {
    align-items: start;
  }
}

/* FIV page: balanced consultation and location cards. */
.fiv-standard-page .fiv-cta-band p,
.fiv-standard-page .fiv-location p,
.fiv-standard-page .fiv-address {
  text-align: left;
  text-justify: auto;
  hyphens: none;
  word-spacing: normal;
}

@media (min-width: 1024px) {
  .fiv-standard-page .fiv-cta-band {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 0;
    min-height: 480px;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff 0%, #f2faff 100%);
    box-shadow: 0 18px 42px rgba(13, 59, 115, .1);
  }

  .fiv-standard-page .fiv-cta-band>div {
    position: relative;
    z-index: 1;
    padding: 36px 32px 32px;
  }

  .fiv-standard-page .fiv-cta-band h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(37px, 2.9vw, 46px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .fiv-standard-page .fiv-cta-band p:not(.fiv-script) {
    max-width: 520px;
    line-height: 1.65;
    text-wrap: pretty;
  }

  .fiv-standard-page .fiv-cta-band img {
    min-height: 480px;
    border-radius: 0;
    object-position: 28% center;
  }

  .fiv-standard-page .fiv-location {
    grid-template-columns: minmax(290px, .95fr) minmax(350px, 1.05fr);
    gap: 24px;
    padding: 34px;
    border: 1px solid #dceaf2;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(13, 59, 115, .07);
  }

  .fiv-standard-page .location-copy {
    gap: 14px;
    padding: 8px 4px;
  }

  .fiv-standard-page .location-copy>.fa {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    font-size: 30px;
  }

  .fiv-standard-page .location-copy h2 {
    max-width: 390px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(35px, 2.7vw, 43px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .fiv-standard-page .fiv-address {
    font-size: 16px;
  }

  .fiv-standard-page .fiv-address small {
    font-size: 16px;
  }

  .fiv-standard-page .location-map {
    min-height: 390px;
  }

  .fiv-standard-page .location-note {
    padding: 24px 28px;
  }
}

@media (max-width: 700px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .fiv-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .main-nav {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    overflow: hidden;
  }

  .nav-link {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fiv-page,
  .fiv-page .wrap,
  .fiv-hero,
  .ia-hero,
  .ovo-hero,
  .fiv-main-layout,
  .fiv-main-column,
  .fiv-section,
  .fiv-doctor-card,
  .fiv-cta-band {
    max-width: 100%;
    min-width: 0;
  }

  .fiv-page * {
    min-width: 0;
  }

  .ia-page p,
  .ia-page li,
  .ia-page small,
  .ia-page span,
  .ia-page b,
  .ia-page h1,
  .ia-page h2,
  .ia-page h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .ia-page .fiv-main-column,
  .ia-page .fiv-section,
  .ia-page .ia-hero,
  .ia-page .ia-what,
  .ia-page .ia-candidates,
  .ia-page .ia-soft-cta,
  .ia-page .ia-process,
  .ia-page .ia-success,
  .ovo-page .fiv-main-column,
  .ovo-page .fiv-section,
  .ovo-page .ovo-hero,
  .ovo-page .ovo-explain,
  .ovo-page .ovo-candidates,
  .ovo-page .ovo-process,
  .ovo-page .ovo-results,
  .ropa-intro,
  .ropa-needs,
  .ropa-process,
  .ropa-consult,
  .ropa-consult-copy {
    overflow: hidden;
  }

  .site-header .wrap,
  .fiv-page .wrap {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
  }

  .fiv-breadcrumb {
    padding-top: 18px;
  }

  .fiv-hero {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 34px 18px;
    overflow: hidden;
  }

  .fiv-hero>* {
    width: 100%;
    max-width: 100%;
  }

  .fiv-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .fiv-hero h1,
  .fiv-content h2,
  .fiv-indications h2,
  .fiv-process h2,
  .fiv-results h2,
  .fiv-testimonials h2,
  .fiv-faq h2,
  .location-copy h2,
  .fiv-cta-band h2,
  .ia-hero h1,
  .icsi-hero h1,
  .icsi-intro h2,
  .icsi-indications h2,
  .icsi-process h2,
  .ia-what h2,
  .ia-candidates h2,
  .ia-soft-cta h2,
  .ia-process h2,
  .ia-success h2,
  .ovo-hero h1,
  .ovo-explain h2,
  .ovo-candidates h2,
  .ovo-process h2,
  .ovo-results h2,
  .ropa-consult-copy h2 {
    font-size: 36px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .ia-hero {
    padding: 34px 18px;
    gap: 28px;
  }

  .ia-hero img,
  .ia-hero .ia-hero-media img,
  .ia-hero>p:has(> img) img {
    height: 240px;
  }

  .ia-hero p,
  .icsi-hero p,
  .icsi-intro p,
  .icsi-indications>p,
  .ia-soft-cta p,
  .ia-process>p,
  .ia-success>p {
    font-size: 15px;
  }

  .icsi-hero {
    padding: 34px 18px;
    gap: 28px;
  }

  .icsi-hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
  }

  .icsi-hero-features span {
    grid-template-columns: 56px 1fr;
    justify-items: start;
    align-items: center;
    border-right: 0;
    text-align: left;
  }

  .icsi-hero-features .fa {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .icsi-hero img,
  .icsi-intro img {
    height: 240px;
  }

  .icsi-indications li {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    min-height: 0;
  }

  .icsi-indications li .fa,
  .icsi-indications li img {
    width: 54px;
    height: 54px;
  }

  .icsi-indications li .fa {
    font-size: 24px;
  }

  .icsi-indications li img {
    padding: 9px;
  }

  .icsi-indications li span {
    padding-left: 14px;
  }

  .icsi-indications li b {
    font-size: 17px;
  }

  .icsi-indications li small {
    font-size: 14px;
  }

  .icsi-process-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .icsi-process-list img {
    grid-column: 1 / -1;
    height: 150px;
  }

  .ia-what {
    padding: 28px 18px;
    gap: 28px;
  }

  .ia-what-copy article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .ia-what-copy article .fa,
  .ia-candidates li .fa {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .ia-what-media {
    min-height: 360px;
  }

  .ia-what-media img {
    height: 340px;
    border-radius: 12px;
  }

  .ia-what-media div {
    left: 14px;
    right: 14px;
    padding: 16px;
  }

  .ia-candidates li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    min-height: 0;
    font-size: 15px;
  }

  .ia-soft-cta {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .ia-mother-illustration {
    width: 180px;
    height: 180px;
  }

  .ia-mother-illustration .fa-female {
    font-size: 86px;
  }

  .ia-mother-illustration .fa-circle-o {
    right: 42px;
    bottom: 52px;
    font-size: 44px;
  }

  .ia-process-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .ia-process-list h3 {
    font-size: 22px;
  }

  .ia-process-list img {
    grid-column: 1 / -1;
    height: 150px;
  }

  .ia-success-chart {
    padding: 22px 16px 32px;
  }

  .ia-success-chart>div {
    height: 250px;
    padding-left: 22px;
    padding-right: 12px;
  }

  .ia-success-chart span {
    width: 58px;
  }

  .ia-success-chart span small {
    width: 88px;
    font-size: 10px;
  }

  .ia-faq summary {
    grid-template-columns: 38px 1fr;
  }

  .fiv-hero-media {
    min-height: 280px;
    overflow: hidden;
  }

  .fiv-hero-main {
    width: 100%;
    height: 240px;
    margin-top: 40px;
  }

  .fiv-hero-float {
    width: 42%;
    max-width: 132px;
    height: 120px;
    right: 0;
  }

  .fiv-doctor-card {
    overflow: hidden;
  }

  .fiv-doctor-top {
    overflow: hidden;
  }

  .fiv-doctor-top li {
    overflow-wrap: break-word;
  }

  .fiv-main-layout {
    padding: 28px 0 56px;
  }

  .fiv-main-column {
    gap: 48px;
  }

  .fiv-content h2 {
    margin-top: 18px;
  }

  .fiv-card-grid,
  .fiv-results-grid {
    grid-template-columns: 1fr;
  }

  .fiv-related-videos,
  .fiv-testimonials,
  .fiv-faq,
  .fiv-location {
    padding: 24px 16px;
  }

  .fiv-video-card {
    min-height: 280px;
  }

  .fiv-video-card b {
    font-size: 24px;
  }

  .fiv-video-copy {
    padding: 22px;
  }

  .testimonial-card {
    padding: 24px 18px;
  }

  .testimonial-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .testimonial-gallery img {
    height: 110px;
  }

  .faq-list summary {
    padding: 14px 44px 14px 14px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 0 16px 16px 14px;
    font-size: 14px;
  }

  .location-map {
    min-height: 300px;
  }

  .map-card {
    left: 14px;
    right: 14px;
    top: 14px;
  }

  .map-pin {
    left: 50%;
    top: 50%;
    font-size: 72px;
  }

  .location-note {
    padding: 20px 16px;
  }

  .fiv-card-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .fiv-cta-band {
    padding: 28px 18px;
  }

  .fiv-phone-row {
    font-size: 20px;
  }

  .fiv-doctor-top {
    min-height: 520px;
  }

  .fiv-doctor-top ul {
    max-width: 100%;
  }

  .fiv-doctor-top img {
    width: 60%;
    max-height: 260px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .fiv-doctor-actions {
    width: 100%;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: stretch;
  }

  .fiv-doctor-actions .fiv-wa {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    padding: 0;
    justify-self: start;
  }

  .fiv-doctor-actions .fiv-btn.small {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    justify-self: stretch;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .fiv-indications li {
    grid-template-columns: 58px 1fr;
    min-height: 74px;
  }

  .fiv-indications li .fa {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .fiv-indications li span {
    padding: 12px 14px 12px 20px;
    font-size: 14px;
  }

  .fiv-steps article {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
    padding: 18px;
  }

  .fiv-steps article>.fa {
    display: none;
  }

  .fiv-steps article div {
    grid-column: 2;
  }

  .fiv-steps img {
    grid-column: 1 / -1;
    height: 150px;
  }

  .chart-bars {
    gap: 20px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .chart-bars span {
    width: 64px;
  }
}

.ovo-page .fiv-main-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
}

.ovo-hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
  padding: 64px 68px;
  border: 1px solid #dcecf4;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 251, 255, .98), rgba(255, 255, 255, .96)),
    radial-gradient(circle at 100% 18%, rgba(22, 167, 201, .12), transparent 28%);
  box-shadow: 0 14px 34px rgba(13, 59, 115, .06);
}

.ovo-hero h1,
.ovo-explain h2,
.ovo-candidates h2,
.ovo-process h2,
.ovo-results h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

.ovo-hero h1 {
  font-size: clamp(52px, 2.7vw, 78px);
  margin: 0 0 26px;
}

/* Ovodonación necesita una escala propia para conservar líneas equilibradas. */
.ovo-page:not(.genetic-page):not(.ropa-page) .ovo-hero h1 {
  font-size: clamp(52px, 2.7vw, 78px);
  line-height: 1.02;
}

.ovo-hero h1 span,
.ovo-explain h2 span,
.ovo-candidates h2 span,
.ovo-process h2 span,
.ovo-results h2 span,
.fiv-faq h2 span {
  color: var(--teal-dark);
}

.ovo-hero p {
  max-width: 620px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.75;
  margin: 0 0 34px;
}

.ovo-hero p b,
.ovo-info-list b,
.ovo-candidates b,
.ovo-results b {
  color: var(--teal-dark);
}

.ovo-hero img {
  width: 100%;
  height: 430px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 34px rgba(13, 59, 115, .12);
}

.ovo-explain,
.ovo-candidates,
.ovo-process,
.ovo-results {
  min-width: 0;
}

.ovo-explain h2,
.ovo-candidates h2,
.ovo-process h2,
.ovo-results h2 {
  font-size: clamp(42px, 3.7vw, 62px);
  margin: 0 0 18px;
}

.ovo-info-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid #d7e8f0;
}

.ovo-info-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #d7e8f0;
}

.ovo-info-list .fa,
.ovo-candidates li .fa {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6edf6;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #eef8fc;
  font-size: 32px;
}

.ovo-info-list .ovo-info-icon {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.ovo-candidates .ovo-beneficiary-icon {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.ovo-info-list p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.ovo-candidates ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d7e8f0;
}

.ovo-candidates li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 118px;
  padding: 24px 0;
  border-bottom: 1px solid #d7e8f0;
}

.ovo-candidates li>span {
  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}

.ovo-cta {
  border-color: #d7e8f0;
  box-shadow: 0 14px 34px rgba(13, 59, 115, .06);
}

.ovo-process-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid #d7e8f0;
}

.ovo-process-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 270px;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #d7e8f0;
}

.ovo-process-list article>b {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #eef8fc;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.ovo-process-list h3 {
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 8px;
}

.ovo-process-list p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.ovo-process-list img {
  width: 100%;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(13, 59, 115, .08);
}

.ovo-results p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.ovo-chart-card {
  margin-top: 28px;
  padding: 24px 28px 30px;
  border: 1px solid #d7e8f0;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fcff);
  box-shadow: 0 12px 28px rgba(13, 59, 115, .08);
}

.ovo-chart-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  padding: 8px 20px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--teal-dark);
  font-family: var(--font-subtitle);
  font-size: 20px;
  line-height: 1.2;
}

.ovo-chart {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: end;
  height: 270px;
  padding: 20px 26px 34px 46px;
  border-left: 2px solid #b8c8d8;
  border-bottom: 2px solid #b8c8d8;
  background: repeating-linear-gradient(to top, transparent 0 52px, rgba(13, 59, 115, .08) 53px);
}

.ovo-chart span {
  position: relative;
  width: 96px;
  height: var(--h);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #21b6d0, #0e8eae);
}

.ovo-chart span:nth-child(3) {
  background: linear-gradient(180deg, #25bed8, #1297b7);
}

.ovo-chart b {
  position: absolute;
  top: -44px;
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
}

.ovo-chart small {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 130px;
  transform: translateX(-50%);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.ovo-chart-card strong {
  display: block;
  margin-top: 38px;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
}

.genetic-hero {
  background:
    linear-gradient(135deg, rgba(245, 251, 255, .99), rgba(255, 255, 255, .96)),
    radial-gradient(circle at 0 8%, rgba(22, 167, 201, .08), transparent 26%);
}

.genetic-hero h1 {
  font-size: clamp(58px, 5vw, 65px);
  line-height: .96;
}

.genetic-hero img {
  object-position: center 42%;
}

.genetic-intro {
  padding: 12px 0 0;
}

.genetic-intro p {
  max-width: 920px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.genetic-intro b,
.genetic-benefits b,
.genetic-candidates b {
  color: var(--teal-dark);
}

.genetic-candidates li {
  min-height: 108px;
}

.genetic-candidates li>span {
  font-size: 22px;
}

.genetic-process .ovo-process-list article {
  grid-template-columns: 58px minmax(0, 1fr) 300px;
  padding: 28px 0;
}

.genetic-process .ovo-process-list img {
  height: 150px;
}

.genetic-benefits {
  display: grid;
  gap: 28px;
}

.genetic-benefits-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.genetic-benefits h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(42px, 3.7vw, 62px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 18px;
}

.genetic-benefits h2 span {
  color: var(--teal-dark);
}

.genetic-benefits-head p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.genetic-benefits-head img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(13, 59, 115, .1);
}

.genetic-benefit-list {
  display: grid;
  gap: 12px;
}

.genetic-benefit-list article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(215, 232, 240, .82);
  border-radius: 6px;
  background: linear-gradient(90deg, #f6fbff, #fff);
}

.genetic-benefit-list .fa {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6edf6;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #eef8fc;
  font-size: 28px;
}

.genetic-benefit-list b {
  display: block;
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.genetic-benefit-list p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.ropa-hero h1 {
  font-size: clamp(58px, 5vw, 86px);
}

.ropa-hero img {
  object-position: center 38%;
}

.ropa-intro p,
.ropa-needs>p {
  color: var(--text);
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.ropa-intro b,
.ropa-needs b,
.ropa-process b {
  color: var(--teal-dark);
}

.ropa-wide-img {
  width: 100%;
  height: 500px;
  margin-top: 24px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(13, 59, 115, .1);
}

.ropa-needs .ropa-wide-img {
  height: 500px;
  margin-top: 34px;
}

.ropa-needs li {
  min-height: 126px;
}

.ropa-needs li>span {
  font-size: 21px;
}

.ropa-process .ovo-process-list article {
  grid-template-columns: 58px minmax(0, 1fr) 310px;
  padding: 30px 0;
}

.ropa-process .ovo-process-list h3 {
  font-size: 26px;
}

.ropa-process .ovo-process-list p {
  font-size: 16px;
  line-height: 1.65;
}

.ropa-process .ovo-process-list img {
  height: 150px;
}

.ropa-consult {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid #d7e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 59, 115, .08);
}

.ropa-consult-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.ropa-consult-media::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -16px;
  width: 72px;
  height: 120%;
  border-right: 5px solid rgba(22, 167, 201, .8);
  border-radius: 50%;
}

.ropa-consult-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.ropa-consult-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 48px;
  background: linear-gradient(135deg, #fff, #f5fbff);
}

.ropa-consult-copy>img {
  width: 180px;
  height: auto;
}

.ropa-consult-copy h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.ropa-consult-copy h2 span {
  color: var(--teal-dark);
}

.ropa-consult-copy p {
  max-width: 640px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.ropa-consult-copy .fiv-phone-row {
  margin: 4px 0 8px;
}

.ropa-consult-copy .fiv-btn {
  width: max-content;
}

.contact-page {
  background:
    linear-gradient(180deg, #fff 0%, #f5fbff 42%, #fff 100%);
  padding: 30px 0 76px;
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: .76fr 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dbeaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13, 59, 115, .1);
}

.contact-hero-photo {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 0;
  overflow: hidden;
}

.contact-hero-photo::after {
  content: "";
  position: absolute;
  top: -14%;
  right: -48px;
  z-index: 2;
  width: 126px;
  height: 128%;
  border-left: 4px solid var(--teal-dark);
  border-radius: 50%;
}

.contact-hero-photo::before {
  content: "\f08a";
  position: absolute;
  right: 18px;
  bottom: 86px;
  z-index: 2;
  color: var(--teal-dark);
  font-family: FontAwesome;
  font-size: 42px;
}

.contact-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-form-card {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  padding: 48px 62px 0;
  background: #fff;
}

.contact-form-card>img {
  width: 250px;
  max-width: 62%;
  height: auto;
  margin-bottom: 18px;
}

.contact-form-card h1,
.contact-map-copy h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(40px, 3.8vw, 60px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.contact-form-card h1 span,
.contact-map-copy h2 span {
  color: var(--teal-dark);
}

.contact-form-card p {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.contact-call-row {
  display: grid;
  grid-template-columns: 48px minmax(112px, auto) auto 1px auto;
  align-items: center;
  gap: 8px 14px;
  margin: 6px 0 18px;
  color: var(--text);
}

.contact-call-row .fa {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 23px;
}

.contact-call-row span {
  width: auto;
  max-width: none;
  font-size: 12px;
}

.contact-call-row b {
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.contact-call-row em {
  width: 1px;
  height: 28px;
  background: #c8d7e3;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.contact-fields label {
  grid-column: span 2;
  position: relative;
  min-height: 42px;
  margin: 0;
}

.contact-fields label:nth-child(4),
.contact-fields label:nth-child(5) {
  grid-column: span 3;
}

.contact-fields label.wide {
  grid-column: 1 / -1;
}

.contact-fields .fa {
  position: absolute;
  left: 14px;
  top: 13px;
  color: #9fb1c1;
  font-size: 16px;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7e2ec;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}

.contact-fields input,
.contact-fields textarea {
  padding: 10px 12px 10px 38px;
}

.contact-fields select {
  padding: 10px 12px;
}

.contact-fields textarea {
  height: 72px;
  resize: vertical;
}

.contact-form-card .fiv-btn.small {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-top: 12px;
  padding: 12px 24px;
  font-size: 14px;
}

.contact-offer {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 62px minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 14px;
  align-items: center;
  align-self: end;
  width: auto;
  margin: 24px 40px 22px 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #eaf7fb;
  box-shadow: 0 12px 26px rgba(13, 59, 115, .08);
}

.contact-offer>.fa {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 28px;
}

.contact-offer p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.contact-offer p+p {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  border-left: 1px solid #b8ccd8;
}

.contact-offer p+p .fa {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  font-size: 22px;
}

.contact-offer span {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-offer b {
  display: block;
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-size: 19px;
  line-height: 1.08;
}

.contact-map-section {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: stretch;
  overflow: hidden;
  margin-top: 64px;
  border-radius: 18px;
  background: #eef8fc;
  box-shadow: 0 18px 42px rgba(13, 59, 115, .08);
}

.contact-map-copy {
  display: grid;
  align-content: center;
  padding: 74px 72px;
  background:
    radial-gradient(circle at -12% 82%, rgba(22, 167, 201, .18), transparent 36%),
    linear-gradient(135deg, #f5fbff, #fff);
}

.contact-map-copy h2 {
  font-size: clamp(44px, 4.2vw, 66px);
}

.contact-map-copy .fiv-line {
  margin: 10px 0 28px;
}

.contact-map-copy address {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  align-items: start;
  margin: 0 0 32px;
  color: var(--text);
  font-style: normal;
  font-size: 22px;
  line-height: 1.45;
}

.contact-map-copy address>.fa {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 59, 115, .13);
  font-size: 34px;
}

.contact-map-copy address b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-map-copy address em {
  display: block;
  margin-top: 10px;
  color: #7c8896;
  font-style: normal;
}

.contact-map-frame {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(24deg, transparent 0 42%, rgba(13, 59, 115, .12) 42% 45%, transparent 45% 100%),
    linear-gradient(156deg, transparent 0 54%, rgba(13, 59, 115, .1) 54% 57%, transparent 57% 100%),
    linear-gradient(92deg, transparent 0 32%, rgba(22, 167, 201, .16) 32% 34%, transparent 34% 100%),
    linear-gradient(0deg, rgba(13, 59, 115, .07) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(90deg, rgba(13, 59, 115, .07) 1px, transparent 1px) 0 0 / 74px 74px,
    #eef7fb;
}

.contact-map-frame::before,
.contact-map-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(13, 59, 115, .12);
}

.contact-map-frame::before {
  width: 120%;
  height: 34px;
  left: -12%;
  top: 54%;
  transform: rotate(-11deg);
}

.contact-map-frame::after {
  width: 34px;
  height: 120%;
  left: 58%;
  top: -10%;
  transform: rotate(8deg);
}

.contact-map-frame iframe {
  display: none;
}

.contact-map-card {
  position: absolute;
  left: 50%;
  top: 28%;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 12px;
  min-width: 278px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  box-shadow: 0 16px 34px rgba(13, 59, 115, .2);
  transform: translate(-50%, -50%);
}

.contact-map-card::after {
  content: "\f041";
  position: absolute;
  left: 50%;
  top: 100%;
  color: var(--navy);
  font-family: FontAwesome;
  font-size: 70px;
  line-height: 1;
  filter: drop-shadow(0 12px 18px rgba(13, 59, 115, .26));
  transform: translate(-50%, 18px);
}

.contact-map-card .fa {
  grid-row: span 2;
  color: var(--teal-dark);
  font-size: 42px;
}

.contact-map-card b {
  color: var(--navy);
  line-height: 1.2;
}

.contact-map-card span {
  font-size: 13px;
  line-height: 1.35;
}

.contact-reviews {
  margin-top: 64px;
  padding-bottom: 20px;
}

.contact-review-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-review-grid article {
  padding: 32px 34px;
  border: 1px solid #dbe7f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 59, 115, .08);
}

.contact-review-grid .stars {
  color: var(--teal-dark);
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
}

.contact-review-grid p {
  position: relative;
  min-height: 118px;
  margin: 18px 0 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.contact-review-grid p::before {
  content: "\f10d";
  color: var(--teal-dark);
  font-family: FontAwesome;
  font-size: 22px;
  margin-right: 8px;
}

.contact-review-grid b,
.contact-review-grid span {
  display: block;
}

.contact-review-grid b {
  color: var(--navy);
  font-size: 17px;
}

.contact-review-grid span {
  color: #758293;
}

.contact-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
  border: 1px solid #dbe7f0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.contact-trust-strip span {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

.contact-trust-strip span:not(:last-child) {
  border-right: 1px solid #dbe7f0;
}

.contact-trust-strip .fa {
  color: var(--teal-dark);
  font-size: 38px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}

.contact-actions .whatsapp {
  background: linear-gradient(135deg, #22c1a8, #17a7c9);
}

@media (max-width: 1280px) {
  .ovo-page .fiv-main-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
  }

  .ovo-hero {
    padding: 54px 48px;
    gap: 44px;
  }

  .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr) 250px;
  }

  .genetic-process .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr) 260px;
  }

  .ropa-process .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr) 260px;
  }

  .contact-form-card {
    padding: 56px 48px 0;
  }

  .contact-offer {
    width: auto;
    margin: 22px 32px 22px 40px;
    padding: 12px 18px;
  }

  .contact-map-copy {
    padding: 62px 54px;
  }
}

@media (max-width: 1023px) {

  .ovo-page .fiv-main-layout,
  .ovo-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-map-section {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: auto;
    grid-template-rows: auto;
  }

  .contact-hero-photo {
    grid-row: auto;
    min-height: 360px;
  }

  .contact-hero-photo::after {
    display: none;
  }

  .contact-form-card {
    grid-column: auto;
    grid-row: auto;
    padding: 42px;
  }

  .contact-offer {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    margin: 0 42px 28px;
    grid-template-columns: 82px minmax(0, 1fr);
    border-radius: 26px;
  }

  .contact-offer p+p {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 420px;
  }

  .contact-review-grid,
  .contact-trust-strip {
    grid-template-columns: 1fr;
  }

  .contact-trust-strip span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #dbe7f0;
  }

  .ovo-hero img {
    height: 360px;
  }

  .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .ovo-process-list img {
    grid-column: 2;
  }

  .genetic-benefits-head {
    grid-template-columns: 1fr;
  }

  .genetic-process .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .genetic-process .ovo-process-list img {
    grid-column: 2;
  }

  .ropa-process .ovo-process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .ropa-process .ovo-process-list img {
    grid-column: 2;
  }

  .ropa-consult {
    grid-template-columns: 1fr;
  }

  .ropa-consult-media {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding: 24px 0 54px;
  }

  .contact-hero,
  .contact-map-section {
    border-radius: 12px;
  }

  .contact-hero-photo {
    min-height: 280px;
  }

  .contact-hero-photo::before {
    right: 16px;
    bottom: 22px;
    font-size: 30px;
  }

  .contact-form-card {
    padding: 30px 18px 26px;
    overflow: hidden;
  }

  .contact-form-card>img {
    width: 210px;
    max-width: 80%;
  }

  .contact-form-card h1,
  .contact-map-copy h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .contact-form-card p {
    font-size: 14px;
  }

  .contact-call-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px 12px;
  }

  .contact-call-row .fa {
    grid-row: span 3;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .contact-call-row span {
    width: auto;
    max-width: none;
  }

  .contact-call-row b {
    font-size: 24px;
  }

  .contact-call-row em {
    display: none;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-fields label,
  .contact-fields label:nth-child(4),
  .contact-fields label:nth-child(5),
  .contact-fields label.wide {
    grid-column: 1;
  }

  .contact-form-card .fiv-btn.small {
    width: 100%;
    justify-content: center;
  }

  .contact-offer {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 18px 24px;
    padding: 18px;
    border-radius: 16px;
  }

  .contact-offer>.fa {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .contact-offer p+p {
    grid-column: auto;
    grid-template-columns: 44px 1fr;
  }

  .contact-offer b {
    font-size: 20px;
  }

  .contact-map-section,
  .contact-reviews {
    margin-top: 34px;
  }

  .contact-map-copy {
    padding: 34px 18px;
  }

  .contact-map-copy address {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    font-size: 16px;
  }

  .contact-map-copy address>.fa {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .contact-map-copy .fiv-btn,
  .contact-actions .fiv-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 330px;
  }

  .contact-map-card {
    left: 50%;
    top: 30%;
    min-width: 250px;
  }

  .contact-review-grid {
    gap: 16px;
  }

  .contact-review-grid article {
    padding: 24px 20px;
  }

  .contact-review-grid p {
    min-height: 0;
    font-size: 15px;
  }

  .contact-trust-strip span {
    min-height: 82px;
    padding: 16px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 14px;
  }

  .ovo-page p,
  .ovo-page li,
  .ovo-page small,
  .ovo-page span,
  .ovo-page b,
  .ovo-page h1,
  .ovo-page h2,
  .ovo-page h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .ovo-page .fiv-main-column,
  .ovo-page .fiv-section,
  .ovo-page .ovo-hero,
  .ovo-page .ovo-explain,
  .ovo-page .ovo-candidates,
  .ovo-page .ovo-process,
  .ovo-page .ovo-results,
  .ropa-intro,
  .ropa-needs,
  .ropa-process,
  .ropa-consult,
  .ropa-consult-copy {
    overflow: hidden;
  }

  .ovo-hero {
    padding: 34px 18px;
    gap: 28px;
  }

  .ovo-hero h1,
  .ovo-explain h2,
  .ovo-candidates h2,
  .ovo-process h2,
  .ovo-results h2 {
    font-size: 35px;
    line-height: 1.06;
  }

  .ovo-hero h1 {
    font-size: 32px;
  }

  .genetic-hero h1 {
    font-size: 36px;
  }

  .ropa-hero h1 {
    font-size: 34px;
  }

  .ovo-hero p,
  .ovo-info-list p,
  .ovo-candidates li>span,
  .genetic-intro p,
  .ropa-intro p,
  .ropa-needs>p,
  .ropa-consult-copy p,
  .ovo-results p {
    font-size: 15px;
  }

  .genetic-candidates li>span {
    font-size: 16px;
  }

  .ropa-needs li>span {
    font-size: 15px;
  }

  .ropa-wide-img {
    height: 220px;
  }

  .ropa-needs .ropa-wide-img {
    height: 220px;
  }

  .ovo-hero img {
    height: 240px;
  }

  .ovo-info-list article,
  .ovo-candidates li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 20px 0;
  }

  .ovo-info-list .fa,
  .ovo-candidates li .fa {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .ovo-info-list .ovo-info-icon {
    width: 52px;
    height: 52px;
  }

  .ovo-candidates .ovo-beneficiary-icon {
    width: 52px;
    height: 52px;
  }

  .ovo-process-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .ovo-process-list article>b {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .ovo-process-list h3 {
    font-size: 20px;
  }

  .ovo-process-list img {
    grid-column: 1 / -1;
    height: 150px;
  }

  .genetic-process .ovo-process-list article {
    grid-template-columns: 44px 1fr;
  }

  .genetic-process .ovo-process-list img {
    grid-column: 1 / -1;
  }

  .ropa-process .ovo-process-list article {
    grid-template-columns: 44px 1fr;
  }

  .ropa-process .ovo-process-list h3 {
    font-size: 21px;
  }

  .ropa-process .ovo-process-list img {
    grid-column: 1 / -1;
  }

  .ropa-consult-media {
    min-height: 240px;
  }

  .ropa-consult-copy {
    padding: 28px 18px;
  }

  .ropa-consult-copy>img {
    width: 140px;
  }

  .ropa-consult-copy h2 {
    font-size: 34px;
  }

  .ropa-consult-copy .fiv-phone-row {
    font-size: 18px;
    gap: 10px;
  }

  .ropa-consult-copy .fiv-btn {
    width: 100%;
  }

  .genetic-benefits h2 {
    font-size: 35px;
    line-height: 1.06;
  }

  .genetic-benefits-head {
    gap: 22px;
  }

  .genetic-benefits-head img {
    height: 190px;
  }

  .genetic-benefit-list article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 18px 14px;
  }

  .genetic-benefit-list .fa {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .genetic-benefit-list b {
    font-size: 17px;
  }

  .genetic-benefit-list p {
    font-size: 14px;
  }

  .ovo-chart-card {
    padding: 20px 14px 26px;
  }

  .ovo-chart-card h3 {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
  }

  .ovo-chart {
    height: 240px;
    padding-left: 22px;
    padding-right: 12px;
  }

  .ovo-chart span {
    width: 58px;
  }

  .ovo-chart b {
    top: -34px;
    font-size: 24px;
  }

  .ovo-chart small {
    width: 74px;
    bottom: -30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .main-nav {
    grid-template-columns: 1fr !important;
  }

  .nav-item,
  .has-mega {
    width: 100%;
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .nav-item,
  .has-mega {
    width: 100% !important;
    grid-column: auto;
  }

  .has-mega {
    grid-column: 1 / -1;
  }

  .nav-link {
    min-width: 0 !important;
    min-height: 44px !important;
    width: 100%;
    padding: 0 12px !important;
    border-radius: 8px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    font-size: 12.5px;
    text-align: left;
    white-space: normal;
  }

  .nav-link .fa {
    width: 20px;
    min-width: 20px;
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  .main-nav {
    grid-template-columns: 1fr !important;
  }
}

/* Sticky doctor card restore for treatment pages. */
.fiv-page,
.fiv-page .wrap,
.fiv-main-layout,
.fiv-main-column,
.fiv-section {
  overflow: visible !important;
}

.fiv-main-layout {
  align-items: flex-start !important;
}

.fiv-sticky-doctor {
  align-self: flex-start !important;
  height: fit-content;
}

@media (min-width: 1024px) {
  html {
    overflow-x: clip !important;
  }

  body.drjam-body {
    overflow: visible !important;
  }

  .fiv-sticky-doctor {
    position: sticky !important;
    top: 160px !important;
    z-index: 20;
  }
}

@media (max-width: 1023px) {

  .fiv-page .fiv-main-layout,
  .ia-page .fiv-main-layout,
  .icsi-page .fiv-main-layout,
  .ovo-page .fiv-main-layout,
  .ropa-page .fiv-main-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .fiv-page .fiv-main-column {
    width: 100% !important;
    min-width: 0 !important;
  }

  .fiv-sticky-doctor {
    position: static !important;
    order: initial !important;
    width: min(100%, 430px) !important;
    max-width: 100% !important;
    margin: 28px auto 0;
  }
}

/* Aislamiento del eje frente a los estilos heredados de las barras. */
.chart-bars>.drjam-chart-axis,
.ia-success-chart>.drjam-bar-chart>.drjam-chart-axis,
.ovo-chart.drjam-bar-chart>.drjam-chart-axis {
  position: absolute;
  z-index: 3;
  top: var(--chart-axis-top);
  right: auto;
  bottom: var(--chart-axis-bottom);
  left: var(--chart-axis-left);
  width: var(--chart-axis-width);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
}

.chart-bars>.drjam-chart-axis>span,
.ia-success-chart>.drjam-bar-chart>.drjam-chart-axis>span,
.ovo-chart.drjam-bar-chart>.drjam-chart-axis>span {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto !important;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  border-radius: 0;
  color: #496680;
  background: transparent !important;
  box-shadow: none;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  transform: none !important;
  transition: none;
}

.chart-bars>.drjam-chart-axis-title,
.ia-success-chart>.drjam-bar-chart>.drjam-chart-axis-title,
.ovo-chart.drjam-bar-chart>.drjam-chart-axis-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -38px;
  width: auto;
  height: auto !important;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  border-radius: 0;
  color: var(--navy);
  background: transparent !important;
  box-shadow: none;
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-90deg) !important;
  transition: none;
}

.chart-bars.drjam-bar-chart>div:nth-of-type(2)>b {
  bottom: calc(52% + 10px);
}

.chart-bars.drjam-bar-chart>div:nth-of-type(3)>b {
  bottom: calc(80% + 10px);
}

/* Rediseño de la ilustración CTA: Imagen de madre y bebé en lugar de iconos CSS */
@media (min-width: 992px) {
  .ia-soft-cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr) !important;
    gap: 40px !important;
    align-items: center !important;
    padding: 48px 56px !important;
  }
}

.ia-mother-illustration {
  background: transparent !important;
  width: 100% !important;
  max-width: 440px !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
}

.ia-mother-illustration::before {
  display: none !important;
}

.ia-mother-illustration img,
.ia-mother-baby-img {
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 12px 28px rgba(0, 135, 164, 0.15)) !important;
}

.ia-hero small .fa-shield,
.ia-soft-cta small .fa-shield,
.ia-hero small .fa,
.ia-soft-cta small .fa {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  color: #0087a4 !important;
  background: #eef8fc !important;
  font-size: 24px !important;
  flex-shrink: 0 !important;
}