/* Corrección visual premium posterior a Fase 8:
   un solo acento cromático por título y formulario realmente centrado en escritorio. */

.quote-section .quote-layout.quote-layout--compact {
  display: block;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.quote-section .quote-layout--compact .quote-card {
  width: min(100%, 960px);
  margin-inline: auto;
}

.quote-section .quote-layout--compact .quote-form {
  width: 100%;
}

.quote-section .quote-layout--compact .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.title-accent {
  color: inherit;
}

.title-accent--green {
  color: #58a92f;
}

/* Los puntos de conversión adoptan el naranja del isotipo. */
.cta-conversion {
  border-color: #f28c28 !important;
  color: #ffffff !important;
  background: #f28c28 !important;
  box-shadow: 0 8px 18px rgba(242, 140, 40, 0.22);
}

.cta-conversion:hover {
  border-color: #dd7617 !important;
  color: #ffffff !important;
  background: #dd7617 !important;
  transform: translateY(-1px);
}

.cta-conversion:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.28);
  outline-offset: 3px;
}

.header-cta.cta-conversion::after,
.mobile-menu__cta.cta-conversion::after {
  display: none;
}

@media (max-width: 900px) {
  .quote-section .quote-layout--compact .quote-card {
    width: min(100%, 820px);
  }
}

@media (max-width: 680px) {
  .hero--humanized {
    background: #ffffff;
  }

  .hero--humanized .hero__grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero--humanized .hero__media {
    order: 1;
    min-height: 0;
    aspect-ratio: 16 / 9;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero--humanized .hero__media::after {
    display: none;
  }

  .hero--humanized .hero__media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero--humanized .hero__copy {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5rem 1rem 2rem;
    background: #ffffff;
  }

  .hero--humanized .hero__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .hero--humanized .hero__copy .lead {
    max-width: none;
    color: #111111;
  }
}


/* Carrusel premium de Isapres bajo el formulario */
.isapre-carousel-section {
  padding: 0 0 3.25rem;
}

.isapre-carousel__intro {
  max-width: 44rem;
  margin: 0 auto 1.2rem;
  text-align: center;
}

.isapre-carousel__eyebrow {
  margin: 0 0 0.35rem;
  color: #f28c28;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.isapre-carousel__title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
}

.isapre-carousel__text {
  max-width: 40rem;
  margin: 0.55rem auto 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.55;
}

.isapre-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,248,251,0.96) 100%);
}

.isapre-carousel::before,
.isapre-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.isapre-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(246,248,251,1) 0%, rgba(246,248,251,0) 100%);
}

.isapre-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(246,248,251,1) 0%, rgba(246,248,251,0) 100%);
}

.isapre-carousel__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: isapreCarousel 15s linear infinite;
}

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

.isapre-carousel__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 220px;
  min-height: 96px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(16, 35, 52, 0.06);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 35, 52, 0.05);
}

.isapre-carousel__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
}

@keyframes isapreCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

@media (max-width: 680px) {
  .isapre-carousel-section {
    padding-bottom: 2.5rem;
  }

  .isapre-carousel__title {
    font-size: clamp(1.18rem, 5.2vw, 1.5rem);
  }

  .isapre-carousel__text {
    font-size: 0.9rem;
  }

  .isapre-carousel__item {
    min-width: 185px;
    min-height: 86px;
    padding: 0.9rem 1rem;
  }

  .isapre-carousel__item img {
    max-height: 46px;
  }

  .isapre-carousel::before,
  .isapre-carousel::after {
    width: 42px;
  }
}


/* Hero humanizado con imagen protagonista */
.hero--humanized {
  padding-block: 0;
  background: #f4f0ea;
}

.hero--humanized::before {
  display: none;
}

.hero--humanized .hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(560px, 68vw, 760px);
  align-items: stretch;
}

.hero--humanized .hero__media,
.hero--humanized .hero__copy {
  grid-area: 1 / 1;
}

.hero--humanized .hero__media {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #e8e0d6;
}

.hero--humanized .hero__media::after {
  inset: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 23%, rgba(255,255,255,.58) 42%, rgba(255,255,255,.08) 66%, rgba(255,255,255,0) 100%);
}

.hero--humanized .hero__media picture,
.hero--humanized .hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero--humanized .hero__media img {
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.hero--humanized .hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(48%, 660px);
  margin-left: clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.hero--humanized .hero__copy h1 {
  max-width: 13ch;
  text-wrap: balance;
}

.hero--humanized .hero__copy .lead {
  max-width: 52ch;
  color: #111111;
}

.hero--humanized .hero__signals {
  color: var(--neutral-800);
}

@media (min-width: 681px) and (max-width: 1024px) {
  .hero--humanized .hero__grid {
    min-height: clamp(560px, 72vw, 720px);
  }

  .hero--humanized .hero__copy {
    width: min(52%, 580px);
    margin-left: clamp(1rem, 3vw, 2.5rem);
  }

  .hero--humanized .hero__media::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 28%, rgba(255,255,255,.62) 48%, rgba(255,255,255,.10) 72%, rgba(255,255,255,0) 100%);
  }
}

@media (max-width: 680px) {
  .hero--humanized {
    background: #ffffff;
  }

  .hero--humanized .hero__grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero--humanized .hero__media {
    order: 1;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero--humanized .hero__media::after {
    display: none;
  }

  .hero--humanized .hero__media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero--humanized .hero__copy {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5rem 1rem 2rem;
    background: #ffffff;
  }

  .hero--humanized .hero__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .hero--humanized .hero__copy .lead {
    max-width: none;
  }
}

/* Mobile CTA absolutely anchored to hero image */
.hero__visual {
  display: contents;
}

.hero__mobile-image-cta {
  display: none;
}

@media (max-width: 680px) {
  .site-header__inner {
    min-height: 50px;
    padding-block: 0.2rem;
  }

  .site-brand__mark {
    width: 31px !important;
    height: 28px !important;
  }

  .site-brand__wordmark {
    font-size: 0.86rem;
  }

  

  .hero--humanized .hero__grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero--humanized .hero__visual {
    display: block;
    position: relative;
    order: 1;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
  }

  .hero--humanized .hero__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .hero--humanized .hero__media::after {
    display: none;
  }

  .hero--humanized .hero__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .hero--humanized .hero__mobile-image-cta {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 10;
    width: min(calc(100% - 3rem), 360px);
    min-height: 48px;
    border: 0;
    border-radius: 1.15rem;
    padding: 0.82rem 1.35rem;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #58a92f;
    box-shadow: 0 12px 26px rgba(88, 169, 47, 0.24);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transform: translate(-50%, 50%);
  }

  .hero--humanized .hero__mobile-image-cta:hover {
    background: #478f25;
  }

  .hero--humanized .hero__copy {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.4rem 1.6rem 0.9rem;
    background: #ffffff;
  }

  .hero--humanized .hero__copy h1 {
    max-width: none;
    margin: 0 0 0.55rem;
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  .hero--humanized .hero__copy .lead {
    max-width: none;
    margin: 0 0 0.65rem;
    color: #111111;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero--humanized .hero__actions,
  .hero--humanized .hero__mobile-hide-cta {
    display: none !important;
  }

  .hero--humanized .hero__signals--mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.32rem 0.7rem;
    margin: 0;
    padding: 0.55rem 0 0;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .hero--humanized .hero__signals--mobile-grid li {
    gap: 0.34rem;
  }

  .hero--humanized .hero__signals--mobile-grid li::before {
    width: 0.42rem;
    height: 0.42rem;
    border-color: #24b36b;
  }

  .quote-section {
    padding-top: 0.35rem;
  }
}

/* Mobile text balance after absolute CTA */
@media (max-width: 680px) {
  .hero--humanized .hero__copy {
    padding: 1.65rem 1rem 0.8rem;
  }

  .hero--humanized .hero__copy h1 {
    margin: -0.2rem 0 0.5rem;
    max-width: none;
    font-size: clamp(1.9rem, 7.8vw, 2.28rem);
    line-height: 1.02;
  }

  .hero--humanized .hero__copy .lead {
    margin-bottom: 0.55rem;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .hero--humanized .hero__signals--mobile-grid {
    gap: 0.3rem 0.55rem;
    padding-top: 0.4rem;
  }

  .hero--humanized .hero__signals--mobile-grid li {
    min-width: 0;
  }

  .quote-section {
    padding-top: 0.2rem;
  }
}

/* Mobile form single column and tighter H1 */
@media (max-width: 680px) {
  .quote-section .quote-layout--compact .form-grid,
  .quote-section .quote-form .form-grid {
    grid-template-columns: 1fr !important;
  }

  .quote-section .quote-form .form-field,
  .quote-section .quote-form .form-field--full {
    grid-column: 1 / -1 !important;
  }

  .hero--humanized .hero__copy {
    padding-top: 1.35rem;
  }

  .hero--humanized .hero__copy h1 {
    margin-top: -0.35rem;
    margin-bottom: 0.45rem;
  }
}

/* Mobile form margins and conversion title */
@media (max-width: 680px) {
  .quote-section {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .quote-section .quote-layout--compact {
    padding-inline: 1rem;
  }

  .quote-section .quote-layout--compact .quote-card {
    width: 100%;
    margin-inline: auto;
    border-radius: 1rem;
  }

  .form-intro {
    margin-bottom: 0.9rem;
    text-align: center;
  }

  .form-intro__title {
    font-size: 1.28rem;
    line-height: 1.2;
  }

  .form-intro__text {
    max-width: 30rem;
    margin: 0.45rem auto 0;
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Oval mobile hero CTA and form section label */
.quote-section__eyebrow {
  margin: 0 auto 0.75rem;
  color: #1252ad;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 680px) {
  .hero--humanized .hero__mobile-image-cta {
    border-radius: 999px;
  }

  .quote-section__eyebrow {
    width: 100%;
    margin-bottom: 0.7rem;
    padding-inline: 0.25rem;
    font-size: 0.84rem;
  }
}

/* Mobile premium CTA and header emphasis */
@keyframes heroCtaPulsePremium {
  0%, 78%, 100% {
    transform: translate(-50%, 50%) scale(1);
  }
  84% {
    transform: translate(-50%, 50%) scale(1.025);
  }
  90% {
    transform: translate(-50%, 50%) scale(1);
  }
}

@keyframes heroCtaShinePremium {
  0%, 72% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  76% {
    opacity: 0.85;
  }
  88%, 100% {
    transform: translateX(520%) skewX(-18deg);
    opacity: 0;
  }
}

@media (max-width: 680px) {
  .hero--humanized .hero__mobile-image-cta {
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.96);
    box-shadow:
      0 10px 24px rgba(34, 76, 23, 0.22),
      0 3px 8px rgba(18, 82, 173, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    animation: heroCtaPulsePremium 7.5s ease-in-out infinite;
    isolation: isolate;
  }

  .hero--humanized .hero__mobile-image-cta::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -55%;
    z-index: 1;
    width: 34%;
    height: 170%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 30%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 255, 255, 0.18) 70%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    animation: heroCtaShinePremium 7.5s ease-in-out infinite;
  }

  .hero--humanized .hero__mobile-image-cta {
    position: absolute;
  }

  .hero--humanized .hero__mobile-image-cta > * {
    position: relative;
    z-index: 2;
  }

  

  

  

  .site-brand__wordmark {
    font-size: 1rem;
    letter-spacing: -0.05em;
  }

  .site-brand {
    gap: 0.32rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--humanized .hero__mobile-image-cta,
  .hero--humanized .hero__mobile-image-cta::before {
    animation: none !important;
  }
}

/* Premium refinement: CTA, hamburger, advisor block */
@media (max-width: 680px) {
  .hero--humanized .hero__mobile-image-cta {
    background: linear-gradient(180deg, #67c83b 0%, #55b82d 52%, #479e24 100%);
    border: 1.2px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      0 10px 22px rgba(59, 119, 30, 0.18),
      0 4px 10px rgba(10, 26, 51, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      inset 0 -1px 0 rgba(19, 87, 16, 0.24);
  }

  .hero--humanized .hero__mobile-image-cta::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero--humanized .hero__mobile-image-cta > * {
    z-index: 2;
  }

  

  

  

  

  .quote-section__advisor {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 0.8rem;
    padding-inline: 0.05rem;
  }

  .quote-section__advisor-photo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow:
      0 8px 18px rgba(10, 26, 51, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .quote-section__advisor-copy {
    flex: 1;
    min-width: 0;
  }

  .quote-section__advisor-item {
    display: flex;
    align-items: flex-start;
    gap: 0.38rem;
    margin: 0;
    color: #0a1a33;
    font-size: 0.78rem;
    line-height: 1.28;
    font-weight: 600;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0.18rem;
  }

  .quote-section__advisor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    margin-top: 0.02rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #62c336 0%, #47a226 100%);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(71, 162, 38, 0.18);
  }
}

@media (min-width: 681px) {
  .quote-section__advisor {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 0 auto 1rem;
  }

  .quote-section__advisor-photo {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow:
      0 10px 22px rgba(10, 26, 51, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .quote-section__advisor-copy {
    flex: 1;
    min-width: 0;
  }

  .quote-section__advisor-item {
    display: flex;
    align-items: flex-start;
    gap: 0.42rem;
    margin: 0;
    color: #0a1a33;
    font-size: 0.83rem;
    line-height: 1.3;
    font-weight: 600;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0.22rem;
  }

  .quote-section__advisor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.02rem;
    min-width: 1.02rem;
    height: 1.02rem;
    margin-top: 0.02rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #62c336 0%, #47a226 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(71, 162, 38, 0.18);
  }
}

/* Mobile executive focus */
@media (max-width: 680px) {
  .hero--humanized .hero__signals,
  .hero--humanized .hero__signals--mobile-grid {
    display: none !important;
  }

  .quote-section {
    padding-top: 1.1rem;
  }

  .quote-section__advisor {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    margin: 0 auto 1rem;
    text-align: center;
  }

  .quote-section__advisor-photo {
    width: 96px;
    height: 96px;
    min-width: 96px;
    border-width: 3px;
    box-shadow:
      0 10px 24px rgba(10, 26, 51, 0.10),
      0 3px 8px rgba(0, 0, 0, 0.05);
  }

  .quote-section__advisor-photo img {
    object-position: center 24%;
  }

  .quote-section__advisor-copy {
    width: 100%;
    max-width: 19rem;
  }

  .quote-section__advisor-item {
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.82rem;
    line-height: 1.3;
    text-align: center;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0.28rem;
  }

  .quote-section__advisor-icon {
    margin-top: 0;
  }

  .quote-card {
    margin-top: 0.15rem;
  }
}

/* Definitive two-line hamburger to X */
@media (max-width: 980px) {
  

  

  

  

  

  

  
}

/* Botón hamburguesa definitivo: implementación única y sin conflictos */
@media (max-width: 980px) {
  button.menu-toggle,
  button.menu-toggle:hover,
  button.menu-toggle:focus-visible,
  button.menu-toggle[aria-expanded="true"] {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    padding: 0;
    border: 1px solid #dc7718;
    border-radius: 0.72rem;
    background: #f28c28;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(242, 140, 40, 0.20);
    cursor: pointer;
    transition:
      transform 0.16s ease,
      box-shadow 0.20s ease;
  }

  button.menu-toggle:focus-visible {
    outline: 0;
    box-shadow:
      0 0 0 3px rgba(242, 140, 40, 0.22),
      0 6px 14px rgba(242, 140, 40, 0.20);
  }

  button.menu-toggle:active {
    transform: translateY(1px);
  }

  button.menu-toggle > span.menu-toggle__glyph {
    position: relative;
    display: block;
    width: 20px;
    height: 2.5px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #ffffff;
    box-shadow: none;
    transform: none;
    transition: background-color 0.16s ease;
  }

  button.menu-toggle > span.menu-toggle__glyph::before,
  button.menu-toggle > span.menu-toggle__glyph::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: 50% 50%;
    transition:
      top 0.24s ease,
      transform 0.24s ease;
  }

  button.menu-toggle > span.menu-toggle__glyph::before {
    top: -6px;
  }

  button.menu-toggle > span.menu-toggle__glyph::after {
    top: 6px;
  }

  button.menu-toggle[aria-expanded="true"] > span.menu-toggle__glyph {
    background: transparent;
  }

  button.menu-toggle[aria-expanded="true"] > span.menu-toggle__glyph::before {
    top: 0;
    transform: rotate(45deg);
  }

  button.menu-toggle[aria-expanded="true"] > span.menu-toggle__glyph::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  button.menu-toggle,
  button.menu-toggle > span.menu-toggle__glyph,
  button.menu-toggle > span.menu-toggle__glyph::before,
  button.menu-toggle > span.menu-toggle__glyph::after {
    transition: none !important;
  }
}

/* Mobile advisor row centered as a group */
@media (max-width: 680px) {
  .quote-section__advisor {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: calc(100% - 0.5rem);
    margin: 0 auto 1rem;
    gap: 0.85rem;
    text-align: left;
  }

  .quote-section .quote-layout--compact {
    text-align: center;
  }

  .quote-section__advisor-photo {
    width: 104px;
    height: 104px;
    min-width: 104px;
    flex: 0 0 104px;
    border-radius: 50%;
    overflow: hidden;
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
  }

  .quote-section__advisor-copy {
    flex: 0 1 auto;
    width: auto;
    max-width: 13.5rem;
    min-width: 0;
    text-align: left;
  }

  .quote-section__advisor-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.28;
    text-align: left;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0.3rem;
  }

  .quote-section__advisor-icon {
    flex: 0 0 1rem;
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .quote-section__advisor {
    gap: 0.65rem;
    max-width: 100%;
  }

  .quote-section__advisor-photo {
    width: 88px;
    height: 88px;
    min-width: 88px;
    flex-basis: 88px;
  }

  .quote-section__advisor-copy {
    max-width: 12rem;
  }

  .quote-section__advisor-item {
    font-size: 0.76rem;
  }
}

/* Mobile advisor crop lower and form alignment repair */
@media (max-width: 680px) {
  .quote-section .quote-layout--compact {
    text-align: left;
  }

  .quote-section__advisor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 0.5rem);
    margin: 0 auto 1rem;
    gap: 0.85rem;
    text-align: left;
  }

  .quote-section__advisor-photo {
    width: 112px;
    height: 112px;
    min-width: 112px;
    flex: 0 0 112px;
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 52%;
  }

  .quote-section__advisor-copy {
    width: auto;
    max-width: 13.5rem;
    text-align: left;
  }

  .quote-section__advisor-item {
    justify-content: flex-start;
    text-align: left;
  }

  .quote-section .quote-card,
  .quote-section .form-intro,
  .quote-section .form-progress,
  .quote-section .quote-form,
  .quote-section .quote-form label,
  .quote-section .quote-form input,
  .quote-section .quote-form select,
  .quote-section .quote-form textarea,
  .quote-section .quote-form .form-field {
    text-align: left;
  }

  .quote-section .form-intro {
    text-align: center;
  }

  .quote-section .quote-form input,
  .quote-section .quote-form select,
  .quote-section .quote-form textarea {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .quote-section__advisor {
    gap: 0.65rem;
    max-width: 100%;
  }

  .quote-section__advisor-photo {
    width: 96px;
    height: 96px;
    min-width: 96px;
    flex-basis: 96px;
  }

  .quote-section__advisor-copy {
    max-width: 11.75rem;
  }
}

/* Desktop advisor centered with greater prominence */
@media (min-width: 981px) {
  .quote-section .quote-layout--compact {
    text-align: initial;
  }

  .quote-section__advisor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 3rem);
    margin: 0 auto 1.25rem;
    gap: 1.25rem;
    text-align: left;
  }

  .quote-section__advisor-photo {
    width: 144px;
    height: 144px;
    min-width: 144px;
    flex: 0 0 144px;
    border-width: 3px;
    box-shadow:
      0 14px 30px rgba(10, 26, 51, 0.10),
      0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .quote-section__advisor-copy {
    width: auto;
    max-width: none;
    min-width: 0;
    text-align: left;
  }

  .quote-section__advisor-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    margin: 0;
    color: #0a1a33;
    font-size: 0.96rem;
    line-height: 1.35;
    font-weight: 650;
    text-align: left;
    white-space: nowrap;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0.48rem;
  }

  .quote-section__advisor-icon {
    width: 1.18rem;
    min-width: 1.18rem;
    height: 1.18rem;
    font-size: 0.76rem;
  }
}

/* Desktop hero landscape mask: 15 percent shorter */
@media (min-width: 1025px) {
  .hero--humanized .hero__grid {
    min-height: clamp(405px, 49.1vw, 549px);
  }

  .hero--humanized .hero__media,
  .hero--humanized .hero__media picture,
  .hero--humanized .hero__media img {
    height: 100%;
  }

  .hero--humanized .hero__media img {
    object-fit: cover;
    object-position: center;
  }

  .hero--home .hero__media img {
    object-position: 96% 50%;
  }

  .hero--cotizar .hero__media img {
    object-position: 94% 50%;
  }

  .hero--planes .hero__media img {
    object-position: 100% 50%;
  }
}

/* Carousel premium layout for tablet and desktop */
@media (min-width: 681px) {
  .isapre-carousel-section {
    position: relative;
    padding: 3.25rem 0 4rem;
    background:
      radial-gradient(circle at 50% 0%, rgba(18, 82, 173, 0.055), transparent 38%),
      linear-gradient(180deg, #f8fafc 0%, #f4f7fa 100%);
  }

  .isapre-carousel-section > .container {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 1180px;
    margin-inline: auto;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    overflow: hidden;
    border: 1px solid rgba(18, 82, 173, 0.09);
    border-radius: 1.75rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,251,253,0.98) 100%);
    box-shadow:
      0 22px 55px rgba(16, 35, 52, 0.075),
      0 4px 14px rgba(16, 35, 52, 0.035),
      inset 0 1px 0 rgba(255,255,255,0.9);
  }

  .isapre-carousel-section > .container::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    width: 420px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88,169,47,0.08) 0%, rgba(88,169,47,0) 72%);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .isapre-carousel__intro {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0 auto 1.65rem;
    padding-inline: clamp(0.5rem, 3vw, 2.5rem);
    text-align: center;
  }

  .isapre-carousel__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 0.58rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(242, 140, 40, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 247, 238, 0.98), rgba(255, 241, 225, 0.94));
    color: #dc7718;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.07);
  }

  .isapre-carousel__eyebrow::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-right: 0.48rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffab4d 0%, #f28c28 100%);
    box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.10);
  }

  .isapre-carousel__title {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    color: #102334;
    font-size: clamp(1.4rem, 2.15vw, 2rem);
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-align: center;
    white-space: nowrap;
  }

  .isapre-carousel__text {
    width: 100%;
    max-width: 62rem;
    margin: 0.68rem auto 0;
    color: #536273;
    font-size: clamp(0.92rem, 1.25vw, 1rem);
    line-height: 1.55;
    text-align: center;
  }

  .isapre-carousel {
    position: relative;
    z-index: 1;
    padding: 1.15rem 0;
    overflow: hidden;
    border: 1px solid rgba(18, 82, 173, 0.08);
    border-radius: 1.35rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,248,251,0.98) 100%);
    box-shadow:
      0 12px 30px rgba(16, 35, 52, 0.055),
      inset 0 1px 0 rgba(255,255,255,0.9);
  }

  .isapre-carousel::before,
  .isapre-carousel::after {
    width: clamp(52px, 7vw, 92px);
  }

  .isapre-carousel__track {
    gap: 1.05rem;
  }

  .isapre-carousel__item {
    min-width: 210px;
    min-height: 98px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(16, 35, 52, 0.07);
    border-radius: 1rem;
    background: rgba(255,255,255,0.98);
    box-shadow:
      0 9px 24px rgba(16, 35, 52, 0.055),
      inset 0 1px 0 rgba(255,255,255,0.95);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }

  .isapre-carousel__item:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 82, 173, 0.12);
    box-shadow:
      0 14px 30px rgba(16, 35, 52, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.98);
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .isapre-carousel-section {
    padding: 2.75rem 0 3.5rem;
  }

  .isapre-carousel-section > .container {
    width: calc(100% - 1.5rem);
    padding: 1.55rem 1rem 1.35rem;
    border-radius: 1.45rem;
  }

  .isapre-carousel__intro {
    margin-bottom: 1.35rem;
    padding-inline: 0.25rem;
  }

  .isapre-carousel__title {
    font-size: clamp(1.28rem, 3vw, 1.55rem);
    letter-spacing: -0.03em;
  }

  .isapre-carousel__text {
    max-width: 44rem;
    font-size: 0.92rem;
  }

  .isapre-carousel__item {
    min-width: 190px;
    min-height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .isapre-carousel__item {
    transition: none;
  }
}

/* Mobile carousel premium refinement */
@media (max-width: 680px) {
  .isapre-carousel-section {
    position: relative;
    padding: 1.1rem 0 2.75rem;
    background:
      radial-gradient(circle at 50% 0%, rgba(18, 82, 173, 0.055), transparent 40%),
      linear-gradient(180deg, #f7f9fc 0%, #f1f5f8 100%);
  }

  .isapre-carousel-section > .container {
    position: relative;
    width: calc(100% - 1rem);
    max-width: none;
    margin-inline: auto;
    padding: 1.25rem 0.72rem 1rem;
    overflow: hidden;
    border: 1px solid rgba(18, 82, 173, 0.09);
    border-radius: 1.45rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(248, 251, 253, 0.98) 100%);
    box-shadow:
      0 18px 38px rgba(16, 35, 52, 0.075),
      0 4px 12px rgba(16, 35, 52, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .isapre-carousel-section > .container::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    width: 260px;
    height: 145px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 169, 47, 0.075) 0%, rgba(88, 169, 47, 0) 72%);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .isapre-carousel__intro {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin: 0 auto 1.05rem;
    padding-inline: 0.35rem;
    text-align: center;
  }

  .isapre-carousel__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 0.55rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(242, 140, 40, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.99), rgba(255, 239, 221, 0.96));
    color: #dc7718;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(242, 140, 40, 0.065);
  }

  .isapre-carousel__eyebrow::before {
    content: "";
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffad52 0%, #f28c28 100%);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.095);
  }

  .isapre-carousel__title {
    max-width: 20rem;
    margin: 0 auto;
    color: #102334;
    font-size: clamp(1.22rem, 5.5vw, 1.48rem);
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: -0.028em;
    text-align: center;
    text-wrap: balance;
  }

  .isapre-carousel__text {
    max-width: 20.5rem;
    margin: 0.55rem auto 0;
    color: #596878;
    font-size: 0.84rem;
    line-height: 1.48;
    text-align: center;
    text-wrap: pretty;
  }

  .isapre-carousel {
    position: relative;
    z-index: 1;
    padding: 0.78rem 0;
    overflow: hidden;
    border: 1px solid rgba(18, 82, 173, 0.075);
    border-radius: 1.08rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 251, 0.98) 100%);
    box-shadow:
      0 10px 24px rgba(16, 35, 52, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .isapre-carousel::before,
  .isapre-carousel::after {
    width: 28px;
  }

  .isapre-carousel::before {
    background: linear-gradient(90deg, rgba(247, 250, 252, 1) 0%, rgba(247, 250, 252, 0) 100%);
  }

  .isapre-carousel::after {
    background: linear-gradient(270deg, rgba(247, 250, 252, 1) 0%, rgba(247, 250, 252, 0) 100%);
  }

  .isapre-carousel__track {
    gap: 0.72rem;
    animation-duration: 18s;
  }

  .isapre-carousel__item {
    min-width: 156px;
    min-height: 76px;
    padding: 0.72rem 0.82rem;
    border: 1px solid rgba(16, 35, 52, 0.065);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.985);
    box-shadow:
      0 7px 18px rgba(16, 35, 52, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .isapre-carousel__item img {
    max-width: 100%;
    max-height: 40px;
  }
}

@media (max-width: 380px) {
  .isapre-carousel-section > .container {
    width: calc(100% - 0.75rem);
    padding-inline: 0.55rem;
  }

  .isapre-carousel__title {
    max-width: 18rem;
    font-size: 1.18rem;
  }

  .isapre-carousel__text {
    font-size: 0.8rem;
  }

  .isapre-carousel__item {
    min-width: 146px;
    min-height: 72px;
  }
}

/* Tablet desktop hero images and premium Cotizar FAQ */
@media (min-width: 681px) and (max-width: 1024px) {
  .hero--humanized .hero__media,
  .hero--humanized .hero__media picture,
  .hero--humanized .hero__media img {
    width: 100%;
    height: 100%;
  }

  .hero--humanized .hero__media img {
    display: block;
    object-fit: cover;
  }

  .hero--home .hero__media img {
    object-position: 96% 50%;
  }

  .hero--cotizar .hero__media img {
    object-position: 94% 50%;
  }

  .hero--planes .hero__media img {
    object-position: 100% 50%;
  }
}

/* Superficie general */
.landing-faq--premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.25rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 82, 173, 0.075), transparent 31rem),
    radial-gradient(circle at 88% 92%, rgba(88, 169, 47, 0.065), transparent 28rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f6 100%);
}

.landing-faq--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(18, 82, 173, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 82, 173, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.landing-faq--premium .faq-layout {
  position: relative;
  gap: clamp(2rem, 5vw, 4.75rem);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(18, 82, 173, 0.09);
  border-radius: clamp(1.45rem, 2.5vw, 2rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.985) 0%, rgba(248, 251, 253, 0.97) 100%);
  box-shadow:
    0 24px 60px rgba(16, 35, 52, 0.09),
    0 5px 16px rgba(16, 35, 52, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.landing-faq--premium .faq-layout::after {
  content: "";
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 169, 47, 0.08), rgba(88, 169, 47, 0) 70%);
  pointer-events: none;
}

.landing-faq--premium .faq-intro--premium {
  z-index: 1;
}

.landing-faq--premium .faq-intro--premium .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  width: max-content;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff0df 100%);
  color: #dc7718;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 5px 13px rgba(242, 140, 40, 0.07);
}

.landing-faq--premium .faq-intro--premium .eyebrow::before {
  content: "?";
  display: grid;
  place-items: center;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffad52 0%, #f28c28 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.095);
}

.landing-faq--premium .faq-intro--premium h2 {
  max-width: 15ch;
  margin-bottom: 0.9rem;
  color: #102334;
  font-size: clamp(1.85rem, 3.3vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.landing-faq--premium .faq-intro--premium > p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: #596878;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Acordeón */
.landing-faq--premium .faq-list--premium {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  counter-reset: premium-faq;
}

.landing-faq--premium .faq-item--premium {
  position: relative;
  overflow: hidden;
  counter-increment: premium-faq;
  border: 1px solid rgba(16, 35, 52, 0.09);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 8px 22px rgba(16, 35, 52, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease,
    background-color 0.24s ease;
}

.landing-faq--premium .faq-item--premium:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 82, 173, 0.16);
  box-shadow:
    0 13px 30px rgba(16, 35, 52, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.landing-faq--premium .faq-item--premium[open] {
  border-color: rgba(88, 169, 47, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 252, 245, 0.98) 100%);
  box-shadow:
    0 15px 36px rgba(53, 114, 29, 0.09),
    0 4px 12px rgba(16, 35, 52, 0.035),
    inset 4px 0 0 #58a92f;
}

.landing-faq--premium .faq-item--premium summary {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 4.7rem 1rem 1rem;
  color: #102334;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 790;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.landing-faq--premium .faq-item--premium summary::-webkit-details-marker {
  display: none;
}

.landing-faq--premium .faq-item--premium summary::before {
  content: attr(data-faq-number);
  position: static;
  display: grid;
  place-items: center;
  flex: 0 0 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.72rem;
  background: linear-gradient(145deg, rgba(18, 82, 173, 0.105), rgba(18, 82, 173, 0.045));
  color: #1252ad;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(18, 82, 173, 0.08);
  transform: none;
}

.landing-faq--premium .faq-item--premium summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #edf3f8 100%);
  color: #1252ad;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  box-shadow:
    0 5px 13px rgba(16, 35, 52, 0.08),
    inset 0 0 0 1px rgba(18, 82, 173, 0.09);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.landing-faq--premium .faq-item--premium[open] summary {
  color: #235f16;
}

.landing-faq--premium .faq-item--premium[open] summary::before {
  background: linear-gradient(145deg, rgba(88, 169, 47, 0.18), rgba(88, 169, 47, 0.075));
  color: #397f20;
  box-shadow: inset 0 0 0 1px rgba(88, 169, 47, 0.13);
}

.landing-faq--premium .faq-item--premium[open] summary::after {
  content: "−";
  color: #ffffff;
  background: linear-gradient(180deg, #68bd3f 0%, #4e9f28 100%);
  transform: translateY(-50%) rotate(180deg);
  box-shadow:
    0 7px 16px rgba(65, 137, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.landing-faq--premium .faq-item--premium > div {
  position: relative;
  padding: 0 4.7rem 1.25rem 4rem;
  color: #596878;
  font-size: 0.96rem;
  line-height: 1.62;
  animation: premiumFaqReveal 0.26s ease both;
}

.landing-faq--premium .faq-item--premium > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4rem;
  right: 4.7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(88, 169, 47, 0.22), rgba(18, 82, 173, 0.07), transparent);
}

.landing-faq--premium .faq-item--premium > div p {
  margin: 0;
  padding-top: 1rem;
}

.landing-faq--premium .faq-item--premium summary:focus-visible {
  outline: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 3px rgba(18, 82, 173, 0.18),
    inset 0 0 0 5px rgba(255, 255, 255, 0.92);
}

@keyframes premiumFaqReveal {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (min-width: 681px) and (max-width: 980px) {
  .landing-faq--premium .faq-layout {
    gap: 1.65rem;
    padding: 1.75rem;
  }

  .landing-faq--premium .faq-intro--premium {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .landing-faq--premium .faq-intro--premium h2 {
    max-width: 22ch;
  }

  .landing-faq--premium .faq-intro--premium > p:last-child {
    max-width: 44rem;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .landing-faq--premium {
    padding-block: 2.5rem;
  }

  .landing-faq--premium .faq-layout {
    width: calc(100% - 1rem);
    padding: 1.15rem 0.75rem 0.85rem;
    border-radius: 1.35rem;
  }

  .landing-faq--premium .faq-intro--premium {
    display: grid;
    justify-items: center;
    padding-inline: 0.35rem;
    text-align: center;
  }

  .landing-faq--premium .faq-intro--premium .eyebrow {
    margin-bottom: 0.72rem;
    font-size: 0.68rem;
  }

  .landing-faq--premium .faq-intro--premium h2 {
    max-width: 18rem;
    margin-bottom: 0.72rem;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .landing-faq--premium .faq-intro--premium > p:last-child {
    max-width: 20rem;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .landing-faq--premium .faq-list--premium {
    gap: 0.68rem;
  }

  .landing-faq--premium .faq-item--premium {
    border-radius: 1rem;
  }

  .landing-faq--premium .faq-item--premium summary {
    min-height: 68px;
    gap: 0.62rem;
    padding: 0.78rem 3.65rem 0.78rem 0.72rem;
    font-size: 0.89rem;
    line-height: 1.28;
  }

  .landing-faq--premium .faq-item--premium summary::before {
    flex-basis: 1.82rem;
    width: 1.82rem;
    height: 1.82rem;
    border-radius: 0.58rem;
    font-size: 0.64rem;
  }

  .landing-faq--premium .faq-item--premium summary::after {
    right: 0.72rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .landing-faq--premium .faq-item--premium > div {
    padding: 0 0.9rem 1rem 3.15rem;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .landing-faq--premium .faq-item--premium > div::before {
    left: 3.15rem;
    right: 0.9rem;
  }

  .landing-faq--premium .faq-item--premium > div p {
    padding-top: 0.8rem;
  }
}

@media (max-width: 380px) {
  .landing-faq--premium .faq-layout {
    width: calc(100% - 0.65rem);
    padding-inline: 0.55rem;
  }

  .landing-faq--premium .faq-item--premium summary {
    padding-right: 3.35rem;
    font-size: 0.84rem;
  }

  .landing-faq--premium .faq-item--premium > div {
    padding-left: 0.82rem;
  }

  .landing-faq--premium .faq-item--premium > div::before {
    left: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-faq--premium .faq-item--premium,
  .landing-faq--premium .faq-item--premium summary::after,
  .landing-faq--premium .faq-item--premium > div {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium tablet advisor and two-column forms */
@media (min-width: 681px) {
  .quote-section .quote-layout--compact .form-grid,
  .quote-section .quote-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 2vw, 1.35rem);
    row-gap: 1rem;
  }

  .quote-section .quote-form .form-field {
    grid-column: auto;
    min-width: 0;
  }

  .quote-section .quote-form .form-field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .quote-section {
    padding-top: 1.45rem;
  }

  .quote-section__advisor {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: min(100%, 720px);
    max-width: calc(100% - 2rem);
    margin: 0 auto 1.35rem;
    padding: 1.05rem 1.35rem;
    gap: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(18, 82, 173, 0.10);
    border-radius: 1.55rem;
    background:
      radial-gradient(circle at 5% 10%, rgba(88, 169, 47, 0.12), transparent 10rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 251, 253, 0.98) 100%);
    box-shadow:
      0 18px 42px rgba(16, 35, 52, 0.085),
      0 4px 12px rgba(16, 35, 52, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    text-align: left;
  }

  .quote-section__advisor::after {
    content: "";
    position: absolute;
    right: -4.5rem;
    bottom: -5.5rem;
    z-index: -1;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.10), rgba(242, 140, 40, 0) 70%);
    pointer-events: none;
  }

  .quote-section__advisor-photo {
    position: relative;
    width: 124px;
    height: 124px;
    min-width: 124px;
    flex: 0 0 124px;
    padding: 3px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #dff2d5 46%, #ffd9b0 100%);
    box-shadow:
      0 13px 28px rgba(16, 35, 52, 0.12),
      0 0 0 1px rgba(18, 82, 173, 0.055);
  }

  .quote-section__advisor-photo::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82);
    pointer-events: none;
  }

  .quote-section__advisor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .quote-section__advisor-copy {
    display: grid;
    gap: 0.5rem;
    width: auto;
    max-width: none;
    min-width: 0;
    text-align: left;
  }

  .quote-section__advisor-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.58rem;
    margin: 0;
    color: #102334;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.32;
    text-align: left;
    white-space: nowrap;
  }

  .quote-section__advisor-item + .quote-section__advisor-item {
    margin-top: 0;
  }

  .quote-section__advisor-icon {
    width: 1.2rem;
    min-width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: linear-gradient(180deg, #68c23e 0%, #489f25 100%);
    font-size: 0.76rem;
    box-shadow:
      0 4px 9px rgba(71, 162, 38, 0.19),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .quote-section .quote-layout--compact .quote-card {
    width: min(100%, 900px);
  }
}

@media (min-width: 981px) {
  .quote-section .quote-layout--compact .quote-card {
    width: min(100%, 960px);
  }
}

/* Planes vertical responsive repair and premium comparison */

/* Corrige el ancho real del bloque advisor en tablet vertical. */
@media (min-width: 681px) and (max-width: 980px) {
  .quote-section__advisor {
    box-sizing: border-box;
    width: min(calc(100% - 2rem), 720px);
    max-width: none;
  }
}

@media (min-width: 681px) and (max-width: 760px) {
  .quote-section__advisor {
    gap: 0.95rem;
    padding-inline: 1rem;
  }

  .quote-section__advisor-photo {
    width: 110px;
    height: 110px;
    min-width: 110px;
    flex-basis: 110px;
  }

  .quote-section__advisor-item {
    white-space: normal;
  }
}

/* Tratamiento premium de la sección comparativa. */
.landing-section--comparison-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 82, 173, 0.06), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.landing-section--comparison-premium .landing-heading {
  position: relative;
  z-index: 1;
}

.landing-section--comparison-premium .compare-table-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(18, 82, 173, 0.10);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 20px 48px rgba(16, 35, 52, 0.08),
    0 4px 12px rgba(16, 35, 52, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.landing-section--comparison-premium .compare-table {
  min-width: 0;
}

.landing-section--comparison-premium .compare-table th {
  background:
    linear-gradient(180deg, rgba(229, 239, 249, 0.95) 0%, rgba(242, 247, 251, 0.95) 100%);
  color: #102334;
}

.landing-section--comparison-premium .compare-table tbody tr {
  transition: background-color 0.2s ease;
}

.landing-section--comparison-premium .compare-table tbody tr:hover {
  background: rgba(18, 82, 173, 0.025);
}

.landing-section--comparison-premium .source-note {
  margin-top: 1rem;
  border: 1px solid rgba(18, 82, 173, 0.10);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f3f8fc 0%, #edf4f9 100%);
}

/* Tablet vertical: la tabla deja de depender de scroll horizontal. */
@media (min-width: 681px) and (max-width: 980px) {
  .landing-section--comparison-premium .compare-table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .landing-section--comparison-premium .compare-table,
  .landing-section--comparison-premium .compare-table tbody {
    display: block;
    width: 100%;
  }

  .landing-section--comparison-premium .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .landing-section--comparison-premium .compare-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .landing-section--comparison-premium .compare-table tr {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    min-width: 0;
    padding: 1.1rem;
    border: 1px solid rgba(18, 82, 173, 0.10);
    border-radius: 1.15rem;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 253, 0.98) 100%);
    box-shadow:
      0 10px 24px rgba(16, 35, 52, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .landing-section--comparison-premium .compare-table td {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    color: #596878;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .landing-section--comparison-premium .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    color: #1252ad;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .landing-section--comparison-premium .compare-table td:first-child {
    padding-bottom: 0.72rem;
    border-bottom: 1px solid rgba(18, 82, 173, 0.09);
    color: #102334;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
  }
}

/* Mobile: una tarjeta por fila. */
@media (max-width: 680px) {
  .landing-section--comparison-premium .compare-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .landing-section--comparison-premium .compare-table,
  .landing-section--comparison-premium .compare-table tbody {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .landing-section--comparison-premium .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .landing-section--comparison-premium .compare-table tbody {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .landing-section--comparison-premium .compare-table tr {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(18, 82, 173, 0.10);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 35, 52, 0.05);
  }

  .landing-section--comparison-premium .compare-table td {
    display: block;
    padding: 0;
    border: 0;
    color: #596878;
    font-size: 0.86rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .landing-section--comparison-premium .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.22rem;
    color: #1252ad;
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .landing-section--comparison-premium .compare-table td:first-child {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(18, 82, 173, 0.09);
    color: #102334;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 800;
  }
}

/* Final balance: advisor closer and simplified full-bleed mobile carousel */

/* Acerca la ejecutiva al cierre del hero sin superponer elementos. */
@media (min-width: 681px) and (max-width: 980px) {
  .quote-section {
    padding-top: 0.65rem;
  }

  .quote-section__advisor {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

@media (min-width: 981px) {
  .quote-section {
    padding-top: 0.85rem;
  }

  .quote-section__advisor {
    margin-top: 0;
    margin-bottom: 1.1rem;
  }
}

/* Los logos quedan limpios, sin sombras en ninguna resolución. */
.isapre-carousel__item,
.isapre-carousel__item:hover {
  box-shadow: none;
}

.isapre-carousel__item img {
  filter: none;
}

/* Mobile: una sola superficie visual, carrusel de borde a borde. */
@media (max-width: 680px) {
  .isapre-carousel-section {
    padding: 1.3rem 0 2.35rem;
    overflow: hidden;
    background:
      linear-gradient(180deg, #f8fafc 0%, #f3f6f9 100%);
  }

  .isapre-carousel-section > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .isapre-carousel-section > .container::before {
    display: none;
  }

  .isapre-carousel__intro {
    margin: 0 auto 0.9rem;
    padding-inline: 1rem;
  }

  .isapre-carousel__eyebrow {
    margin: 0 auto 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #dc7718;
    box-shadow: none;
    font-size: 0.69rem;
    letter-spacing: 0.085em;
  }

  .isapre-carousel__eyebrow::before {
    width: 0.34rem;
    height: 0.34rem;
    margin-right: 0.42rem;
    box-shadow: none;
  }

  .isapre-carousel__title {
    max-width: 22rem;
    font-size: clamp(1.22rem, 5.4vw, 1.5rem);
    line-height: 1.12;
  }

  /* Se elimina la bajada en mobile para evitar exceso de capas y texto. */
  .isapre-carousel__text {
    display: none;
  }

  .isapre-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0.82rem 0;
    border: 0;
    border-top: 1px solid rgba(18, 82, 173, 0.08);
    border-bottom: 1px solid rgba(18, 82, 173, 0.08);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 249, 251, 0.96) 100%);
    box-shadow: none;
  }

  .isapre-carousel::before,
  .isapre-carousel::after {
    width: 28px;
  }

  .isapre-carousel::before {
    background:
      linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0) 100%);
  }

  .isapre-carousel::after {
    background:
      linear-gradient(270deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0) 100%);
  }

  .isapre-carousel__track {
    gap: 0.72rem;
    animation-duration: 18s;
  }

  .isapre-carousel__item {
    min-width: 164px;
    min-height: 74px;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(18, 82, 173, 0.075);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
  }

  .isapre-carousel__item img {
    max-height: 40px;
  }
}

@media (max-width: 380px) {
  .isapre-carousel__intro {
    padding-inline: 0.8rem;
  }

  .isapre-carousel__item {
    min-width: 150px;
    min-height: 70px;
  }
}

/* Clean white carousel strip without logo cards */
.isapre-carousel {
  background: #ffffff;
  border-color: rgba(18, 82, 173, 0.06);
  box-shadow: none;
}

.isapre-carousel__item,
.isapre-carousel__item:hover {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.isapre-carousel__item img {
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
}

@media (max-width: 680px) {
  .isapre-carousel {
    background: #ffffff;
    border-top: 1px solid rgba(18, 82, 173, 0.055);
    border-bottom: 1px solid rgba(18, 82, 173, 0.055);
    box-shadow: none;
  }

  .isapre-carousel::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .isapre-carousel::after {
    background:
      linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .isapre-carousel__item,
  .isapre-carousel__item:hover {
    min-height: 72px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
}

/* Balanced vertical rhythm for tablet and desktop */

/* Tablet vertical y horizontal */
@media (min-width: 681px) and (max-width: 980px) {
  /* Hero → ejecutiva → formulario */
  .quote-section {
    padding-top: 0.55rem;
    padding-bottom: 1.15rem;
  }

  .quote-section__advisor {
    margin-bottom: 0.9rem;
  }

  /* Formulario → carrusel */
  .isapre-carousel-section {
    padding-top: 1.35rem;
    padding-bottom: 2.15rem;
  }

  .isapre-carousel-section > .container {
    padding-block: 1.35rem;
  }

  /* Secciones editoriales y comerciales */
  .home-section,
  .landing-section,
  .blog-section {
    padding-block: 3rem;
  }

  .section-heading,
  .landing-heading {
    margin-bottom: 1.65rem;
  }

  .section-heading h2,
  .landing-heading h2 {
    margin-bottom: 0.75rem;
  }

  /* FAQ premium */
  .landing-faq--premium {
    padding-block: 2.75rem;
  }

  .landing-faq--premium .faq-layout {
    gap: 1.45rem;
    padding: 1.55rem;
  }

  /* CTA final */
  .home-cta,
  .landing-cta {
    padding-block: 2.65rem;
  }

  .home-cta__inner,
  .landing-cta__inner {
    padding: 1.65rem;
  }
}

/* Escritorio */
@media (min-width: 981px) {
  /* Hero → ejecutiva → formulario */
  .quote-section {
    padding-top: 0.7rem;
    padding-bottom: 1.35rem;
  }

  .quote-section__advisor {
    margin-bottom: 1rem;
  }

  /* Formulario → carrusel */
  .isapre-carousel-section {
    padding-top: 1.65rem;
    padding-bottom: 2.65rem;
  }

  .isapre-carousel-section > .container {
    padding-block: clamp(1.45rem, 2vw, 1.9rem);
  }

  /* Secciones generales: reducción moderada y consistente */
  .home-section,
  .landing-section,
  .blog-section {
    padding-block: clamp(3.25rem, 4.3vw, 4.25rem);
  }

  .section-heading,
  .landing-heading {
    margin-bottom: clamp(1.7rem, 2.4vw, 2.25rem);
  }

  .section-heading h2,
  .landing-heading h2 {
    margin-bottom: 0.85rem;
  }

  /* FAQ: conservar presencia sin exceso de vacío */
  .landing-faq--premium {
    padding-block: clamp(3rem, 4.2vw, 3.85rem);
  }

  .landing-faq--premium .faq-layout {
    gap: clamp(2rem, 3.2vw, 3.25rem);
    padding: clamp(1.75rem, 2.6vw, 2.35rem);
  }

  /* CTA final */
  .home-cta,
  .landing-cta {
    padding-block: clamp(2.75rem, 4vw, 3.5rem);
  }

  .home-cta__inner,
  .landing-cta__inner {
    padding: clamp(1.75rem, 2.8vw, 2.35rem);
  }

  /* Reduce espacios internos secundarios sin comprimir contenido */
  .trust-layout {
    gap: clamp(2rem, 4vw, 3.75rem);
  }

  .trust-callout {
    margin-top: 1.5rem;
  }
}

/* Home content optimization after carousel */
.process-microcopy {
  max-width: 50rem;
  margin: 1.25rem auto 0;
  color: #647382;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.process-trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.process-trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.52rem 0.82rem;
  border: 1px solid rgba(88, 169, 47, 0.14);
  border-radius: 999px;
  background: rgba(247, 252, 245, 0.96);
  color: #3d672f;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
}

.process-trust-signal strong {
  color: #58a92f;
  font-weight: 900;
}

.situations-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.situations-cta .button--secondary {
  border-color: rgba(18, 82, 173, 0.16);
  background: #ffffff;
  color: #1252ad;
  box-shadow: none;
}

.situations-cta .button--secondary:hover {
  border-color: rgba(18, 82, 173, 0.3);
  background: #f4f8fc;
}

.cta-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 0.22em;
}

.cta-text-link:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

@media (max-width: 680px) {
  .process-trust-signals {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 20rem);
    margin-inline: auto;
  }

  .process-trust-signal {
    justify-content: center;
    width: 100%;
  }

  .situations-cta {
    margin-top: 1.25rem;
  }
}

/* Critical responsive structure normalization */

/*
  Esta capa corrige la estructura en tablet y escritorio sin modificar mobile
  ni intervenir todavía la iconografía.
*/

/* Títulos y encabezados con ancho útil real */
@media (min-width: 681px) {
  .section-heading,
  .landing-heading {
    width: 100%;
    max-width: 880px;
  }

  .section-heading h2,
  .landing-heading h2 {
    width: 100%;
    max-width: 32ch;
    text-wrap: balance;
  }

  .section-heading--center {
    max-width: 880px;
  }

  .section-heading--center h2,
  .landing-heading--center h2 {
    max-width: 30ch;
  }

  /* Las FAQ usan una introducción superior amplia, no una columna estrecha. */
  .landing-faq--premium .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-faq--premium .faq-intro--premium {
    position: static;
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
  }

  .landing-faq--premium .faq-intro--premium h2 {
    width: 100%;
    max-width: 30ch;
    margin-inline: auto;
  }

  .landing-faq--premium .faq-intro--premium > p:last-of-type {
    max-width: 62rem;
    margin-inline: auto;
  }

  .landing-faq--premium .faq-intro--premium .button {
    justify-self: center;
  }

  /* La privacidad conserva el icono, pero elimina la columna vacía. */
  .privacy-panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.25rem, 2.8vw, 2.25rem);
    align-items: start;
  }

  .privacy-panel > div:first-child {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .privacy-panel > div:last-child {
    min-width: 0;
  }

  .privacy-panel h2 {
    max-width: 28ch;
    text-wrap: balance;
  }

  /* CTA con una columna de texto realmente amplia. */
  .home-cta__inner > div:first-child,
  .landing-cta__inner > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .home-cta__inner h2,
  .landing-cta__inner h2 {
    width: 100%;
    max-width: 32ch;
    text-wrap: balance;
  }
}

/* Tablet real: incluye 1024px y evita un escritorio comprimido */
@media (min-width: 681px) and (max-width: 1180px) {
  .section-heading--split {
    display: block;
  }

  .section-heading--split > p,
  .section-heading--split > .text-link {
    max-width: 64rem;
    margin-top: 0.8rem;
  }

  .section-heading h2,
  .landing-heading h2 {
    max-width: 34ch;
  }

  /* Cuatro perfiles pasan a una grilla equilibrada de dos columnas. */
  .situations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* CTA apilado en tablet para evitar texto comprimido y botón aislado. */
  .home-cta__inner,
  .landing-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .home-cta__actions {
    width: 100%;
  }

  .landing-cta__inner > .button {
    align-self: flex-start;
  }

  /* La FAQ queda en una sola columna en todo el rango tablet. */
  .faq-layout,
  .landing-faq--premium .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-intro {
    position: static;
  }

  /* El panel de privacidad sigue compacto incluso en tablet estrecha. */
  .privacy-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

/* Tablet horizontal y escritorio compacto: tres pasos, tres columnas reales */
@media (min-width: 901px) {
  .process-grid,
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet vertical: los tres pasos se leen en una secuencia limpia */
@media (min-width: 681px) and (max-width: 900px) {
  .process-grid,
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .privacy-panel > div:first-child {
    justify-content: flex-start;
  }

  .section-heading h2,
  .landing-heading h2,
  .landing-faq--premium .faq-intro--premium h2,
  .home-cta__inner h2,
  .landing-cta__inner h2 {
    max-width: 100%;
  }
}

/* Escritorio amplio: conserva las composiciones horizontales, pero sin títulos estrechos */
@media (min-width: 1181px) {
  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    column-gap: clamp(2rem, 5vw, 5rem);
  }

  .section-heading--split > p,
  .section-heading--split > .text-link {
    max-width: 56ch;
    justify-self: end;
  }

  .home-cta__inner,
  .landing-cta__inner {
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .home-cta__inner > div:first-child,
  .landing-cta__inner > div:first-child {
    max-width: 760px;
  }
}

/* Help center alignment and premium orientation cards */

/* Home / Centro de ayuda: el enlace acompaña al título en vez de quedar aislado a la derecha. */
.editorial-section .editorial-heading--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  width: 100%;
  max-width: 880px;
}

.editorial-section .editorial-heading--stacked > div {
  width: 100%;
}

.editorial-section .editorial-heading--stacked .editorial-heading__all-link {
  align-self: flex-start;
  justify-self: start;
  margin-top: 0;
  padding: 0.15rem 0;
  white-space: nowrap;
}

/* Planes / Orientación personalizada */
.landing-section--orientation-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(88, 169, 47, 0.11), transparent 27rem),
    radial-gradient(circle at 12% 92%, rgba(18, 82, 173, 0.14), transparent 30rem),
    #1d2b3a;
}

.landing-section--orientation-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.landing-section--orientation-premium .orientation-heading {
  max-width: 900px;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.landing-section--orientation-premium .orientation-heading h2 {
  max-width: 30ch;
  color: #ffffff;
}

.landing-section--orientation-premium .orientation-heading__lead {
  max-width: 66ch;
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.landing-section--orientation-premium .orientation-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-section--orientation-premium .orientation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 245px;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(5, 18, 30, 0.20),
    0 3px 10px rgba(5, 18, 30, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.landing-section--orientation-premium .orientation-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #58a92f;
}

.landing-section--orientation-premium .orientation-card:nth-child(2)::after {
  background: #1252ad;
}

.landing-section--orientation-premium .orientation-card:nth-child(3)::after {
  background: #b9533f;
}

.landing-section--orientation-premium .orientation-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.landing-section--orientation-premium .orientation-card__icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(88,169,47,0.17);
  border-radius: 1rem;
  color: #438524;
  background: #f3faef;
}

.landing-section--orientation-premium .orientation-card:nth-child(2) .orientation-card__icon {
  border-color: rgba(18,82,173,0.16);
  color: #1252ad;
  background: #f0f6fd;
}

.landing-section--orientation-premium .orientation-card:nth-child(3) .orientation-card__icon {
  border-color: rgba(185,83,63,0.16);
  color: #a54836;
  background: #fff4f0;
}

.landing-section--orientation-premium .orientation-card__icon .lucide-icon {
  width: 1.55rem;
  height: 1.55rem;
}

.landing-section--orientation-premium .orientation-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 1.75rem;
  padding-inline: 0.48rem;
  border: 1px solid rgba(29,43,58,0.08);
  border-radius: 999px;
  color: #6a7784;
  background: #f6f8fa;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
}

.landing-section--orientation-premium .orientation-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #152638;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.24;
  text-wrap: balance;
}

.landing-section--orientation-premium .orientation-card p {
  margin: 0;
  color: #566675;
  font-size: 0.94rem;
  line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
  .landing-section--orientation-premium .orientation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,1);
    box-shadow:
      0 24px 54px rgba(5,18,30,0.24),
      0 5px 14px rgba(5,18,30,0.10),
      inset 0 1px 0 rgba(255,255,255,1);
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .landing-section--orientation-premium .orientation-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-section--orientation-premium .orientation-card {
    min-height: 0;
    padding: 1.25rem 1.35rem;
  }
}

@media (max-width: 680px) {
  .editorial-section .editorial-heading--stacked {
    gap: 0.65rem;
  }

  .editorial-section .editorial-heading--stacked .editorial-heading__all-link {
    white-space: normal;
  }

  .landing-section--orientation-premium .orientation-heading {
    margin-bottom: 1.35rem;
  }

  .landing-section--orientation-premium .orientation-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }

  .landing-section--orientation-premium .orientation-card {
    min-height: 0;
    padding: 1.05rem;
    border-radius: 1.05rem;
  }

  .landing-section--orientation-premium .orientation-card__header {
    margin-bottom: 0.9rem;
  }

  .landing-section--orientation-premium .orientation-card__icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.85rem;
  }

  .landing-section--orientation-premium .orientation-card__icon .lucide-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .landing-section--orientation-premium .orientation-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-section--orientation-premium .orientation-card {
    transition: none !important;
  }
}

/* Formulario: cápsula superior premium */
.quote-section .quote-layout--compact .quote-card {
  padding-top: 1.45rem;
}

.form-intro {
  width: 100%;
  text-align: center;
}

.form-intro__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: fit-content;
  max-width: 100%;
  min-height: 1.72rem;
  margin: 0 auto 0.64rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #f28c28;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(242, 140, 40, 0.085) 0%,
    rgba(242, 140, 40, 0.045) 100%
  );
  color: #c76512;
  box-shadow:
    0 2px 7px rgba(242, 140, 40, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.form-intro__pill-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  color: #c76512;
}

.form-intro__pill-icon .lucide-icon {
  display: block;
  width: 0.82rem;
  height: 0.82rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-intro__pill-label {
  display: block;
  min-width: 0;
  line-height: 1;
  white-space: nowrap;
}

.form-intro__title {
  width: 100%;
  margin-inline: auto;
  color: #102334;
  text-align: center;
}

.form-intro__text {
  width: 100%;
  max-width: 31rem;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 681px) and (max-width: 980px) {
  .quote-section .quote-layout--compact .quote-card {
    padding-top: 1.3rem;
  }

  .form-intro__pill {
    min-height: 1.66rem;
    margin: 0 auto 0.6rem;
    padding: 0.18rem 0.47rem;
    font-size: 0.59rem;
  }
}

@media (max-width: 680px) {
  .quote-section .quote-layout--compact .quote-card {
    padding-top: 1.1rem;
  }

  .form-intro__pill {
    gap: 0.28rem;
    min-height: 1.6rem;
    margin: 0 auto 0.58rem;
    padding: 0.17rem 0.44rem;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .form-intro__pill-icon {
    width: 0.84rem;
    height: 0.84rem;
  }

  .form-intro__pill-icon .lucide-icon {
    width: 0.76rem;
    height: 0.76rem;
  }

  .form-intro__pill-label {
    white-space: normal;
  }

  .form-intro__title,
  .form-intro__text {
    text-align: center;
  }
}
