@font-face {
  font-family: "bdgrotesk-medium";
  src: url("../fonts/BDOGrotesk/BDOGrotesk-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Outfit, Arial, sans-serif;
  color: #000;
  background: #fff;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between; /* Espacia los elementos dentro del navbar */
  align-items: center; /* Centra verticalmente los elementos */
  max-width: 1320px; /* Limita el ancho máximo del navbar */
  width: 100%; /* Ocupa todo el ancho disponible */
  margin: 0 auto; /* Centra horizontalmente */
  padding: 0 15px; /* 👈 Garantiza 15px a los lados */
  background-color: transparent;
  flex-wrap: wrap; /* Permite que los elementos bajen en móvil */
  gap: 12px; /* Separación entre logo, links y botón */
  margin-top: 16px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 120px;
}
.logo-icon {
  width: 120px;
  height: 42px;
  display: block;
  cursor: pointer;
}
.navbar .logo {
  width: 120px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 120px;
}
.navbar .nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; /* que no se desborde */
  gap: 14px; /* reduce espacio en móvil */
}
.navbar .nav-links a {
  font-size: 1.2rem;
  color: #000;
  font-family: Outfit, Arial;
  text-transform: capitalize;
  position: relative;
  font-size: bold;
}
.navbar .nav-links a:hover {
  color: #000;
}
.navbar .nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00c853;
}
.navbar .btn.get-started {
  padding: 0.5rem 1rem;
  background-color: #00c853;
  color: #fff;
  border-radius: 0px;
  font-size: 1rem;
  font-weight: 500;
  /*border: 2px solid #00c853;*/
}
.navbar .btn.get-started:hover {
  padding: 0.5rem 1rem;
  background-color: #000;
  /*border: 2px solid #00c853;*/
  color: white;
  transition: color 0.3s ease;
}
.hero-text_1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 2.6vw + 0.6rem, 2.75rem);
  color: black;
  font-family:
    Hanken Grotesk,
    Arial;
  font-weight: 400;
  text-align: center;
}
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: Outfit;
}
.hero-buttons .btn.primary {
  background-color: #00c853;
  color: #fff;
  border: 1px solid #00c853;
}
.hero-buttons .btn.primary:hover {
  background-color: #000;
  color: #fff;
  transition: color 0.3s ease;
  border: 1px solid #000;
}
.hero-buttons .btn.secondary {
  background-color: white;
  color: #000;
  border: 1px dashed #ccc;
}
.hero-buttons .btn.secondary:hover {
  background-color: rgb(245, 248, 244);
  color: #000;
  border: 1px solid #000;
  transition: color 0.3s ease;
}
.example-container {
  max-width: 1320px;
  background-color: rgb(245, 248, 244);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  border: 1px dashed #ccc;
  margin-top: 20px;
  width: min(
    1320px,
    calc(100% - 30px)
  ); /* deja 15px por lado si la ventana se achica */
  margin-inline: auto;
  box-sizing: border-box;
}
.example-container .left h1 {
  font-size: clamp(22px, 2.2vw + 1rem, 36px); /* min 22px, max 36px */
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.example-container .left h3 {
  font-size: clamp(18px, 1.5vw + 0.6rem, 24px) !important;
}
@media (max-width: 1024px) {
  .example-container {
    display: flex;
    flex-direction: column; /* apilar */
    gap: 16px;
    padding-inline: 15px; /* refuerza el “aire” lateral mínimo */
  }
  .example-container .right {
    order: -1;
  }
  .example-container .left {
    order: 0;
  }
  .example-container .right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .example-container .right .jane-sad {
    width: clamp(330px, 90vw, 630px) !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .example-container .left {
    width: 100%;
  }
}
.example-container .left {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.example-container .left h1,
.example-container .right h1 {
  color: black; /* Cambia el color del encabezado a azul */
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;
  text-align: left;
  padding-top: 10px;
}
.example-container .left h3,
.example-container .right h3 {
  color: black; /* Cambia el color del encabezado a azul */
  margin: 0 0 24px;
  font-size: 24px;
  text-align: left;
  font-family: Outfit, Ariel;
  font-weight: 400;
}
.example-container .left p,
.example-container .right p {
  color: #425366;
  font-size: 14px;
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 150%;
}
.example-container .right {
  width: 30%; /* El div ocupa el 30% del contenedor padre */
  display: flex; /* Activa Flexbox */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  height: 100%; /* Asegúrate de que tenga altura definida */
  margin: 0 auto;
  text-align: center; /* Opcional, por si el texto necesita centrarse */
}
.example-container .right img,
.example-container .left img {
  width: 80%; /* La imagen ocupa el 50% del ancho del contenedor */
  min-width: 120px;
  height: auto; /* Mantén las proporciones de la imagen */
}
#results-title {
  text-align: center;
  font-size: 24px;
  margin-top: 0px;
}
.results-container {
  max-width: 1320px;
  /* centrado, con mínimo 15px por lado */
  margin-inline: max(15px, calc(50% - 660px));
  margin-block: 30px;

  background-color: #fff;
  border: 1px dashed #ccd3db;
  box-sizing: border-box;
}
.results-container h1 {
  color: black; /* Cambia el color del encabezado a azul */
  margin-top: 30px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}
#results-special-background {
  background-color: rgb(245, 248, 244);
  font-size: 2em;
  font-weight: bold;
  border: 1px dashed #ccc;
}
#results-special-background-2 {
  background-color: #f7f8f9;
  font-size: 2em;
  font-weight: bold;
}
.results-container-child {
  max-width: 1320px;
  background-color: white;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  display: flex;
}
.child-2 {
  flex: 1; /* Hace que cada hijo ocupe la misma proporción (1/4) */
  flex-direction: column; /* Los elementos se apilan verticalmente */
  border: 1px dashed #ccc;
  box-sizing: border-box; /* Asegura que los bordes no se superpongan al ancho */
  display: flex;
  position: relative;
}
.child-2:hover {
  background-color: #f5f8f4;
}
#child-eliminar-border {
  border-right: transparent;
}
.half {
  flex: 1; /* Cada div ocupa el mismo porcentaje del espacio disponible */
  padding: 15px;
  text-align: center;
}
.half h1 {
  font-family: Outfit, Arial;
  font-weight: 700;
  font-size: 40px;
  right: 10px;
  color: #00b86b;
  text-align: center;
}
.child-2 .half .values-title-results {
  font-size: 50px;
  padding: 0px;
  padding-top: 15px;
}
.circle-bg {
  fill: white;
}
.circle-fill {
  fill: none;
  stroke: rgb(243, 243, 245); /* Color para la parte faltante */
  stroke-width: 4;
  stroke-dasharray: 100, 100; /* Rellenar todo el círculo */
}
.circular-chart {
  display: block;
  margin: 5px auto;
  max-width: 70%;
  max-height: 250px;
  margin-top: 20px;
}
.circle_basic {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
  stroke-linecap: round;
}
.circle_standard {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  /*este es el de los bordes stroke-linecap: round;*/
  /*stroke-dasharray: 3.3, 100;  Progreso dinámico */
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
  stroke-linecap: round;
}
.circle_premium {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
  stroke-linecap: round;
}
.circle_ideal {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  /*stroke-dasharray: 3.3, 100;  Progreso dinámico */
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
  stroke-linecap: round;
}
.circle_quick {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  /*stroke-dasharray: 3.3, 100;  Progreso dinámico */
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
  stroke-linecap: round;
}
.circle_max {
  fill: none;
  stroke: #00b86b;
  stroke-width: 2.8;
  stroke-linecap: round;
  /*stroke-dasharray: 3.3, 100;  Progreso dinámico */
  stroke-dashoffset: 0;
  animation: progress 1s ease-out forwards;
}
.percentage_basic {
  fill: black;
  font-family: Outfit, Arial, sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
  dominant-baseline: central;
}
.navbar-end {
  display: flex;
  justify-content: center; /* Espacia los elementos dentro del navbar */
  align-items: center; /* Centra verticalmente los elementos */
  max-width: 1400px; /* Limita el ancho máximo del navbar */
  margin: 0 auto; /* Centra horizontalmente en la ventana */
  margin-bottom: 30px;
  padding: 0 2rem; /* Agrega espacio interno para evitar que los elementos estén pegados a los bordes */
  background-color: transparent;
  margin-top: 30px;
}
.navbar-end .nav-links {
  display: flex;
  gap: 3rem;
}
.navbar-end .nav-links a {
  font-size: 1.5rem;
  color: white;
  font-family: Outfit, Arial;
  text-transform: capitalize;
  position: relative;
  font-size: bold;
}
.navbar-end .nav-links a:hover {
  color: #000;
}
.navbar-end .nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00c853;
}
#small-icons {
  width: clamp(28px, 2.2vw, 40px);
  height: auto;
}
@media (max-width: 1024px) {
  .footer-top-27 {
    grid-template-columns: 1fr; /* logo arriba, links abajo */
    text-align: center;
  }
  .footer-links-27 {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
  .navbar .nav-links {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  #small-icons {
    width: 28px;
  }
}
.circular-chart-unique {
  max-width: 120px;
  max-height: 120px;
}
.circle-bg-unique {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}
.unique-container-xyz123 {
  display: flex; /* Coloca los hijos en línea horizontal */
  width: 100%; /* Ocupa todo el ancho disponible */
  background-color: rgb(245, 248, 244); /* Fondo opcional para diferenciarlo */
  justify-content: space-between; /* Espaciado uniforme entre los hijos */
  align-items: stretch; /* Asegura que los hijos tengan la misma altura */
  padding: 10px; /* Espaciado interno opcional */
  gap: 10px; /* Espaciado entre los hijos */
  margin-top: 24px;
  border: 1px dashed #ccc;
}
.unique-child-xyz123 {
  flex: 1; /* Cada hijo ocupa el mismo espacio proporcional */
  margin: 0; /* Elimina márgenes adicionales */
  background-color: transparent; /* Fondo blanco para destacar */
  justify-content: center; /* Centra el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
  font-size: 1.2rem; /* Tamaño de fuente para los textos */
  color: #000; /* Color del texto */
  box-sizing: border-box; /* Asegura que padding y border no afecten las dimensiones */
}
.unique-child-xyz123 p {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}
.unique-child-xyz123 h3 {
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}
.unique-child-xyz123 h2 {
  margin: 0;
  text-align: center;
  font-size: 40px;
}
.unique-child-xyz123 .fix-size {
  font-size: 20px;
}
.unique-child-xyz123 img {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  width: 60%;
  margin: 0 auto;
}
#headcontact {
  box-sizing: border-box;
  max-width: 1320px;
  /* Margen superior/inferior fijo y auto en laterales para centrar */
  margin: 20px auto;
  /* Esto limita el ancho y deja 15px libres a cada lado */
  padding: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  #headcontact {
    display: block; /* Si antes era flex, esto lo sobrescribe */
    /* opcional: ajustar ancho y paddings en mobile
    max-width: 100%;
    */
  }
}
.hidden {
  display: none;
}
.hidden {
  display: none;
}
.contact-us-message {
  width: 100%;
  align-self: center;
  text-align: center;
}
.submit-btn {
  padding: 12px 20px;
  font-size: 18px;
  background-color: #00c853;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 200px;
  align-self: center;
  font-weight: 700;
}
.submit-btn:hover {
  background-color: #45a049;
}
@media (max-width: 768px) {
  .submit-btn {
    width: 100%;
  }
}
.headtext-tp {
  font-size: clamp(16px, 1.8vw, 20px); /* min 14px, crece con 1.8vw, max 18px */
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
.Fynia-container-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}
.Fynia-btn {
  width: 350px;
  height: 300px;
  padding: 15px;
  text-decoration: none;
  display: block; /* Cambié a block para que ocupe toda el área */
  justify-content: space-between;
  align-items: center;
  position: relative; /* Para asegurarnos de que el hover sea detectado correctamente */
}
.Fynia-btn-text {
  text-align: left;
  font-size: 30px;
}
.Fynia-btn-image {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.Fynia-btn img {
  width: 200px;
  height: 200px;
}
#textbuytoken {
  display: inline-block;
  color: #005c36;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgb(245, 248, 244);
  border: 1px dashed #00c853;
  border-radius: 128px;
  font-family: Outfit, Arial;
  font-size: 18px;
  font-weight: 400;
}
#textbuytoken-p {
  color: #000;
  font-family: Outfit, Arial;
  font-size: 16px;
  text-align: left;
  margin-top: 10px;
}
#buytokenbt,
#startopti {
  background-color: white;
  border: dashed 1px #ccc;
}
.get-title-text {
  text-align: left;
  font-size: 28px;
  margin-top: 10px;
  font-weight: 600;
  color: #000;
}
#buytokenbt:hover,
#startopti:hover {
  border: 1px dashed #00c853;
}
.form-left-examples {
  width: 500px;
}
.add-container-gs {
  display: grid;
  gap: 15px; /* espacio entre las cards, puedes ajustar este valor */
  padding: 2rem; /* opcional, para darle margen interno al contenedor */
  border: 1px dashed #ccc;
  background-color: rgb(245, 248, 244);
  margin: 0 auto !important;
}
.grid-item-examples {
  background: transparent;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}
#examples-title {
  font-size: 2em;
}
.img-examples-card {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.end-message {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 16px; /* respiro lateral en móvil */
  text-align: center;
}
.end-message .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
#end-message-h3 {
  font-size: clamp(1.25rem, 1.6vw + 0.7rem, 1.75rem);
  line-height: 1.35;
  max-width: 70ch; /* limita longitud de línea */
  margin: 16px auto 8px;
}
#get-started-aux {
  display: inline-flex;
  margin-bottom: 30px;
  background-color: #00c853;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: Outfit;
  border-radius: 0px;
  justify-content: center;
  min-height: 44px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #end-message-h3 {
    font-size: clamp(1.15rem, 1.2vw + 0.9rem, 1.5rem);
    margin-top: 12px;
  }
  #get-started-aux {
    width: 100%; /* que no se “achique” */
    max-width: 360px; /* ancho cómodo en móvil */
    padding: 12px 16px; /* un poco menos de padding */
  }
}
@media (max-width: 480px) {
  #end-message-h3 {
    margin-bottom: 6px;
  }
  #get-started-aux {
    max-width: 320px;
  }
}
#get-started-aux:hover {
  background-color: #000;
  /*border: 2px solid #00c853;*/
  color: white;
  transition: color 0.3s ease;
}
.title-cards-h2-right {
  font-size: 40px;
  text-align: right;
}
.opti-h2 {
  font-size: clamp(18px, 1.2vw + 0.6rem, 1.25rem);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2;
  margin-inline: auto; /* centrar texto */
}
.Fynia-grandchild {
  background-color: white;
  border: dashed 1px #ccc;
}
.Fynia-grandchild:hover {
  border: 0;
  border: 1px dashed #00c853;
}
#Fynia-parent-container {
  border: dashed 1px #ccc;
  display: flex;
  gap: 15px;
  padding: 15px;
  max-width: 1320px;
  margin: 0 auto;
  background-color: rgb(245, 248, 244);
}
.Fynia-box {
  gap: 15px;
  flex: 1;
  padding: 5px;
}
#Fynia-child-left {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  padding: 0px;
  text-align: center;
  margin: 0 auto;
}
#Fynia-child-left img {
  width: 70%;
  height: auto;
}
#Fynia-child-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espacio de 15px entre cada hijo */
  border-color: transparent;
  padding: 0px;
}
.optimization-h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.optimization-title-p {
  font-size: 16px;
}
.optimization-title-p-2 {
  font-size: 16px;
  font-family: Outfit, Arial;
  font-weight: 700;
  color: #00b86b;
  text-align: center;
}
.titles-optimizacion-h1 {
  font-size: 60px;
  max-width: 1320px;
  margin: 0 auto;
  font-weight: 500;
  margin-top: 90px;
}
.titles-optimizacion-h3 {
  font-size: 22px;
  max-width: 1320px;
  text-align: left;
  margin: 0 auto;
  font-weight: 400;
  margin-bottom: 30px;
}
#titles-optimizacion-left {
  text-align: left;
}
#titles-optimizacion-right {
  text-align: right;
}
#Fynia-advanced-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px dashed #ccc;
  padding: 0;
  max-width: 1320px;
  margin-block-start: 30px;
  /* centrado cuando hay espacio y, si no, mínimo 15px por lado */
  margin-inline: max(15px, calc((100vw - 1320px) / 2));
  background-color: rgb(245, 248, 244);
}
.Fynia-adv-header {
  display: flex;
  gap: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0; /* Sin margen para que toque el borde superior */
  padding: 10px; /* Ajusta si quieres más espacio */
}
#Fynia-adv-header-baseline {
  background-color: black;
}
#Fynia-adv-header-basic {
  background-color: #e0e0e0;
}
#Fynia-adv-header-standard {
  background-color: #aed6f1;
}
#Fynia-adv-header-premium {
  background-color: #a3e4d7;
}
#Fynia-adv-header-ideal {
  background-color: #82e0aa;
}
#Fynia-adv-header-quick {
  background-color: #f7dc6f;
}
#Fynia-adv-header-max {
  background-color: #f1948a;
}
#Fynia-adv-header-left {
  flex: 1;
  margin: 0;
}
#Fynia-adv-header-right {
  flex: 2;
  margin: 0;
  padding: 10px;
}
#Fynia-adv-title {
  margin: 0;
  font-size: 46px;
  color: white;
}
#Fynia-adv-subtitle {
  margin: 5px 0 0;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
}
.subtitle-p-results {
  text-align: right;
  font-size: 18px;
  color: #000;
}
#Fynia-adv-top-row {
  display: flex;
  gap: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
#Fynia-adv-loan-details {
  flex: 0 0 310px;
  display: flex;
  flex-direction: column;
  height: 560px;
  gap: 15px;
}
#Fynia-adv-loan-details .Fynia-adv-loan-details-h2-title {
  font-size: 20px;
  color: black;
}
.Fynia-adv-detail-box {
  background-color: white;
  border: 1px dashed #e5e7eb;
  flex: 1;
  height: 272px;
  border-radius: 0px;
}
.Fynia-adv-detail-box:hover {
  border: 1px dashed #00c853;
}
.Fynia-adv-detail-box h3 {
  margin-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
}
.title-results-1 {
  font-size: 32px;
}
.final-insights {
  font-size: 20px;
  text-align: center;
  flex-grow: 1;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  color: #000;
  margin: 0 auto;
  min-width: 0; /* permite que se adapte al ancho disponible */
  width: 100%; /* ocupa el ancho del contenedor */
  white-space: normal; /* permite saltos de línea */
  overflow-wrap: anywhere; /* rompe palabras/líneas muy largas */
  word-break: break-word; /* respaldo */
}
#Fynia-adv-key-metrics-org {
  flex: 4;
  display: flex;
  flex-direction: column;
}
#Fynia-adv-key-metrics {
  display: flex;
  gap: 15px;
  justify-content: space-around;
  height: 180px;
}
.Fynia-adv-metric-box {
  border: 1px dashed #e5e7eb;
  flex: 1;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Para evitar desbordamientos */
  border-radius: 0px;
}
.Fynia-adv-metric-box:hover {
  border: 1px dashed #00c853;
}
.Fynia-adv-metric-box h3 {
  font-size: 24px;
  font-weight: 400;
  background-color: transparent;
  display: block; /* asegura barra a todo el ancho */
  width: 100%;
  padding: 8px 12px; /* (opcional) mejor altura visual */
  color: black;
  margin: 0;
  /*border-radius: 12px 12px 0 0;*/
  border-radius: 0px;
  border-bottom: 1px dashed #e5e7eb;
}
.Fynia-adv-metric-box h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 0;
  display: flex; /* nuevo */
  align-items: center; /* nuevo: centrado vertical */
  justify-content: center; /* nuevo: centrado horizontal */
  flex: 1 1 auto; /* ocupa el espacio bajo el h3 */
}
.comparison-p-aux {
  background-color: #d5f3e6;
  border: 1px solid #007b47;
  border-radius: 300px;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  color: #27ae60;
  font-weight: 500;
  font-size: 20px;
}
#basic-metric-box-tra {
  margin-top: 26px;
}
#Fynia-adv-chart-row-1 {
  display: flex; /* ensure it's a flex container */
  margin-top: 15px;
  gap: 15px; /* separación entre columnas */
}
#Fynia-adv-main-chart-1 {
  flex: 1;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-color: white;
  border: 1px dashed #e5e7eb;
  border-radius: 0px;
}
#Fynia-adv-main-chart-1:hover {
  border: 1px dashed #00c853;
}
#Fynia-adv-chart-row {
  border: 1px dashed #e5e7eb;
  padding: 15px;
  border-radius: 0px;
  height: auto;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  background-color: white;
}
#Fynia-adv-chart-row:hover {
  border: 1px dashed #00c853;
}
#Fynia-adv-main-chart {
  text-align: center;
  flex: 1;
  position: relative;
}
#Fynia-adv-middle-row {
  display: flex;
  gap: 15px;
  margin-left: 15px;
  margin-right: 15px;
  background-color: transparent;
}
.Fynia-adv-middle-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.Fynia-adv-middle-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px dashed #e5e7eb;
  text-align: center;
  background-color: white;
  overflow: hidden; /* Ensure inner content doesn't overflow the borders */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  border-radius: 0px;
  padding: 10px;
}
.Fynia-adv-middle-box:hover {
  border: 1px dashed #00c853;
}
.Fynia-adv-middle-box h2 {
  margin: 0;
  font-size: 40px;
}
.Fynia-adv-middle-top {
  height: 40px;
}
.Fynia-adv-middle-top,
.Fynia-adv-middle-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Fynia-adv-middle-top h3 {
  /* min = 14px (mobile), fluido con 1.6vw, max = 18px (desktop actual aprox.) */
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.2; /* cabe bien dentro de los 40px de alto */
  margin: 0;
  text-align: center; /* por si acaso en algún contenedor cambia el alineado */
}
#Fynia-adv-dates-row {
  display: flex;
  gap: 15px;
  margin-left: 15px;
  margin-right: 15px;
  background-color: transparent;
}
.Fynia-adv-date-box {
  flex: 1;
  border: 1px dashed #e5e7eb;
  padding: 10px;
  background-color: white;
  border-radius: 0px;
}
.Fynia-adv-date-box:hover {
  border: 1px dashed #00c853;
}
#Fynia-adv-bottom-row {
  display: flex;
  gap: 15px;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap; /* <-- clave */
  align-items: stretch;
}
#Fynia-adv-bottom-row > * {
  flex: 1 1 0; /* <-- en lugar de flex:none */
  min-width: 0; /* <-- clave en flexbox */
  max-width: 100%;
}
#Fynia-adv-final-insights {
  flex: 3;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 15px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: white;
  white-space: normal;
}
#Fynia-adv-efficiency {
  flex: 1;
  border: 1px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  background-color: white;
}
#Fynia-adv-efficiency:hover {
  border: 1px dashed #00c853;
}
#Fynia-adv-efficiency-circle {
  margin: 20px auto 0;
  width: 100px;
  height: 100px;
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-bg-mini {
  fill: white;
}
.circle-fill-mini {
  fill: none;
  stroke: white; /* Color para la parte faltante */
  stroke-width: 4;
  stroke-dasharray: 100, 100; /* Rellenar todo el círculo */
}
.circular-chart-mini {
  display: block;
  margin: 5px auto;
  max-width: 80%;
  max-height: 250px;
  margin-top: 20px;
}
.percentage_basic-mini {
  fill: black;
  font-family: Outfit, Arial, sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
  dominant-baseline: central;
}
.circle-bg-micro {
  fill: white;
}
.circle-fill-micro {
  fill: none;
  stroke: #eee; /* Color para la parte faltante */
  stroke-width: 4;
  stroke-dasharray: 100, 100; /* Rellenar todo el círculo */
}
.circular-chart-micro {
  display: block;
  max-width: 100%;
  max-height: 250px;
  display: inline-block;
}
#Fynia-monthly-title-7 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(24px, 2.5vw, 30px); /* Min 22px, escala, Max 36px */
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  font-family: Outfit, Arial;
  margin-bottom: 30px;
}
#Fynia-monthly-intro-7 {
  margin: 0 0 20px;
  font-size: clamp(17px, 2vw, 20px); /* Min 16px, escala, Max 20px */
  line-height: 1.4;
  text-align: center;
  font-family: Outfit, Arial;
  color: black;
}
.circular-chart-micro-v2 {
  display: block;
  max-width: 70%;
  max-height: 250px;
  display: inline-block;
}
.circle-bg-micro-v2 {
  fill: #f3f3f6;
}
.circle-fill-micro-v2 {
  fill: none;
  stroke: white; /* Color para la parte faltante */
  stroke-width: 4;
  stroke-dasharray: 100, 100; /* Rellenar todo el círculo */
}
#Fynia-efficiency-9 {
  background-color: rgb(245, 248, 244); /* Gris suave */
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  box-sizing: border-box;
  max-width: 1320px;
  margin: 0 auto;
  border: 1px dashed #ccc;
  font-family: Outfit, Arial, sans-serif;
  margin-bottom: 30px;
}
#Fynia-efficiency-9-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: left;
}
#Fynia-efficiency-9-subtitle {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 20px;
  text-align: left;
}
#Fynia-efficiency-9-image {
  margin-bottom: 20px;
}
#Fynia-efficiency-9-image img {
  display: block; /* elimina posibles espacios en línea */
  max-width: 1320px; /* ancho máximo */
  width: 100%; /* escala hasta el ancho del contenedor */
  height: auto; /* ajusta la altura proporcionalmente */
  margin: 0 auto;
  border: 1px dashed #ccc; /* opcional: centra la imagen si es más pequeña */
}
#Fynia-efficiency-9-image img:hover {
  border: 1px dashed #00c853;
}
.img-first-dashboard {
  width: 100%;
  height: auto;
  object-fit: cover; /* o contain, según el efecto deseado */
  display: block;
}
.img-first-dashboard-micro,
.img-first-dashboard-micro-2 {
  object-fit: cover; /* o contain, según el efecto deseado */
  display: block;
  margin: 0 auto;
  align-items: center;
}
.img-first-dashboard-micro {
  margin-top: -20px;
  clip-path: inset(15px 0 0 0);
  height: 90%;
  width: auto;
}
.img-first-dashboard-micro-2 {
  height: 220px;
  width: auto;
}
#Fynia-efficiency-9-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
#loan-details-h3-details-basic,
#basic-metric-box {
  background-color: #e0e0e0;
  color: #000;
}
#loan-details-h3-details-standard,
#standard-metric-box {
  background-color: #aed6f1;
  color: #000;
}
#loan-details-h3-details-premium,
#premium-metric-box {
  background-color: #a3e4d7;
  color: #000;
}
#loan-details-h3-details-ideal,
#ideal-metric-box {
  background-color: #82e0aa;
  color: #000;
}
#loan-details-h3-details-quick,
#quick-metric-box {
  background-color: #f7dc6f;
  color: #000;
}
#loan-details-h3-details-max,
#max-metric-box {
  background-color: #f1948a;
  color: #000;
}
#Fynia-adv-final-insights-alternatives {
  display: block; /* más simple (no flex adentro) */
  border: 1px dashed #e5e7eb;
  padding: 15px;
  background: #fff;
  border-radius: 0px;
  min-width: 0;
  max-width: 100%;
}
#Fynia-adv-final-insights-alternatives:hover {
  border: 1px dashed #00c853;
}
#Fynia-adv-final-insights-alternatives p.final-insights {
  margin: 0;
  display: block;
  white-space: normal !important; /* por si heredó nowrap */
  overflow-wrap: anywhere; /* parte URLs/palabras largas */
  word-break: break-word; /* respaldo */
  text-align: center;
}
#loan-comparison-11 {
  max-width: 1320px;
  margin: 0 auto;
  background: #fff;
  margin-top: 60px;
  margin-bottom: 60px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
#loan-comparison-table-11 {
  width: min(100% - 30px, 1320px); /* 15px por lado = 30px total */
  margin-inline: auto; /* centra el elemento */
  border-collapse: collapse;
}
#loan-comparison-toprow-11 td {
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
}
.loan-comparison-emptycell-11 {
  border: 1px solid #ccc;
  width: 100px;
  background-color: rgb(245, 248, 244);
}
.loan-comparison-col-11 {
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  width: 150px;
}
.loan-comparison-alt-title-11 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Outfit, Arial;
}
#loan-comparison-alt-title-11-ideal {
  background-color: #82e0aa;
}
#loan-comparison-alt-title-11-premium {
  background-color: #a3e4d7;
}
#loan-comparison-alt-title-11-standard {
  background-color: #aed6f1;
}
#loan-comparison-alt-title-11-basic {
  background-color: #e0e0e0;
}
#loan-comparison-alt-title-11-quick {
  background-color: #f7dc6f;
}
#loan-comparison-alt-title-11-max {
  background-color: #f1948a;
}
#loan-comparison-alt-title-11-baseline {
  background-color: #30313c;
  color: #fff;
}
.loan-comparison-alt-month-11 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
.loan-comparison-small-11 {
  font-size: 20px;
  color: #000;
  font-weight: 400;
}
#loan-comparison-table-11 td,
#loan-comparison-table-11 th {
  text-align: center;
  border: 1px dashed #ccc;
  padding: 10px;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  font-family: Outfit, Arial;
}
#loan-comparison-table-11 td:hover,
#loan-comparison-table-11 th:hover {
  border: 1px dashed #00c853;
  background-color: rgb(245, 248, 244);
  color: #000;
}
.loan-comparison-label-11 {
  background-color: rgb(245, 248, 244);
  font-weight: 600;
  width: 120px;
  text-align: left;
  font-family: Outfit, Arial;
}
#loan-comparison-label-11-aux {
  background-color: #00b86b;
  color: white;
}
.loan-comparison-rank-11 {
  font-size: 18px;
  font-weight: 600;
}
.loan-comparison-consider-11 {
  font-size: 20px !important;
  font-weight: 300 !important;
  text-align: center !important;
  padding: 15px !important;
}
.rank-1st-11 {
  color: #2eb82e;
}
.rank-1st-11,
.rank-2nd-11,
.rank-3rd-11,
.rank-4th-11 {
  background-color: rgb(245, 248, 244);
}
.rank-2nd-11,
.rank-3rd-11,
.rank-4th-11 {
  color: black;
}
.loan-comparison-savings-11 {
  display: block;
  color: #27ae60; /* Verde para savings */
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 300px;
  border: 1px dashed #007b47;
  margin-top: 10px;
  margin-bottom: 10px;
}
.loan-comparison-savings-monthly {
  display: block;
  color: #000; /* Verde para savings */
  font-size: 16px;
  font-weight: 500;
  background: white;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 300px;
  border: 1px dashed #000;
  margin-top: 10px;
  margin-bottom: 10px;
}
#lcsm-empty {
  display: block;
  color: #000; /* Verde para savings */
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 300px;
  border: 1px dashed transparent;
  margin-top: 10px;
  margin-bottom: 10px;
}
#lcsm-empty-2 {
  width: 100%;
  border: transparent;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
}
.loan-comparison-shorter-11 {
  color: #27ae60; /* Verde para tiempo más corto */
  font-size: 13px;
}
.efficiency-11 {
  font-size: 16px;
  font-weight: 600;
}
.eff-100-11 {
  color: #27ae60;
}
.eff-90-11,
.eff-80-11,
.eff-70-11 {
  color: black;
}
#Fynia-container-20 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: Outfit, Arial, sans-serif;
  background-color: #fff; /* Opcional: color de fondo */
  font-weight: 400;
}
#Fynia-bottom-row-20 {
  text-align: center; /* Centra el texto y el botón */
  margin-top: 40px;
}
#Fynia-download-button-20 {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 20px;
}
#Fynia-download-button-20:hover {
  background-color: #000;
}
.comparison-bg {
  background-color: rgb(245, 248, 244);
  padding-bottom: 20px;
  padding-top: 20px;
  padding-inline: 15px;
}
#comparison-container-21 {
  display: flex; /* Para tener 2 columnas: izq y der */
  border: 1px dashed #ccc;
  overflow: hidden; /* Para que no sobresalgan bordes */
  font-family: Arial, sans-serif;
  max-width: 1320px;
  margin: 0 auto;
  background-color: rgb(245, 248, 244); /* Fondo blanco */
  margin-bottom: 30px;
}
#comparison-container-21:hover {
  border: 1px dashed #00c853;
}
.comparison-left-21 {
  display: flex;
  flex-direction: column;
  flex: 0 0 220px; /* Ancho fijo o ajusta según prefieras */ /* Gris suave */
  padding: 20px;
  border-right: 1px dashed #ccc;
  text-align: center;
  justify-content: center;
}
#comparison-container-21-basic {
  background-color: #e0e0e0;
}
#comparison-container-21-standard {
  background-color: #aed6f1;
}
#comparison-container-21-premium {
  background-color: #a3e4d7;
}
#comparison-container-21-ideal {
  background-color: #82e0aa;
}
#comparison-container-21-quick {
  background-color: #f7dc6f;
}
#comparison-container-21-max {
  background-color: #f1948a;
}
#comparison-left-title-21 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-descrip-21 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-amount-21 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-unit-21 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-left: 4px;
}
#comparison-right-21 {
  flex: 1; /* Ocupará el espacio restante */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  grid-template-rows: repeat(
    2,
    auto
  ); /* 2 filas */ /* Línea de 1px entre cajas */
  background-color: #ccc; /* Para simular líneas entre las cajas */
}
.comparison-box-21 {
  background-color: #fff; /* Cada caja con fondo blanco */
  padding: 15px;
  text-align: center;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  border: 1px dashed #ccc;
}
.comparison-box-21:hover {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #00c853;
}
.comparison-box-desc-21#comparison-box-desc-21-textdescript {
  display: block !important; /* anula el display:flex de la clase */
  align-self: center; /* centra en el eje cruzado del flex padre */
  margin-block: auto; /* empuja hacia el centro vertical */
  margin-inline: 0;
  height: auto !important; /* evita height:100% que rompía el centrado */
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  font-family: Outfit, Arial;
}
#comparison-box-desc-21-textdescript .highlight-21 {
  display: inline;
  white-space: nowrap;
}
#comparison-box-desc-21-textdescript {
  display: block !important;
  margin: 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
}
#comparison-right-21 .comparison-box-21:has(.comparison-box-score-21) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* h3 arriba */
  align-items: center; /* centrado horizontal */
}
#comparison-right-21 .comparison-box-score-21 {
  margin: auto 0; /* centra el GOOD en la vertical */
}
#comparison-right-21
  .comparison-box-21:has(#comparison-box-desc-21-textdescript) {
  display: flex;
  align-items: center; /* centro vertical */
  justify-content: center; /* centro horizontal */
}
.comparison-box-title-21 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
.comparison-box-value-21 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-box-value-21-align-tra {
  margin-top: 40px;
  font-size: 44px;
}
.comparison-box-sub-21 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 500;
  color: #27ae60; /* Verde para destacar ahorro */
  display: block;
  background: #d5f3e6;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 300px;
  border: 1px solid #007b47;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-family: Outfit, Arial;
}
#comparison-box-sub-21-left {
  width: 100%;
  background: white;
  font-size: 16px;
  font-weight: 500;
}
#comparison-box-sub-21-left-2 {
  width: 100%;
  border: transparent;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}
#comparison-box-sub-21-left-3 {
  width: 100%;
  border: transparent;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-align: right;
  padding-top: 0px;
}
#comparison-box-sub-21-left-211 {
  width: 100%;
  border: transparent;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  padding: 0;
}
#comparison-box-sub-21-left-211:hover {
  font-weight: 700;
}
#Fynia-adv-middle-top-h3-aux {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}
.comparison-box-desc-21 {
  display: flex;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}
.comparison-box-score-21 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #2ecc71; /* Verde para "GOOD" */
  margin-top: 26px;
}
#donut-chart-21 {
  display: inline-block;
  margin-top: 8px;
}
.donut-svg-21 {
  width: 100px;
  height: 100px;
  /* ❌ QUITAR ESTA LÍNEA */
  /* transform: rotate(-90deg); */
}
.donut-fill-21 {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.donut-bg-21 {
  fill: none;
  stroke: #eee;
  stroke-width: 3;
}
.donut-fill-21 {
  fill: none;
  stroke: #00b86b;
  stroke-width: 3;
  stroke-linecap: round;
  animation: donut-anim-21 1s ease-out forwards;
}
.donut-text-21 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  fill: #000;

  /* centrado dentro del SVG */
  text-anchor: middle;
  dominant-baseline: middle;

  /* forzamos que NO tenga ninguna rotación */
  transform: none !important;
}
.submit-button-24 {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: block;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
  max-width: 80%;
  min-width: 200px;
}
.submit-button-24:hover {
  background-color: #000;
}
.site-footer-27 {
  background: #000;
  color: #fff;
  font-family: Outfit, Arial;
  padding: 40px 0;
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 40px;
}
.footer-top-27 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 20px;
}
.footer-logo-27 h2 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}
.footer-logo-27 img {
  width: 140px;
  height: auto;
}
.footer-logo-27 p {
  margin: 5px 0 0;
  color: #fff;
  font-size: 14px;
}
.footer-links-27 {
  display: grid;
  grid-auto-flow: column;
  gap: clamp(12px, 4vw, 28px);
}
.footer-links-27 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer-links-27 ul li {
  margin: 8px 0;
}
.footer-links-27 ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links-27 ul li a:hover {
  color: #ccc;
}
.footer-divider-27 {
  width: 80%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid white;
  margin-bottom: 20px;
}
.footer-middle-27 {
  margin-bottom: 20px;
}
.social-icons-27 {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  gap: 20px;
}
.social-icons-27 li a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icons-27 li a:hover {
  color: #fff;
}
.footer-bottom-27 {
  font-size: 14px;
  color: #fff;
}
#card-examples-examples {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center; /* centrado vertical de cada celda */
  text-align: center;
  margin: 0 auto;
}
.form-left-examples {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  border-radius: 0px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  display: grid;
  height: 100%; /* si prefieres que ajuste a contenido, retira esta línea */
}
.form-left-examples:hover .grid-item-examples,
.form-left-examples:hover {
  border-color: #19d079;
}
.form-left-examples:nth-child(odd) {
  justify-self: end;
}
.form-left-examples:nth-child(even) {
  justify-self: start;
}
.title-cards-h2 {
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
  font-size: clamp(1.25rem, 1.1vw + 1rem, 1.75rem);
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 15px;
}
.p-card-examples {
  font-size: 1rem;
  padding-left: 15px;
  padding-right: 15px;
  color: #000;
  text-align: left;
}
.grid-container-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
}
.grid-item-examples {
  padding: 0.75rem;
  border: 1px dashed #ccc;
  text-align: center;
  background-color: white;
  border-radius: 0px;
}
.grid-item-examples h2 {
  font-size: clamp(1.25rem, 1.1vw + 1rem, 1.75rem);
}
.grid-item-examples h3 {
  font-size: clamp(0.5rem, 1.1vw + 1rem, 1rem);
}
.submit-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background-color: #00b86b;
  color: #fff;
  text-decoration: none;
}
.progress-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.progress-bar-results {
  width: 90%; /* Ocupa el 90% del ancho de .Fynia-adv-metric-box */
  height: 15px; /* Altura de la barra (ajústala a tu gusto) */
  background-color: #d5f3e6; /* Color de la zona vacía */
  /*background-color: #30313C;*/
  border-radius: 10px; /* Redondea ambos extremos */
  overflow: hidden; /* Para que el .progress-fill no sobresalga de los bordes */
  border: 1px solid #ccc;
}
.progress-bar-results-mp {
  width: 90%; /* Ocupa el 90% del ancho de .Fynia-adv-metric-box */
  height: 15px; /* Altura de la barra (ajústala a tu gusto) */
  background-color: #ffa6a6; /* Color de la zona vacía */
  border-radius: 10px; /* Redondea ambos extremos */
  overflow: hidden; /* Para que el .progress-fill no sobresalga de los bordes */
  border: 1px solid #ccc;
}
.progress-fill-results {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #b0b0b0; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-standard {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #5dade2; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-premium {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #48c9b0; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-ideal {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #28b463; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-quick {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #f39c12; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-max {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #c0392b; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.progress-fill-results-mp {
  height: 100%; /* Ocupa toda la altura de .progress-bar */
  background-color: #b0b0b0; /* Color de la zona de progreso */
  border-radius: 10px; /* Solo esquinas izquierdas redondeadas */
}
.arrow {
  color: #11b823; /* Color de la flecha */
  font-size: 26px; /* Tamaño de la flecha */
  font-weight: bold; /* Negrilla para la flecha */
  line-height: 1; /* Asegura alineación vertical */
}
.arrow-mp {
  color: #ae0000; /* Color de la flecha */
  font-size: 26px; /* Tamaño de la flecha */
  font-weight: bold; /* Negrilla para la flecha */
  line-height: 1; /* Asegura alineación vertical */
}
.circular-chart-firstaux {
  display: block;
  margin: 20px auto;
  max-width: 40%;
  max-height: 250px;
  background-color: black; /* Fondo negro detrás del SVG */
}
.circle-bg-firstaux {
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-linecap: round;
}
.footer-words {
  font-size: 14px;
  font-family: Outfit, Arial;
  color: white;
}
.footer-words:hover {
  color: rgb(25, 231, 110) !important;
  transition: color 0.3s ease;
}
.submit-btn-payment {
  padding: 0.5rem 1rem;
  background-color: #00c853;
  color: #fff;
  border-radius: 0px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #00c853;
  cursor: pointer;
}
.submit-btn-payment:hover {
  background-color: #000;
  border: #000 1px solid;
  transition: 0.2s;
  border: 2px solid #000;
}
.note-text-examples {
  font-size: 14px !important;
  color: #000 !important;
  font-style: italic !important;
  font-weight: normal !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.kpi-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.kpi-compare__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.kpi-compare__value {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0aa15f; /* verde ahorro */
}
.kpi-compare__label {
  margin-top: 2px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #404040; /* gris medio */
  margin-bottom: 10px;
}
.kpi-compare__divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 1px;
}
.arrow {
  font-size: 16px;
  line-height: 1;
}
@media (prefers-color-scheme: dark) {
  .kpi-compare__label {
    color: #404040;
  }
  .kpi-compare__divider {
    background: rgba(255, 255, 255, 0.16);
  }
}
.kpi-compare__value--neutral {
  color: #111; /* texto negro */
}
.arrow--up {
  color: #dc2626;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  #Fynia-adv-final-insights-alternatives.fynia-insights .ins-grid {
    grid-template-columns: 1fr;
  }
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-box h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi {
  flex: 1;
  text-align: center;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi__value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi__value--up {
  color: #111;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi__value--down {
  color: #0aa15f;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-kpi__label {
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-sep {
  flex: 0 0 1px;
  align-self: stretch;
  background: #d1d5db;
  border-radius: 1px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-chips {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-chip--good {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  color: #065f46;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-note {
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-nominal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-nominal li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .ins-nl-label {
  color: #6b7280;
  font-size: 13px;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .arrow {
  font-size: 16px;
  line-height: 1;
  color: inherit;
}
#Fynia-adv-final-insights-alternatives.fynia-insights .arrow--up {
  color: #dc2626;
}
.ix-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch !important; /* same height */
  justify-items: stretch; /* full width in each cell */
}
@media (max-width: 1100px) {
  .ix-row {
    grid-template-columns: 1fr;
  }
}
.ix-row > * {
  display: flex;
  flex-direction: column; /* para que el contenido interno distribuya bien */
  box-sizing: border-box;
  margin: 0; /* evita que un margin altere alturas visuales */
}
.ix-row > .ix-card,
.ix-card {
  background: #fff;
  border: 1px dashed #e5e7eb;
  border-radius: 0px;
  padding: 16px;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.ix-row > .ix-card:hover {
  border: 1px dashed #00c853;
}
.ix-row > * > .ix-card {
  flex: 1;
}
.ix-card h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
#Fynia-adv-final-insights-alternatives,
#Fynia-adv-efficiency {
  width: auto;
  flex: none;
}
.ix-map {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ix-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ix-item .ix-copy {
  display: flex;
  flex-direction: column;
}
.ix-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ix-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}
.ix-item--up .ix-value {
  color: #111;
}
.ix-item--down .ix-value {
  color: #0ea463;
}
.ix-icon {
  font-size: 18px;
  line-height: 1;
}
.ix-item--up .ix-icon {
  color: #dc2626;
}
.ix-item--down .ix-icon {
  color: #0ea463;
}
.ix-connector {
  font-size: 18px;
  color: #9ca3af;
}
.ix-results {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ix-vert-sep {
  width: 1px;
  align-self: stretch;
  background: #d1d5db;
  border-radius: 1px;
}
.ix-explain {
  margin: 12px 0 6px 0;
  font-size: 14px;
  line-height: 1.45;
  color: #374151;
}
.ix-equation {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #111827;
}
.ix-equation strong {
  font-weight: 800;
}
.ix-note {
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}
.ix-note-center {
  margin-top: 10px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}
.ix-summary {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}
.ix-summary strong {
  color: #111827;
}
.ix-gauge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  min-width: 0;
}
.ix-gauge .circular-chart {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.ix-gauge .circle-bg {
  fill: none;
  stroke: #f3f4f6;
  stroke-width: 3.2;
}
.ix-gauge .circle-fill {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 3.2;
}
.ix-gauge .circle_basic {
  fill: none;
  stroke: #10b981;
  stroke-width: 3.2;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}
.ix-gauge .percentage_basic {
  fill: #111827;
  font-size: 8px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: central;
}
.ix-card--fees {
  position: relative;
  background: var(--ix-fees-bg);
  border: 1px solid var(--ix-fees-border);
  border-radius: var(--ix-fees-radius);
  /*box-shadow: var(--ix-fees-shadow);*/
  padding: 18px 18px 16px;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.ix-card--fees::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  /*background: linear-gradient(90deg,var(--ix-fees-accent),var(--ix-fees-accent-2),var(--ix-fees-accent-3));*/
  opacity: 0.9;
}
.ix-card--fees .ix-note-center {
  margin-top: 10px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}
#Fynia-adv-fees-impact {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1024px) {
  .Fynia-container-row {
    display: flex;
    flex-wrap: wrap; /* se permite salto de línea */
    justify-content: center; /* centrado horizontal */
    gap: 20px; /* espacio entre cards */
  }
  .Fynia-container-row .Fynia-btn {
    /*flex: 1 1 calc(50% - 20px);*/
    width: 330px;
    text-align: center; /* centrado visual para tablet */
  }
  .Fynia-container-row .Fynia-btn .Fynia-btn-text {
    justify-self: center;
    align-self: start;
  }
  .headtext-tp {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .Fynia-container-row .Fynia-btn {
    flex: 1 1 100%;
    max-width: 320px;
    text-align: left; /* lectura natural en móvil */
  }
  .Fynia-container-row .Fynia-btn .Fynia-btn-text {
    justify-self: start;
  }
  .Fynia-container-row .Fynia-btn p {
    max-width: none;
  }
  .Fynia-container-row .submit-button-24 {
    width: 80%;
    max-width: 360px;
  }
}
@media (max-width: 1024px) {
  .contact-us-message .submit-btn-payment {
    min-height: 44px;
    padding: 12px 18px;
  }
}
@media (max-width: 768px) {
  .contact-us-message {
    display: flex;
    justify-content: center;
  }
  .contact-us-message .submit-btn-payment {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 480px) {
  .contact-us-message .submit-btn-payment {
    max-width: 320px;
  }
}
@media (max-width: 1024px) {
  .contact-us-message .submit-btn-payment {
    min-height: 44px;
    padding: 12px 18px;
  }
}
@media (max-width: 768px) {
  .opti-h2 {
    line-height: 1.35;
    padding-inline: 12px;
  }
  .contact-us-message {
    display: flex;
    justify-content: center;
  }
  .contact-us-message .submit-btn-payment {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 480px) {
  .contact-us-message .submit-btn-payment {
    max-width: 320px;
  }
}
@media (max-width: 1024px) {
  .footer-top-27 {
    display: flex;
    flex-direction: column; /* logo arriba, links debajo */
    align-items: center;
    text-align: center;
    gap: 20px; /* espacio entre logo y links */
  }
  .footer-logo-27 {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer-links-27 {
    display: flex;
    flex-wrap: wrap; /* permite que se ajusten en varias líneas */
    justify-content: space-evenly; /* distribuye uniformemente */
    width: 100%;
    gap: 16px;
  }
  .footer-links-27 ul {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .footer-links-27 li {
    list-style: none;
  }
  .footer-links-27 a.footer-words {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  #card-examples-examples {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    justify-items: center; /* centra cada card dentro de su celda */
  }
  .form-left-examples {
    width: 100%;
    max-width: 640px; /* límite agradable para tablet */
    margin: 0;
    display: grid;
  }
  .img-examples-card {
    width: 100%;
    height: auto;
    display: block;
  }
  .grid-container-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .title-cards-h2 {
    /*font-size: clamp(1.25rem, 1.1vw + 1rem, 1.75rem);*/
    line-height: 1.15;
  }
  .end-message {
    padding: 24px 16px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #card-examples-examples {
    grid-template-columns: 1fr; /* una sola columna */
    gap: 20px;
    padding-inline: 16px;
    justify-items: stretch;
  }
  .form-left-examples {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
  .grid-container-examples {
    /*grid-template-columns: 1fr;*/
    gap: 10px;
  }
  .contact-us-message,
  .end-message .contact-us-message {
    display: flex;
    justify-content: center;
  }
  .title-cards-h2 {
    font-size: clamp(1.15rem, 2.2vw + 0.8rem, 1.5rem);
  }
}
@media (max-width: 1024px) {
  .hero-text_1 h1 {
    text-align: center;
  }
  .headtext-tp {
    max-width: 72ch;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }
  #headcontact.add-container-pp {
    margin-left: 15px;
    margin-right: 15px;
    padding-inline: 15px;
  }
}
@media (max-width: 768px) {
  .headtext-tp {
    max-width: 65ch;
  }
}
.titulos-aux {
  text-align: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
  font-size: clamp(2.75rem, 5vw, 4rem) !important;
  font-weight: 500 !important;
  font-family: Outfit, Arial !important;
  position: relative !important;
  line-height: 110% !important;
  letter-spacing: -3px !important;
  margin-top: 20px !important;
  text-transform: capitalize !important;
  color: black !important;
  margin-top: 50px !important;
  padding-inline: clamp(15px, 5vw, 50px) !important;
}
.titulos-aux-h1 {
  text-align: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
  font-weight: 500 !important;
  font-family: Outfit, Arial !important;
  position: relative !important;
  line-height: 110% !important;
  letter-spacing: -3px !important;
  text-transform: capitalize !important;
  color: black !important;
  margin-top: 60px !important;
  padding-inline: clamp(15px, 5vw, 50px) !important;
}
@media (max-width: 768px) {
  .titulos-aux-h1 {
    margin-top: 10px !important; /* que no quede pequeño en móviles */
  }
}
@media (max-width: 1024px) {
  .results-container {
    /* mantén el gap mínimo de 15px respecto a los bordes */
    margin-inline: 15px !important;
    margin-block: 30px;

    /* evita que el ancho fuerce el borde a tocar el viewport */
    max-width: calc(100% - 30px);
    width: auto;

    /* opcional: si quieres resguardo interno del contenido */
    /* padding-inline: 15px; */
    box-sizing: border-box;
  }
  .results-container-child {
    display: grid;
    grid-template-columns: 1fr; /* <- siempre 1 columna */
  }
  .results-container-child .child-2 {
    width: 100%;
    margin: 0;
    border-right: none !important;
  }
  .results-container-child .half {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 8px 6px;
  }
  #results-special-background {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
  }
  #results-title {
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.25;
    letter-spacing: -0.25px;
    text-align: center;
  }
  .values-title-results {
    font-size: clamp(20px, 5.2vw, 28px);
    line-height: 1.2;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .results-container {
    /* borde nunca pega a los lados */
    margin-inline: 15px !important;
    margin-block: 30px;

    /* asegura que el ancho respete esos 15px por lado */
    max-width: calc(100% - 30px);
    width: auto;

    /* opcional: si quieres padding interno del contenido, actívalo;
       no afecta la posición del borde */
    /* padding-inline: 15px; */

    box-sizing: border-box;
  }
  .results-container-child .child-2 {
    padding: 10px 8px;
  }
}
.comparison-box-21:has(#donut-chart-21) {
  display: block; /* <- antes era flex */
  text-align: center;
}
#donut-chart-21 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.donut-svg-21 {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
}
@media (max-width: 1024px) {
  #comparison-container-21 {
    max-width: 650px; /* mismo tope que el contenido */
    width: calc(100% - 30px); /* respeta 15px por lado cuando falte espacio */
    margin-inline: auto; /* céntralo */
    box-sizing: border-box;
  }
  .comparison-left-21 {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px dashed #ccd3db;
    padding: 16px;
    box-sizing: border-box;
  }
  #comparison-right-21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0; /* quitamos el espacio entre tarjetas */
    max-width: 650px;
    width: 100%;
    margin: 0 auto; /* centrado */
  }
  .comparison-box-21 {
    border: 1px dashed #ccc;
    padding: 14px;
    box-sizing: border-box;
    display: flex; /* centrado estable */
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centra TÍTULO + VALOR en el eje vertical */
    text-align: center;
  }
  #comparison-box-value-21-align-tra {
    align-self: center;
    margin: 8px 0 0 0; /* pequeño respiro sin empujarlo hacia abajo */
  }
  #comparison-left-title-21 {
    /* “Basic” */
    font-size: clamp(20px, 4.2vw, 28px);
  }
  #comparison-left-descrip-21 {
    font-size: clamp(14px, 3.6vw, 18px);
  }
  #comparison-left-amount-21 {
    /* $1,313 */
    font-size: clamp(36px, 6vw, 56px);
  }
  #comparison-left-unit-21 {
    font-size: clamp(14px, 3.6vw, 18px);
  }
  .comparison-box-title-21 {
    font-size: clamp(16px, 3.6vw, 20px);
  }
  .comparison-box-value-21 {
    font-size: clamp(22px, 5vw, 36px);
  }
  .comparison-box-sub-21,
  .comparison-box-desc-21 {
    font-size: clamp(14px, 2.5vw, 16px) !important;
    line-height: 1.45;
  }
  .comparison-box-score-21 {
    /* “GOOD” */
    font-size: clamp(20px, 5vw, 32px);
  }
}
@media (max-width: 480px) {
  .comparison-left-21,
  #comparison-right-21 {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  #comparison-container-21 {
    width: calc(100% - 30px);
    max-width: 650px;
    margin-inline: auto;
    flex-direction: column;
  }
  #comparison-right-21 {
    display: grid;
    grid-template-columns: 1fr; /* 1 columna */
    gap: 0; /* sin espacios extra */
    min-width: 0;
  }
  .comparison-left-21,
  .comparison-box-21 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere; /* evita desbordes por textos largos */
  }
  .comparison-box-value-21 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.1;
  }
  #donut-chart-21 {
    width: min(180px, 70vw); /* nunca crece de más en chico */
    height: auto;
    margin: 0 auto;
    display: grid;
    place-items: center;
  }
  .donut-svg-21 {
    width: 100%;
    height: auto;
  }
  #comparison-box-value-21-align-tra {
    display: grid;
    place-items: center; /* centra H y V */
    min-height: 3.5rem; /* base visual para el centrado */
    margin: 0; /* sin márgenes que lo desplacen */
    line-height: 1.1;
  }
}
@media (max-width: 1024px) {
  .container-results-left .hero-buttons {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px; /* margen lateral de 15px */
  }
  .nav-links,
  .get-started {
    display: none !important;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger .bar {
    width: 24px;
    height: 2px;
    background: #000;
    margin: 4px 0;
    transition: transform 0.2s ease;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px; /* altura navbar */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px dashed #ccc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 10px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .navbar {
    min-height: 60px;
  }
  .mobile-menu {
    top: 72px; /* antes: 60px */
    border-top: 1px dashed #ccc;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 12px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0; /* sin gap, usamos bordes como separador */
  }
  .mobile-menu ul li {
    border-bottom: 1px dashed #ddd;
  }
  .mobile-menu ul li:last-child {
    border-bottom: 0;
  }
  .mobile-menu ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 1.1rem; /* ↑ tamaño */
    padding: 12px 0; /* ↑ área táctil */
  }
  .hamburger {
    width: 44px;
    height: 44px;
    position: relative;
    display: inline-block;
    line-height: 0; /* evita herencias raras */
    background: #fff;
  }
  .hamburger span,
  .hamburger .line {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transform: translateX(-50%); /* centra horizontalmente */
    transform-origin: 50% 50%; /* ROTAN desde el centro */
    transition:
      transform 0.22s ease,
      top 0.22s ease,
      opacity 0.18s ease;
  }
  .hamburger span:nth-child(1),
  .hamburger .line:nth-child(1) {
    top: 12px;
  }
  .hamburger span:nth-child(2),
  .hamburger .line:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3),
  .hamburger .line:nth-child(3) {
    top: 28px;
  }
  .hamburger.open span:nth-child(1),
  .hamburger.open .line:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
  }
  .hamburger.open span:nth-child(2),
  .hamburger.open .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3),
  .hamburger.open .line:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }
  .hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .mobile-menu {
    position: absolute;
    top: 64px; /* que no tape el botón */
    left: 15px;
    right: 15px;
    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  #Fynia-parent-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-inline: 15px; /* mínimo 15px lateral */
  }
  #Fynia-child-left,
  #Fynia-child-right {
    width: 100%;
  }
  #Fynia-grandchild-left img {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 0 auto; /* centrada */
  }
}
#Fynia-adv-key-metrics .Fynia-adv-metric-box h2 {
  margin: 0;
  display: flex;
  align-items: center; /* centrado vertical */
  justify-content: center; /* centrado horizontal */
  line-height: 1.1;
  /* tamaño fluido del número (no afecta desktop, solo limita arriba) */
  font-size: clamp(24px, 3.2vw, 40px);
}
@media (max-width: 1024px) {
  #Fynia-adv-key-metrics {
    display: grid; /* de flex → grid */
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 12px;
    height: auto; /* anula la altura fija de desktop */
  }
  #Fynia-adv-key-metrics .Fynia-adv-metric-box {
    min-height: 110px; /* altura cómoda del card */
  }
  #Fynia-adv-key-metrics .Fynia-adv-metric-box h2 {
    font-size: clamp(22px, 4.8vw, 34px);
    /* tamaño del número en tablet */
  }
}
@media (max-width: 768px) {
  #Fynia-adv-key-metrics {
    grid-template-columns: 1fr; /* apila 4 filas */
  }
  #Fynia-adv-key-metrics .Fynia-adv-metric-box {
    min-height: 96px;
  }
  #Fynia-adv-key-metrics .Fynia-adv-metric-box h2 {
    font-size: clamp(38px, 6vw, 42px);
    margin-top: 10px; /* número un poco más compacto */
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  #Fynia-adv-chart-row-1 {
    display: block; /* desktop es flex en fila */
  }
  #Fynia-adv-loan-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto; /* override de alturas fijas */
  }
  #Fynia-adv-loan-details .Fynia-adv-detail-box {
    height: auto; /* desktop tiene 272px */
    display: flex;
    flex-direction: column;
    padding: 8px 8px 12px;
    min-width: 0;
  }
  #Fynia-adv-loan-details .Fynia-adv-detail-box img,
  .img-first-dashboard-micro,
  .img-first-dashboard-micro-2 {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* evita “crop” */
    margin: 0 auto;
    clip-path: none; /* anula el recorte del desktop */
  }
  #Fynia-adv-main-chart-1 {
    width: 100%;
    margin-top: 12px;
  }
  #Fynia-adv-main-chart-1 .img-first-dashboard {
    width: 100%;
    height: auto;
    object-fit: contain; /* desktop usa cover; aquí evitamos recorte */
    display: block;
  }
}
@media (max-width: 768px) {
  #Fynia-adv-loan-details {
    grid-template-columns: 1fr; /* 2 → 1 columna */
    gap: 10px;
  }
  #Fynia-adv-loan-details .Fynia-adv-detail-box img,
  .img-first-dashboard-micro,
  .img-first-dashboard-micro-2 {
    max-width: 100%;
    max-height: clamp(180px, 40vh, 320px);
  }
}
@media (max-width: 480px) {
  #Fynia-adv-loan-details {
    gap: 8px;
  }
  #Fynia-adv-loan-details .Fynia-adv-detail-box {
    padding: 6px 6px 10px;
  }
}
@media (min-width: 1025px) {
  #Fynia-adv-main-chart-1 {
    display: flex; /* establece contexto para el img */
  }
  #Fynia-adv-main-chart-1 .img-first-dashboard {
    width: 100%;
    height: 100%; /* ocupa toda la altura disponible (≈560px) */
    object-fit: contain; /* sin recortes, respeta proporción */
    display: block;
  }
}
@media (min-width: 1025px) {
  #Fynia-adv-main-chart-1 {
    display: grid; /* fuerza layout vertical */
    grid-template-rows: auto 1fr; /* h3 arriba (alto auto), img debajo */
  }
  #Fynia-adv-main-chart-1 .Fynia-adv-middle-top {
    height: 40px; /* mismo alto que usas en otras cards */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #Fynia-adv-main-chart-1 .img-first-dashboard {
    display: block;
    width: 100%;
    height: auto; /* mantiene proporción */
  }
}
@media (min-width: 1025px) {
  #Fynia-adv-chart-row-1 {
    align-items: stretch;
  }
  #Fynia-adv-main-chart-1 {
    display: flex !important;
    flex-direction: column !important;
    height: 560px !important; /* ← iguala a la izquierda */
  }
  #Fynia-adv-main-chart-1 .Fynia-adv-middle-top {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #Fynia-adv-main-chart-1 .img-first-dashboard {
    flex: 1 1 auto;
    width: 100%;
    height: calc(
      100% - 40px
    ) !important; /* ocupa todo el espacio bajo el título */
    object-fit: contain; /* sin recortes */
    display: block;
  }
}
@media (max-width: 768px) {
  #Fynia-adv-dates-row {
    display: grid; /* sin asumir layout previo */
    grid-template-columns: 1fr; /* una sobre la otra */
    gap: 12px; /* separación entre las dos cajas */
  }
  #Fynia-adv-dates-row .Fynia-adv-date-box {
    width: 100%;
  }
}
#Fynia-adv-middle-row .Fynia-adv-middle-box h2 {
  /* max = 40px (igual que desktop actual), min cómodo para móvil */
  font-size: clamp(38px, 6vw, 42px);
  line-height: 1.1;
}
#Fynia-adv-middle-row .Fynia-adv-middle-bottom p {
  /* asumiendo ~16px como tamaño desktop: mantenemos 16px max */
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.25;
  margin: 0; /* evita saltos verticales en móvil */
  opacity: 0.9; /* opcional: un pelín más sutil */
}
@media (max-width: 768px) {
  #Fynia-adv-middle-row {
    display: flex; /* mantiene compatibilidad con tu layout actual */
    flex-direction: column; /* de fila → columna */
    gap: 12px; /* separación entre cajas */
    margin-inline: 15px; /* aire lateral mínimo en móvil */
  }
  #Fynia-adv-middle-row .Fynia-adv-middle-box {
    width: 100%; /* cada card ocupa todo el ancho */
  }
}
@media (max-width: 1024px) {
  .titles-optimizacion-h1 {
    /* máx: tu tamaño actual; min razonable; curva suave */
    font-size: clamp(2.2rem, 5vw, 5.5rem) !important;
    line-height: 1.2;
  }
  .titles-optimizacion-h3 {
    font-size: clamp(17px, 1.4vw + 0.4rem, 18px);
    line-height: 1.45;
    opacity: 0.95; /* sutil, opcional */
    margin-top: 10px;
  }
  #titles-optimizacion-left,
  .titles-optimizacion-h1#titles-optimizacion-left,
  .titles-optimizacion-h3#titles-optimizacion-left {
    margin-inline: 15px;
  }
}
@media (max-width: 768px) {
  .titles-optimizacion-h1 {
    line-height: 1;
  }
  .titles-optimizacion-h3 {
    /*font-size: clamp(13px, 3.6vw, 16px);*/
    line-height: 1.5;
  }
  #titles-optimizacion-left,
  .titles-optimizacion-h1#titles-optimizacion-left,
  .titles-optimizacion-h3#titles-optimizacion-left {
    margin-inline: 15px; /* mantiene el “acolchado” lateral mínimo */
  }
}
@media (min-width: 1025px) {
  .titles-optimizacion-h1,
  .titles-optimizacion-h3 {
    padding-inline: 15px;
  }
}
@media (min-width: 1025px) {
  #titles-optimizacion-right.titles-optimizacion-h1,
  #titles-optimizacion-right.titles-optimizacion-h3 {
    padding-right: 15px !important;
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  #titles-optimizacion-right {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}
#Fynia-monthly-title-7 {
  padding-inline: 15px !important;
}
@media (max-width: 1024px) {
  #Fynia-adv-header-basic,
  #Fynia-adv-header-standard,
  #Fynia-adv-header-premium,
  #Fynia-adv-header-ideal,
  #Fynia-adv-header-quick,
  #Fynia-adv-header-max {
    display: flex;
    flex-direction: column; /* h1 + subtítulo arriba, párrafo debajo */
    gap: 0px;
    padding-inline: 10px; /* evita tocar bordes */
  }
  #Fynia-adv-header-left,
  #Fynia-adv-header-right {
    width: 100%;
    text-align: center;
  }
  #Fynia-adv-title {
    font-size: clamp(26px, 3.6vw + 0.6rem, 42px);
    line-height: 1.15;
  }
  #Fynia-adv-subtitle {
    font-size: clamp(14px, 1.6vw + 0.4rem, 20px);
    line-height: 1.35;
    margin-top: 4px;
  }
  .subtitle-p-results {
    font-size: clamp(14px, 1.6vw + 0.4rem, 16px);
    line-height: 1.45;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  #Fynia-adv-title {
    font-size: clamp(22px, 6vw, 34px);
  }
  #Fynia-adv-subtitle {
    font-size: clamp(17px, 3.8vw, 19px);
  }
  .subtitle-p-results {
    font-size: clamp(12px, 3.8vw, 16px);
  }
}
@media (max-width: 1024px) {
  #Fynia-adv-header-left,
  #Fynia-adv-header-right {
    text-align: left !important;
    align-items: flex-start;
    padding: 0px; /* por si dentro usas flex */
  }
  #Fynia-adv-title,
  #Fynia-adv-subtitle,
  .subtitle-p-results {
    text-align: left !important;
  }
}
@media (max-width: 768px) {
  #Fynia-adv-bottom-row.ix-row {
    display: grid; /* sobreescribe el layout horizontal */
    grid-template-columns: 1fr; /* una sola columna */
    gap: 12px;
  }
  #Fynia-adv-bottom-row .ix-card {
    width: 100%;
  }
  #Fynia-adv-bottom-row .ix-card h4 {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.25;
    margin: 0;
    text-align: center; /* consistente con el resto del copy en móvil */
  }
  #Fynia-adv-bottom-row .final-insights {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.5;
    margin: 8px 0 0 0;
    text-align: left;
  }
  #Fynia-adv-bottom-row .ix-note-center {
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.4;
    margin-top: 8px;
    text-align: center; /* esta sí centrada por intención del diseño */
  }
  #Fynia-adv-bottom-row .ix-gauge svg {
    width: 100%;
    max-width: 220px; /* límite razonable en móviles */
    height: auto;
    display: block;
    margin: 0 auto; /* centrado del gauge */
  }
}
@media (max-width: 768px) {
  #Fynia-adv-bottom-row.ix-row {
    display: grid; /* ya lo tienes para apilar */
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start; /* evita estirar a la misma altura */
    grid-auto-rows: auto; /* no fuerces 1fr en filas */
  }
  #Fynia-adv-bottom-row .ix-card {
    height: auto !important;
    min-height: auto !important; /* o 'unset' si prefieres */
    align-self: start; /* nada de stretch */
  }
}
@media (max-width: 1024px) {
  body.mini-tables-ready #loan-comparison-table-11 {
    display: none;
  }
}
@media (max-width: 1024px) {
  #child-end.unique-container-xyz123 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columnas en tablet */
    gap: 16px;
    justify-content: center; /* centra la grilla si no ocupa todo el ancho */
    justify-items: center; /* centra los hijos en su celda */
    align-items: center;
    margin-inline: auto; /* centra el bloque respecto a la ventana */
    padding-inline: 15px; /* 15px laterales mínimos */
    box-sizing: border-box;
    width: 100%;
  }
  #child-end .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* centra los botones */
  }
  #child-end .hero-buttons .btn {
    flex: 0 1 auto;
    min-width: min(240px, 100%);
  }
}
@media (max-width: 768px) {
  #child-end.unique-container-xyz123 {
    grid-template-columns: 1fr;
  }
  #child-end .hero-buttons .btn {
    width: 100%; /* botones a ancho completo en móviles pequeños */
  }
}
@media (max-width: 480px) {
  #child-end .hero-buttons {
    gap: 8px;
  }
}
#child-end.unique-container-xyz123 {
  box-sizing: border-box;
  /* centra y garantiza 15px por lado: 100% - 30px */
  width: min(100% - 30px, 1320px);
  margin-inline: auto;
}
@media (min-width: 1025px) {
  .ix-gauge .circular-chart {
    width: 30%;
    min-width: 180px;
  }
}
.page-sticky-27 {
  min-height: 100svh; /* alto mínimo = alto de la ventana (seguro en móviles) */
  display: flex;
  flex-direction: column;
}
.page-sticky-27 > .site-footer-27 {
  margin-top: auto; /* empuja el footer al fondo cuando hay poco contenido */
  flex-shrink: 0;
  width: 100%;
}
.navbar-logo-only {
  height: 80px; /* pon aquí la misma altura que tu navbar original */
  display: flex;
  align-items: center; /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
}
.navbar-logo-only__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.navbar-logo-only__img {
  max-height: 40px; /* ajusta al tamaño que uses en la otra navbar */
  display: block;
}
@media screen and (min-width: 992px) {
  .site-footer-27--fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1320px;

    z-index: 100;
  }
}
@media screen and (max-width: 991px) {
  .site-footer-27--fixed-bottom {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
.submit-button-24--narrow {
  max-width: 260px; /* antes era 80% del contenedor */
  width: auto; /* que se adapte al contenido + padding */
}
#results-special-background {
  background-color: rgb(245, 248, 244);
  font-size: 2em;
  font-weight: bold;
  border: 1px dashed #ccc;
  color: black;
  margin: 0 auto;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}
.values-title-results {
  font-size: 50px;
  padding: 0px;
  padding-top: 15px;
  font-family: Outfit, Arial;
  font-weight: 700;
  color: #00b86b;
  text-align: center;
}
.Fynia-adv-metric-box .metric-label {
  font-size: 24px;
  font-weight: 400;
  background-color: transparent;
  display: block;
  width: 100%;
  padding: 8px 12px;
  color: black;
  margin: 0;
  border-radius: 0px;
  border-bottom: 1px dashed #e5e7eb;
}
.Fynia-adv-middle-bottom .metric-value,
.Fynia-adv-metric-box .metric-value {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-size: clamp(24px, 3.2vw, 40px) !important; /* pega aquí lo de tu h2 */
  font-weight: 600;
  flex: 1 1 auto;
  text-align: center;
  width: 100%;
}
.title-results-1 {
  text-align: center;
  width: 100%;
  margin: 0;
  font-weight: 500;
  color: black;
}
.note-text-main {
  font-size: clamp(18px, 1.5vw + 0.6rem, 22px) !important;
  color: black;
  margin: 0 0 24px;
  font-size: 24px;
  text-align: left;
  font-family: Outfit, Ariel;
  font-weight: 400;
}
.fynia-green {
  color: #00b86b;
}
.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
}
.fynia-green {
  color: #00b86b;
}
.text-black {
  color: #000 !important;
}
.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-sticky-27 > .site-footer-27.footer-compact-updated {
  margin-top: auto; /* <- CLAVE: lo pega al borde inferior */
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-footer-27.footer-compact-updated .footer-divider-27 {
  margin: 14px 0;
}
.learn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.learn-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px dashed #ccc;
  padding: 24px 22px;
  min-height: 320px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.learn-card:hover {
  border-color: #00c853;
  background-color: rgb(245, 248, 244);
  transform: translateY(-2px);
}
.learn-card-label {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00b86b;
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 7px 10px;
  margin-bottom: 18px;
}
.learn-card h3 {
  text-align: left;
  font-family: Outfit, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  color: #000;
  margin-bottom: 16px;
}
.learn-card h3 a {
  transition: color 0.2s ease;
}
.learn-card h3 a:hover {
  color: #00b86b;
}
.learn-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #425366;
  margin-bottom: 24px;
}
.learn-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px dashed #ccc;
  padding-top: 14px;
}
.learn-card-footer span {
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #425366;
}
.learn-card-footer a {
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00b86b;
}
.learn-card-footer a:hover {
  color: #000;
}
@media (max-width: 1024px) {
  .learn-intro-grid,
  .learn-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-card h3 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .learn-intro-grid,
  .learn-card-grid {
    grid-template-columns: 1fr;
  }
  .learn-intro-card,
  .learn-card {
    padding: 20px 18px;
  }
  .learn-card h3 {
    font-size: 24px;
  }
  .learn-card p,
  .learn-cluster-head p {
    font-size: 17px;
  }
  .learn-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .learn-kicker,
  .learn-pill,
  .learn-card-label {
    font-size: 13px;
  }
  .learn-main-subtitle,
  .learn-card p,
  .learn-cluster-head p,
  .learn-cta-panel p {
    font-size: 16px;
  }
  .learn-intro-card h2,
  .learn-card h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .learn-article-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.home-learn-grid .learn-card {
  min-width: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .home-learn-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.plo-page {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: white;
}
.plo-shell {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
  box-sizing: border-box;
}
.plo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  color: #425366;
  margin-bottom: 18px;
}
.plo-breadcrumb a:hover {
  color: #00b86b;
}
.plo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 30px;
}
.plo-hero-left,
.plo-hero-right {
  min-width: 0;
}
.plo-hero-left {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 40px;
  display: flex;
}
.plo-hero-left-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
}
.plo-kicker,
.plo-section-kicker {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00b86b;
  background-color: white;
  border: 1px dashed #ccc;
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.plo-hero-card-label,
.plo-highlight-label {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  cursor: default;
  user-select: none;
}
.plo-title {
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #000;
  margin-bottom: 18px;
}
.plo-subtitle {
  font-family: Outfit, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  color: #425366;
  margin-bottom: 22px;
  max-width: 920px;
}
.plo-hero-points {
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none;
}
.plo-hero-points li {
  position: relative;
  padding-left: 22px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #425366;
  margin-bottom: 12px;
}
.plo-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00b86b;
}
.plo-hero-actions {
  margin-top: 6px;
}
.plo-disclaimer {
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #5b6877;
  margin-top: 18px;
}
.plo-hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plo-hero-visual {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  overflow: hidden;
}
.plo-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.plo-hero-card {
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plo-hero-card h2 {
  text-align: left;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1px;
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
}
.plo-hero-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: white;
  margin-bottom: 0;
}
.plo-mini-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.plo-mini-metric {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  padding: 14px;
}
.plo-mini-metric span {
  display: block;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}
.plo-mini-metric strong {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.plo-section {
  margin-top: 30px;
}
.plo-section-head {
  margin-bottom: 18px;
}
.plo-section-head h2,
.plo-split-left h2,
.plo-dark-callout h2,
.plo-bottom-cta h2 {
  text-align: left;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #000;
  margin-bottom: 12px;
}
.plo-section-head p,
.plo-split-left p,
.plo-example-head p,
.plo-example-note,
.plo-dark-callout p,
.plo-bottom-cta p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.58;
  color: #425366;
}
.plo-split-left p + p,
.plo-example-head p + p,
.plo-card p + p {
  margin-top: 14px;
}
.plo-grid {
  display: grid;
  gap: 15px;
}
.plo-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.plo-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.plo-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.plo-card {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 24px 22px;
  min-width: 0;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.plo-card:hover {
  border-color: #00c853;
  background-color: white;
  transform: translateY(-2px);
}
.plo-card h3,
.plo-highlight-card h3 {
  text-align: left;
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: #000;
  margin-bottom: 12px;
}
.plo-card p,
.plo-highlight-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  color: #425366;
  margin-bottom: 0;
}
.plo-split-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 15px;
  align-items: stretch;
}
.plo-split-left {
  background-color: white;
  border: 1px dashed #ccc;
  padding: 28px 26px;
}
.plo-split-right {
  min-width: 0;
}
.plo-highlight-card {
  height: 100%;
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.plo-highlight-card h3,
.plo-highlight-card p {
  color: white;
}
.plo-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.plo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background-color: white;
  border: 1px dashed #ccc;
}
.plo-table th,
.plo-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed #ddd;
  font-family: Outfit, Arial, sans-serif;
  font-size: 17px;
  color: #425366;
}
.plo-table th {
  background-color: rgb(245, 248, 244);
  color: #000;
  font-weight: 600;
}
.plo-example-box {
  background-color: white;
  border: 1px dashed #ccc;
  padding: 30px 28px;
}
.plo-example-head {
  margin-bottom: 18px;
}
.plo-example-note {
  margin-top: 20px;
}
.plo-dark-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 28px 24px;
}
.plo-dark-callout-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #00884e;
  font-family: Outfit, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.plo-dark-callout h2,
.plo-dark-callout p {
  color: white;
}
.plo-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plo-faq-item {
  border: 1px dashed #ccc;
  background-color: rgb(245, 248, 244);
}
.plo-faq-item[open] {
  border-color: #00c853;
}
.plo-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px;
  padding-right: 48px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.plo-faq-item summary::-webkit-details-marker {
  display: none;
}
.plo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #00b86b;
  font-weight: 500;
}
.plo-faq-item[open] summary::after {
  content: "–";
}
.plo-faq-content {
  padding: 0 18px 18px;
}
.plo-faq-content p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #425366;
  margin: 0;
}
.plo-bottom-cta {
  margin-top: 34px;
  text-align: center;
  background: linear-gradient(180deg, #00884e, #006a3d);
  padding: 44px 24px;
}
.plo-bottom-cta h2 {
  text-align: center;
  color: white;
  margin-bottom: 16px;
}
.plo-bottom-cta p {
  max-width: 860px;
  margin: 0 auto 24px;
  color: white;
}
.plo-bottom-actions {
  justify-content: center;
}
@media (max-width: 1200px) {
  .plo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .plo-hero,
  .plo-split-box {
    grid-template-columns: 1fr;
  }
  .plo-subtitle,
  .plo-section-head p,
  .plo-split-left p,
  .plo-example-head p,
  .plo-example-note,
  .plo-dark-callout p,
  .plo-bottom-cta p {
    font-size: 19px;
  }
  .plo-grid-3,
  .plo-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .plo-page {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .plo-shell {
    width: calc(100% - 20px);
  }
  .plo-breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .plo-hero-left,
  .plo-hero-card,
  .plo-split-left,
  .plo-highlight-card,
  .plo-example-box {
    padding: 24px 18px;
  }
  .plo-title {
    letter-spacing: -1px;
  }
  .plo-subtitle {
    font-size: 18px;
  }
  .plo-grid-2,
  .plo-grid-3,
  .plo-grid-4 {
    grid-template-columns: 1fr;
  }
  .plo-card h3,
  .plo-highlight-card h3 {
    font-size: 24px;
  }
  .plo-card p,
  .plo-highlight-card p,
  .plo-faq-content p,
  .plo-mini-metric strong {
    font-size: 17px;
  }
  .plo-faq-item summary {
    font-size: 18px;
  }
  .plo-bottom-cta {
    padding: 34px 18px;
  }
  .plo-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .plo-bottom-actions .btn,
  .plo-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .plo-kicker,
  .plo-section-kicker,
  .plo-highlight-label,
  .plo-hero-card-label {
    font-size: 12px;
  }
  .plo-subtitle,
  .plo-section-head p,
  .plo-split-left p,
  .plo-example-head p,
  .plo-example-note,
  .plo-dark-callout p,
  .plo-bottom-cta p,
  .plo-card p,
  .plo-highlight-card p,
  .plo-faq-content p {
    font-size: 16px;
  }
  .plo-card h3,
  .plo-highlight-card h3 {
    font-size: 22px;
  }
  .plo-hero-points li {
    font-size: 16px;
  }
}
.plo-highlight-card h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.alo-page {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: white;
}
.alo-shell {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
  box-sizing: border-box;
}
.alo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  color: #425366;
  margin-bottom: 18px;
}
.alo-breadcrumb a:hover {
  color: #00b86b;
}
.alo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 30px;
}
.alo-hero-left,
.alo-hero-right {
  min-width: 0;
}
.alo-hero-left {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 40px;
  display: flex;
}
.alo-hero-left-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
}
.alo-kicker,
.alo-section-kicker {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00b86b;
  background-color: white;
  border: 1px dashed #ccc;
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.alo-hero-card-label,
.alo-highlight-label {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  cursor: default;
  user-select: none;
}
.alo-title {
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #000;
  margin-bottom: 18px;
}
.alo-subtitle {
  font-family: Outfit, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  color: #425366;
  margin-bottom: 22px;
  max-width: 920px;
}
.alo-hero-points {
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none;
}
.alo-hero-points li {
  position: relative;
  padding-left: 22px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #425366;
  margin-bottom: 12px;
}
.alo-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00b86b;
}
.alo-hero-actions {
  margin-top: 6px;
}
.alo-disclaimer {
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #5b6877;
  margin-top: 18px;
}
.alo-hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.alo-hero-visual {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  overflow: hidden;
}
.alo-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.alo-hero-card {
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.alo-hero-card h2 {
  text-align: left;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1px;
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
}
.alo-hero-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: white;
  margin-bottom: 0;
}
.alo-mini-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.alo-mini-metric {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  padding: 14px;
}
.alo-mini-metric span {
  display: block;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}
.alo-mini-metric strong {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.alo-section {
  margin-top: 30px;
}
.alo-section-head {
  margin-bottom: 18px;
}
.alo-section-head h2,
.alo-split-left h2,
.alo-dark-callout h2,
.alo-bottom-cta h2 {
  text-align: left;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #000;
  margin-bottom: 12px;
}
.alo-section-head p,
.alo-split-left p,
.alo-example-head p,
.alo-example-note,
.alo-dark-callout p,
.alo-bottom-cta p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.58;
  color: #425366;
}
.alo-split-left p + p,
.alo-example-head p + p,
.alo-card p + p {
  margin-top: 14px;
}
.alo-grid {
  display: grid;
  gap: 15px;
}
.alo-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.alo-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.alo-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.alo-card {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 24px 22px;
  min-width: 0;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.alo-card:hover {
  border-color: #00c853;
  background-color: white;
  transform: translateY(-2px);
}
.alo-card h3,
.alo-highlight-card h3 {
  text-align: left;
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: #000;
  margin-bottom: 12px;
}
.alo-card p,
.alo-highlight-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  color: #425366;
  margin-bottom: 0;
}
.alo-split-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 15px;
  align-items: stretch;
}
.alo-split-left {
  background-color: white;
  border: 1px dashed #ccc;
  padding: 28px 26px;
}
.alo-split-right {
  min-width: 0;
}
.alo-highlight-card {
  height: 100%;
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alo-highlight-card h3,
.alo-highlight-card p {
  color: white;
}
.alo-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.alo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background-color: white;
  border: 1px dashed #ccc;
}
.alo-table th,
.alo-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed #ddd;
  font-family: Outfit, Arial, sans-serif;
  font-size: 17px;
  color: #425366;
}
.alo-table th {
  background-color: rgb(245, 248, 244);
  color: #000;
  font-weight: 600;
}
.alo-example-box {
  background-color: white;
  border: 1px dashed #ccc;
  padding: 30px 28px;
}
.alo-example-head {
  margin-bottom: 18px;
}
.alo-example-note {
  margin-top: 20px;
}
.alo-dark-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, #00884e, #006a3d);
  border: 1px solid #006a3d;
  padding: 28px 24px;
}
.alo-dark-callout-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #00884e;
  font-family: Outfit, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.alo-dark-callout h2,
.alo-dark-callout p {
  color: white;
}
.alo-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alo-faq-item {
  border: 1px dashed #ccc;
  background-color: rgb(245, 248, 244);
}
.alo-faq-item[open] {
  border-color: #00c853;
}
.alo-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px;
  padding-right: 48px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.alo-faq-item summary::-webkit-details-marker {
  display: none;
}
.alo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #00b86b;
  font-weight: 500;
}
.alo-faq-item[open] summary::after {
  content: "–";
}
.alo-faq-content {
  padding: 0 18px 18px;
}
.alo-faq-content p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #425366;
  margin: 0;
}
.alo-bottom-cta {
  margin-top: 34px;
  text-align: center;
  background: linear-gradient(180deg, #00884e, #006a3d);
  padding: 44px 24px;
}
.alo-bottom-cta h2 {
  text-align: center;
  color: white;
  margin-bottom: 16px;
}
.alo-bottom-cta p {
  max-width: 860px;
  margin: 0 auto 24px;
  color: white;
}
.alo-bottom-actions {
  justify-content: center;
}
@media (max-width: 1200px) {
  .alo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .alo-hero,
  .alo-split-box {
    grid-template-columns: 1fr;
  }
  .alo-subtitle,
  .alo-section-head p,
  .alo-split-left p,
  .alo-example-head p,
  .alo-example-note,
  .alo-dark-callout p,
  .alo-bottom-cta p {
    font-size: 19px;
  }
  .alo-grid-3,
  .alo-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .alo-page {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .alo-shell {
    width: calc(100% - 20px);
  }
  .alo-breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .alo-hero-left,
  .alo-hero-card,
  .alo-split-left,
  .alo-highlight-card,
  .alo-example-box {
    padding: 24px 18px;
  }
  .alo-title {
    letter-spacing: -1px;
  }
  .alo-subtitle {
    font-size: 18px;
  }
  .alo-grid-2,
  .alo-grid-3,
  .alo-grid-4 {
    grid-template-columns: 1fr;
  }
  .alo-card h3,
  .alo-highlight-card h3 {
    font-size: 24px;
  }
  .alo-card p,
  .alo-highlight-card p,
  .alo-faq-content p,
  .alo-mini-metric strong {
    font-size: 17px;
  }
  .alo-faq-item summary {
    font-size: 18px;
  }
  .alo-bottom-cta {
    padding: 34px 18px;
  }
  .alo-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .alo-bottom-actions .btn,
  .alo-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .alo-kicker,
  .alo-section-kicker,
  .alo-highlight-label,
  .alo-hero-card-label {
    font-size: 12px;
  }
  .alo-subtitle,
  .alo-section-head p,
  .alo-split-left p,
  .alo-example-head p,
  .alo-example-note,
  .alo-dark-callout p,
  .alo-bottom-cta p,
  .alo-card p,
  .alo-highlight-card p,
  .alo-faq-content p {
    font-size: 16px;
  }
  .alo-card h3,
  .alo-highlight-card h3 {
    font-size: 22px;
  }
  .alo-hero-points li {
    font-size: 16px;
  }
}
.alo-highlight-card h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.benefits-container .benefit-media .center-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== JANEEXAMPLE: tabla del punto 4 ===== */
#loan-comparison-11 {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 60px auto;
  background: #fff;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow-x: clip;
}

#loan-comparison-table-11 {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  border-collapse: collapse;
  table-layout: fixed;
}

.loan-comparison-emptycell-11 {
  width: 120px;
}

.loan-comparison-col-11 {
  width: calc((100% - 120px) / 7);
}

#loan-comparison-table-11 td,
#loan-comparison-table-11 th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== Mini-tablas: por defecto ocultas (desktop usa la tabla grande) ===== */
#loan-mini-tables-11 {
  display: none;
  width: min(100%, 1320px);
  margin: 10px auto 0;
  box-sizing: border-box;
}

/* En tablet y móvil: esconder tabla grande y usar mini-tablas generadas por JS */
@media (max-width: 1024px) {
  #loan-comparison-table-11 {
    display: none !important;
  }

  #loan-mini-tables-11 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-inline: 15px;
  }
}

@media (max-width: 768px) {
  #loan-mini-tables-11 {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Estilo de cada mini-tabla ===== */
.mini-table-11 {
  width: 100%;
  border: 1px dashed #ccc;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  table-layout: fixed;
}

.mini-table-11 thead th {
  background: rgb(245, 248, 244);
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.25;
  font-family: Outfit, Arial, sans-serif;
}

.mini-table-11 tbody td {
  padding: 10px 12px;
  border-bottom: 1px dashed #e5e7eb;
  vertical-align: middle;
}

.mini-table-11 tbody tr:last-child td {
  border-bottom: 0;
}

.mini-table-11 .alt-cell {
  width: 42%;
}

.mini-table-11 .alt-chip {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.2;
  font-family: Outfit, Arial, sans-serif;
}

.mini-table-11 .val-cell {
  width: 58%;
}

.mini-table-11 .val-main {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.25;
  font-weight: 600;
  font-family: Outfit, Arial, sans-serif;
  text-align: right;
}

.mini-table-11 .val-sub {
  display: block;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.25;
  opacity: 0.95;
  margin-top: 4px;
  text-align: right;
  font-family: Outfit, Arial, sans-serif;
  font-weight: 500;
}

.alt-baseline {
  background: #30313c;
  color: #fff;
}
.alt-basic {
  background: #e0e0e0;
  color: #000;
}
.alt-standard {
  background: #aed6f1;
  color: #000;
}
.alt-premium {
  background: #a3e4d7;
  color: #000;
}
.alt-ideal {
  background: #82e0aa;
  color: #000;
}
.alt-quick {
  background: #f7dc6f;
  color: #000;
}
.alt-max {
  background: #f1948a;
  color: #000;
}

.mini-table-11 .val-sub.val-pct {
  color: #00b86b;
  font-weight: 600;
}

.mini-table-11[data-metric="efficiency-ratio"] tr.row-variant-ideal .val-main,
.mini-table-11[data-metric="payment-efficiency"]
  tr.row-variant-ideal
  .val-main {
  color: #00b86b;
  font-weight: 600;
}

/* ===== Ajustes de la tabla grande en desktop ===== */
#loan-comparison-table-11 {
  width: min(100% - 30px, 1320px);
  margin-inline: auto;
  border-collapse: collapse;
  table-layout: fixed;
}

#loan-comparison-toprow-11 td {
  vertical-align: middle;
}

#loan-comparison-table-11 td,
#loan-comparison-table-11 th {
  text-align: center;
  border: 1px dashed #ccc;
  padding: 10px;
  vertical-align: middle;
  font-size: 19px;
  font-weight: 700;
  font-family: Outfit, Arial;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.loan-comparison-label-11 {
  font-size: 19px;
  line-height: 1.25;
}

.loan-comparison-alt-title-11 {
  font-size: 21px;
}

.loan-comparison-alt-month-11 {
  font-size: 29px;
}

.loan-comparison-small-11 {
  font-size: 19px;
}

.loan-comparison-rank-11 {
  font-size: 17px;
  font-weight: 600;
  vertical-align: middle;
}

.loan-comparison-consider-11 {
  font-size: 19px !important;
  line-height: 1.35;
}

.loan-comparison-savings-11 {
  font-size: 17px;
}

.loan-comparison-savings-monthly {
  font-size: 15px;
}

/* Filas donde pediste mejor centrado vertical */
#loan-comparison-table-11 tr:has(.loan-comparison-rank-11) td,
#loan-comparison-table-11 tr:nth-child(6) td,
#loan-comparison-table-11 tr:nth-child(7) td {
  vertical-align: middle;
}
/* ===== Final layout corrections: summaries, PDF CTA spacing, end CTA block ===== */

#Fynia-adv-bottom-row .ix-card--percent,
#Fynia-adv-bottom-row .ix-card--gauge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#Fynia-adv-bottom-row .ix-card--percent #Fynia-adv-middle-top-h3-aux,
#Fynia-adv-bottom-row .ix-card--gauge #Fynia-adv-middle-top-h3-aux {
  width: 100%;
  margin: 0 0 12px 0;
  text-align: center;
}

#Fynia-adv-bottom-row .ix-card--percent .final-insights {
  margin: 0;
  max-width: 72ch;
  text-align: center;
}

#Fynia-adv-bottom-row .ix-card--gauge .ix-gauge,
#Fynia-adv-bottom-row .ix-card--gauge .ix-note-center {
  width: 100%;
  text-align: center;
}

#Fynia-bottom-row-20 {
  margin-top: 40px;
  margin-bottom: 40px;
}

#Fynia-download-button-20 {
  margin-bottom: 0;
}

#child-end.unique-container-xyz123 {
  width: min(100% - 30px, 1320px);
  margin-inline: auto;
  margin-top: 24px;
  margin-bottom: 40px;
  align-items: center;
}

#child-end #child-left,
#child-end #child-right {
  display: flex;
  min-width: 0;
}

#child-end #child-left {
  justify-content: center;
  align-items: center;
}

#child-end #child-left img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

#child-end #child-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#child-end #end-example-p {
  margin: 0 0 18px 0;
  max-width: 32ch;
  text-align: center;
}

#child-end .hero-buttons {
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

@media (max-width: 1024px) {
  #Fynia-adv-bottom-row .ix-card--percent .final-insights {
    max-width: 68ch;
    text-align: center;
  }

  #child-end.unique-container-xyz123 {
    margin-bottom: 36px;
  }

  #child-end #child-left img {
    width: min(100%, 360px);
  }

  #child-end #end-example-p {
    max-width: 38ch;
  }
}

@media (max-width: 768px) {
  #Fynia-bottom-row-20 {
    margin-bottom: 32px;
  }

  #Fynia-adv-bottom-row .ix-card--percent #Fynia-adv-middle-top-h3-aux,
  #Fynia-adv-bottom-row .ix-card--gauge #Fynia-adv-middle-top-h3-aux {
    margin-bottom: 10px;
  }

  #Fynia-adv-bottom-row .ix-card--percent .final-insights {
    max-width: 100%;
    text-align: center;
  }

  #child-end.unique-container-xyz123 {
    margin-bottom: 32px;
    row-gap: 14px;
  }

  #child-end #child-left img {
    width: min(100%, 320px);
  }

  #child-end #child-right {
    width: 100%;
  }

  #child-end #end-example-p {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  #Fynia-bottom-row-20 {
    margin-bottom: 28px;
  }

  #child-end.unique-container-xyz123 {
    margin-bottom: 28px;
  }

  #child-end #child-left img {
    width: min(100%, 280px);
  }
}

/* =========================================================
   PATCH QUIRÚRGICO — TABLA COMPARATIVA JANEEXAMPLE
   Pegar al FINAL de auxiliar2.css
   ========================================================= */

/* ---------- DESKTOP: tabla grande visible y mejor alineada ---------- */
#loan-comparison-11 {
  max-width: 1320px !important;
  width: 100% !important;
  margin: 60px auto !important;
  background: #fff !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

#loan-comparison-table-11 {
  display: table !important;
  width: min(calc(100% - 30px), 1320px) !important;
  margin-inline: auto !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
}

#loan-comparison-toprow-11 td {
  vertical-align: middle !important;
}

/* tipografía general: baja 1 punto y centra mejor */
#loan-comparison-table-11 td,
#loan-comparison-table-11 th {
  text-align: center !important;
  vertical-align: middle !important;
  border: 1px dashed #ccc !important;
  padding: 11px 8px !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  font-family: Outfit, Arial, sans-serif !important;
  line-height: 1.3 !important;
}

#loan-comparison-table-11 td:hover,
#loan-comparison-table-11 th:hover {
  border: 1px dashed #00c853 !important;
  background-color: rgb(245, 248, 244) !important;
  color: #000 !important;
}

.loan-comparison-label-11 {
  width: 132px !important;
  text-align: left !important;
  vertical-align: middle !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  background-color: rgb(245, 248, 244) !important;
}

#loan-comparison-label-11-aux {
  background-color: #00b86b !important;
  color: #fff !important;
}

.loan-comparison-col-11 {
  width: 150px !important;
  background-color: #fdfdfd !important;
  vertical-align: middle !important;
}

.loan-comparison-emptycell-11 {
  width: 100px !important;
  background-color: rgb(245, 248, 244) !important;
}

/* títulos / pagos: baja 1 punto */
.loan-comparison-alt-title-11 {
  font-size: 21px !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
  line-height: 1.2 !important;
}

.loan-comparison-alt-month-11 {
  font-size: 29px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.loan-comparison-small-11 {
  font-size: 19px !important;
  font-weight: 400 !important;
}

.loan-comparison-savings-11 {
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.loan-comparison-savings-monthly {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

#lcsm-empty-2 {
  font-size: 17px !important;
  font-weight: 500 !important;
}

/* filas que te estaban quedando mal centradas */
.loan-comparison-rank-11,
.efficiency-11 {
  font-size: 17px !important;
  font-weight: 600 !important;
  vertical-align: middle !important;
  line-height: 1.25 !important;
}

.loan-comparison-consider-11 {
  font-size: 19px !important;
  font-weight: 300 !important;
  text-align: center !important;
  vertical-align: middle !important;
  line-height: 1.35 !important;
  padding: 15px !important;
}

/* asegura mejor centrado vertical en esas dos filas */
#loan-comparison-table-11 tbody tr:nth-child(2) td,
#loan-comparison-table-11 tbody tr:nth-child(6) td,
#loan-comparison-table-11 tbody tr:nth-child(7) td {
  vertical-align: middle !important;
}

/* ---------- MINI-TABLAS: ocultas por defecto en desktop ---------- */
#loan-mini-tables-11 {
  display: none !important;
  max-width: 1320px !important;
  margin: 10px auto 0 !important;
  padding-inline: 15px !important;
  box-sizing: border-box !important;
}

/* ---------- TABLET: oculta tabla grande y muestra mini-tablas ---------- */
@media (max-width: 1024px) {
  #loan-comparison-table-11 {
    display: none !important;
  }

  #loan-mini-tables-11:not(:empty),
  body.mini-tables-ready #loan-mini-tables-11:not(:empty) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding-inline: 15px !important;
    margin-top: 10px !important;
  }
}

/* ---------- MÓVIL: una sola columna ---------- */
@media (max-width: 768px) {
  #loan-mini-tables-11:not(:empty),
  body.mini-tables-ready #loan-mini-tables-11:not(:empty) {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- ESTILO DE CADA MINI-TABLA ---------- */
.mini-table-11 {
  width: 100% !important;
  border: 1px dashed #ccc !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
}

.mini-table-11 thead th {
  background: rgb(245, 248, 244) !important;
  font-weight: 600 !important;
  text-align: center !important;
  padding: 10px 12px !important;
  font-size: clamp(17px, 1.5vw, 21px) !important;
  line-height: 1.25 !important;
  font-family: Outfit, Arial, sans-serif !important;
}

.mini-table-11 tbody td {
  padding: 10px 12px !important;
  border-bottom: 1px dashed #e5e7eb !important;
  vertical-align: middle !important;
}

.mini-table-11 tbody tr:last-child td {
  border-bottom: 0 !important;
}

.mini-table-11 .alt-cell {
  width: 42% !important;
}

.mini-table-11 .alt-chip {
  display: inline-block !important;
  padding: 6px 8px !important;
  border-radius: 4px !important;
  font-size: clamp(17px, 1.3vw, 19px) !important;
  line-height: 1.2 !important;
  font-family: Outfit, Arial, sans-serif !important;
}

.mini-table-11 .val-cell {
  width: 58% !important;
}

.mini-table-11 .val-main {
  font-size: clamp(19px, 1.7vw, 23px) !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  font-family: Outfit, Arial, sans-serif !important;
  text-align: right !important;
}

.mini-table-11 .val-sub {
  display: block !important;
  font-size: clamp(14px, 1.3vw, 16px) !important;
  line-height: 1.25 !important;
  opacity: 0.95 !important;
  margin-top: 4px !important;
  text-align: right !important;
  font-family: Outfit, Arial, sans-serif !important;
  font-weight: 500 !important;
}

.mini-table-11 .val-sub.val-pct {
  color: #00b86b !important;
  font-weight: 600 !important;
}

/* colores de chips */
.alt-baseline {
  background: #30313c !important;
  color: #fff !important;
}
.alt-basic {
  background: #e0e0e0 !important;
  color: #000 !important;
}
.alt-standard {
  background: #aed6f1 !important;
  color: #000 !important;
}
.alt-premium {
  background: #a3e4d7 !important;
  color: #000 !important;
}
.alt-ideal {
  background: #82e0aa !important;
  color: #000 !important;
}
.alt-quick {
  background: #f7dc6f !important;
  color: #000 !important;
}
.alt-max {
  background: #f1948a !important;
  color: #000 !important;
}

/* resaltar Ideal en métricas clave dentro de mini-tablas */
.mini-table-11[data-metric="efficiency-ratio"] tr.row-variant-ideal .val-main,
.mini-table-11[data-metric="payment-efficiency"]
  tr.row-variant-ideal
  .val-main {
  color: #00b86b !important;
  font-weight: 600 !important;
}

.results-container .child-2 {
  min-height: 190px;
  display: flex;
}

.results-container .half {
  min-height: 190px;
  width: 100%;
  padding: 14px 15px;
  display: grid;
  grid-template-rows: 50px minmax(56px, auto) 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
  box-sizing: border-box;
}

.example-container#Billexamplecontainerheader {
  display: flex;
  align-items: center;
  gap: 24px;
}

.example-container#Billexamplecontainerheader .left {
  flex: 1.45;
}

.example-container#Billexamplecontainerheader .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   AUTO LOAN OPTIMIZER — patch de rendimiento y accesibilidad
   ========================================================= */

.alo-page {
  --alo-green-accessible: #007a45;
  --alo-green-strong: #00663a;
}

.alo-page .fynia-green {
  color: var(--alo-green-strong);
}

.alo-page .alo-kicker,
.alo-page .alo-section-kicker,
.alo-page .learn-card-label {
  color: var(--alo-green-strong);
  border-color: #b8d4c4;
  background-color: #fff;
}

.alo-page .alo-breadcrumb,
.alo-page .alo-breadcrumb a,
.alo-page .alo-subtitle,
.alo-page .alo-section-head p,
.alo-page .alo-split-left p,
.alo-page .alo-example-head p,
.alo-page .alo-example-note,
.alo-page .alo-card p,
.alo-page .alo-faq-content p {
  color: #334155;
}

.alo-page .alo-hero-actions .btn.primary,
.alo-page .alo-bottom-actions .btn.primary {
  background-color: var(--alo-green-accessible);
  border-color: var(--alo-green-accessible);
  color: #fff;
}

.alo-page .alo-hero-actions .btn.primary:hover,
.alo-page .alo-bottom-actions .btn.primary:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.alo-page .learn-card-footer a {
  color: var(--alo-green-strong);
}

.alo-page .learn-card-footer a:hover {
  color: #000;
}

.alo-page .alo-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alo-page .alo-hero-illustration {
  display: block;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
}

.alo-page .alo-section,
.alo-page .alo-bottom-cta {
  content-visibility: auto;
}

.alo-page .alo-section {
  contain-intrinsic-size: 900px;
}

.alo-page .alo-bottom-cta {
  contain-intrinsic-size: 420px;
}

@media (max-width: 1024px) {
  .alo-page .alo-hero-illustration {
    width: min(100%, 460px);
  }
}

@media (max-width: 768px) {
  .alo-page .alo-hero-illustration {
    width: min(100%, 360px);
  }
}

/* =========================================================
   GET STARTED — aesthetic redesign
   Scoped to .gs-page to avoid conflicts
   ========================================================= */

.gs-page {
  padding-top: 22px;
  padding-bottom: 56px;
  background: #fff;
}

.gs-shell {
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
  box-sizing: border-box;
}

.gs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.gs-hero-main,
.gs-hero-panel,
.gs-step-card,
.gs-bottom-note {
  min-width: 0;
}

.gs-hero-main {
  background: linear-gradient(180deg, #f7faf6 0%, rgb(245, 248, 244) 100%);
  border: 1px dashed #ccd5cf;
  padding: clamp(28px, 4vw, 42px);
}

.gs-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px dashed #c9d7ce;
  background: #fff;
  color: #007a45;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-title {
  margin: 0 0 18px;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2.8px;
  color: #000;
}

.gs-subtitle {
  max-width: 46ch;
  margin: 0 0 24px;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(18px, 1.5vw + 0.5rem, 22px);
  line-height: 1.58;
}

.gs-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.gs-mini-card {
  background: #fff;
  border: 1px dashed #d7ddd9;
  padding: 16px 15px;
}

.gs-mini-card strong {
  display: block;
  color: #111827;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.gs-mini-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #007a45;
  font-family: Outfit, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gs-hero-panel {
  background: linear-gradient(180deg, #00884e 0%, #006a3d 100%);
  border: 1px solid #006a3d;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-panel-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-hero-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.2px;
  text-align: left;
}

.gs-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.gs-flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.gs-flow-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.gs-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.gs-flow-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.gs-flow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.gs-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gs-step-card {
  background: #fff;
  border: 1px dashed #ccd5cf;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.gs-step-card:hover {
  transform: translateY(-3px);
  border-color: #00c853;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.gs-step-card--buy {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfa 100%);
}

.gs-step-card--start {
  background: linear-gradient(180deg, #f7faf6 0%, #eef6f1 100%);
}

.gs-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gs-step-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px dashed #00c853;
  background: rgb(245, 248, 244);
  color: #005c36;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-step-eyebrow {
  color: #6b7280;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.gs-step-card h2 {
  margin: 0;
  color: #000;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.2px;
  text-align: left;
}

.gs-step-card p {
  margin: 0;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  text-align: left;
}

.gs-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed #d6ddd8;
  flex-wrap: wrap;
}

.gs-step-note {
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.gs-step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.8rem 1.45rem;
  background-color: #00c853;
  border: 1px solid #00c853;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.gs-step-button:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.gs-bottom-note {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px dashed #d5ddd8;
  background: rgb(245, 248, 244);
}

.gs-bottom-note p {
  margin: 0;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1100px) {
  .gs-hero {
    grid-template-columns: 1fr;
  }

  .gs-mini-grid,
  .gs-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gs-page {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .gs-shell {
    width: calc(100% - 20px);
  }

  .gs-hero-main,
  .gs-hero-panel,
  .gs-step-card,
  .gs-bottom-note {
    padding: 22px 18px;
  }

  .gs-title {
    letter-spacing: -1.6px;
  }

  .gs-subtitle,
  .gs-step-card p,
  .gs-bottom-note p {
    font-size: 17px;
  }

  .gs-mini-grid,
  .gs-steps {
    grid-template-columns: 1fr;
  }

  .gs-step-card h2 {
    font-size: 32px;
  }

  .gs-step-footer {
    align-items: stretch;
  }

  .gs-step-button {
    width: 100%;
    min-width: 0;
  }

  .gs-mini-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .gs-kicker,
  .gs-panel-label,
  .gs-step-badge {
    font-size: 12px;
  }

  .gs-flow-list strong,
  .gs-mini-card strong {
    font-size: 17px;
  }

  .gs-flow-list p,
  .gs-step-note {
    font-size: 14px;
  }
}

/* =========================================================
   GET STARTED — clarity refinement v2
   ========================================================= */
.gs-subtitle {
  max-width: 40ch;
}

.gs-hero-panel h2 {
  max-width: 12ch;
}

.gs-step-card {
  gap: 14px;
}

.gs-step-card h2 {
  font-size: clamp(1.85rem, 1.8vw + 1rem, 2.45rem);
  letter-spacing: -0.9px;
}

.gs-step-card p {
  max-width: 38ch;
}

.gs-step-note {
  color: #334155;
}

.gs-step-card--start {
  background: linear-gradient(180deg, #f8fbf9 0%, #f2f8f4 100%);
}

.gs-bottom-note {
  border-color: #cfdad4;
}

@media (max-width: 768px) {
  .gs-hero-panel h2 {
    max-width: none;
  }

  .gs-step-card p,
  .gs-subtitle {
    max-width: none;
  }
}

/* =========================================================
   GET STARTED — simplified hero without side panel
   ========================================================= */
.gs-hero {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}

.gs-hero-main {
  align-items: center;
  text-align: center;
}

.gs-subtitle {
  max-width: 52ch;
  margin-inline: auto;
}

.gs-mini-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gs-mini-card {
  min-height: 122px;
}

.gs-steps {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .gs-hero {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gs-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   GET STARTED — refined redesign v4
   Clearer actions + opti-details-inspired styling
   ========================================================= */

.gs-page {
  padding-top: 22px;
  padding-bottom: 60px;
  background:
    radial-gradient(circle at top, rgba(0, 200, 83, 0.05), transparent 34%),
    #fff;
}

.gs-shell {
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
  box-sizing: border-box;
}

.gs-hero {
  display: block;
  max-width: 980px;
  margin: 0 auto 22px;
}

.gs-hero-main {
  position: relative;
  background: linear-gradient(180deg, #f8fbf8 0%, rgb(245, 248, 244) 100%);
  border: 1px dashed #cfd9d2;
  border-radius: 26px;
  padding: clamp(28px, 4.2vw, 44px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  text-align: center;
  overflow: hidden;
}

.gs-hero-main::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00c853 0%, #00b86b 52%, #7cd9a5 100%);
}

.gs-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 13px;
  border: 1px dashed #bcd4c5;
  border-radius: 999px;
  background: #fff;
  color: #007a45;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-title {
  margin: 0 0 18px;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2.6px;
  color: #000;
  text-align: center;
}

.gs-subtitle {
  max-width: 43ch;
  margin: 0 auto 26px;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(18px, 1.45vw + 0.55rem, 22px);
  line-height: 1.58;
  text-align: center;
}

.gs-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 2px;
}

.gs-mini-card {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px dashed #d6dfd9;
  border-radius: 18px;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gs-mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #007a45;
  font-family: Outfit, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-mini-card strong {
  display: block;
  color: #111827;
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
}

.gs-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gs-step-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px dashed #cfd8d2;
  border-radius: 26px;
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.gs-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 26px 26px 0 0;
}

.gs-step-card--buy {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.gs-step-card--buy::before {
  background: linear-gradient(90deg, #00c853 0%, #00b86b 100%);
}

.gs-step-card--start {
  background: linear-gradient(180deg, #f9fcfa 0%, #f1f8f4 100%);
}

.gs-step-card--start::before {
  background: linear-gradient(90deg, #0f172a 0%, #334155 100%);
}

.gs-step-card:hover {
  transform: translateY(-3px);
  border-color: #00c853;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.gs-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gs-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px dashed #00c853;
  border-radius: 999px;
  background: rgba(0, 200, 83, 0.08);
  color: #005c36;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-step-eyebrow {
  color: #5b6877;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.gs-step-card h2 {
  margin: 0;
  color: #000;
  font-family:
    Hanken Grotesk,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.65rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -1px;
  text-align: left;
}

.gs-step-card p {
  margin: 0;
  max-width: 39ch;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.gs-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed #d8e0db;
  flex-wrap: wrap;
}

.gs-step-note {
  color: #334155;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.gs-step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gs-step-button:hover {
  transform: translateY(-1px);
}

.gs-step-button--primary {
  background: #00c853;
  border: 1px solid #00c853;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.18);
}

.gs-step-button--primary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.gs-step-button--secondary {
  background: #fff;
  border: 1px dashed #c6d2cb;
  color: #111827;
}

.gs-step-button--secondary:hover {
  background: rgb(245, 248, 244);
  border-color: #00c853;
  color: #000;
}

.gs-bottom-note {
  max-width: 980px;
  margin: 20px auto 0;
  padding: 18px 22px;
  border: 1px dashed #d2ddd7;
  border-radius: 20px;
  background: rgb(245, 248, 244);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.gs-bottom-note p {
  margin: 0;
  color: #425366;
  font-family: Outfit, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1100px) {
  .gs-steps {
    grid-template-columns: 1fr;
  }

  .gs-step-card p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .gs-page {
    padding-top: 16px;
    padding-bottom: 42px;
  }

  .gs-shell {
    width: calc(100% - 20px);
  }

  .gs-hero-main,
  .gs-step-card,
  .gs-bottom-note {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .gs-title {
    letter-spacing: -1.6px;
  }

  .gs-subtitle,
  .gs-step-card p,
  .gs-bottom-note p {
    font-size: 17px;
  }

  .gs-mini-grid {
    gap: 8px;
  }

  .gs-mini-card {
    min-height: 76px;
    padding: 10px 8px;
    border-radius: 16px;
    gap: 4px;
  }

  .gs-step-card h2 {
    font-size: 32px;
  }

  .gs-step-footer {
    align-items: stretch;
  }

  .gs-step-button {
    width: 100%;
    min-width: 0;
  }

  .gs-mini-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .gs-kicker,
  .gs-step-badge {
    font-size: 12px;
  }

  .gs-mini-card strong {
    font-size: 12px;
    line-height: 1.22;
  }

  .gs-step-note {
    font-size: 14px;
  }

  .gs-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .gs-mini-card {
    min-height: 68px;
    padding: 8px 6px;
    border-radius: 14px;
  }
}

/* ===== GETSTARTED hotfixes v5 =====
   - Compact mini cards, especially on smartphone
   - Start Optimization button matches Buy Token
   - Top accent line stays inside rounded card
*/
.gs-step-button--secondary {
  background: #00c853;
  border: 1px solid #00c853;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.18);
}

.gs-step-button--secondary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}
