/* ==========================================================================
   Be·ia — Design tokens
   ========================================================================== */

:root {
  --beia-pink: #dc1254;
  --beia-purple: #280091;
  --soft: #fff7fb;
  --ink: #090b1f;
  --muted: #64748b;

  --color-nav: #596174;
  --color-muted-soft: #6b7280;
  --color-white: #ffffff;
  --color-dark: #050819;
  --font-body: Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Comfortaa, Avenir, system-ui, sans-serif;
  --container-max: 1180px;
  --container-gutter: 40px;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shadow-card: 0 28px 80px rgba(220, 18, 84, 0.16);
  --shadow-primary: 0 18px 34px rgba(220, 18, 84, 0.22);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft);
  overflow-x: clip;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: min(var(--container-max), calc(100% - var(--container-gutter)));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.white-section {
  background: transparent;
}

.section-header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section-header.left {
  margin: 0;
  text-align: left;
}

.section-text {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-text a,
.geo-summary a,
.faq-answer a,
.check-list a {
  color: var(--beia-pink);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-text a:hover,
.geo-summary a:hover,
.faq-answer a:hover,
.check-list a:hover {
  color: var(--beia-purple);
}

.section-text a:focus-visible,
.geo-summary a:focus-visible,
.faq-answer a:focus-visible,
.check-list a:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 3px;
  border-radius: 2px;
}

.grid-3 {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.split-grid,
.quality-grid,
.distributor-grid,
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ==========================================================================
   Page background
   ========================================================================== */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--soft);
  background-image:
    radial-gradient(ellipse 92% 58% at 92% 6%, rgba(220, 18, 84, 0.17) 0%, transparent 58%),
    radial-gradient(ellipse 78% 52% at 4% 38%, rgba(40, 0, 145, 0.15) 0%, transparent 54%),
    radial-gradient(ellipse 72% 48% at 78% 68%, rgba(220, 18, 84, 0.12) 0%, transparent 56%),
    radial-gradient(ellipse 68% 52% at 12% 92%, rgba(40, 0, 145, 0.11) 0%, transparent 54%);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.page-bg::before {
  width: 520px;
  height: 520px;
  top: 38%;
  right: -140px;
  background: rgba(220, 18, 84, 0.14);
  opacity: 0.5;
}

.page-bg::after {
  width: 460px;
  height: 460px;
  bottom: -60px;
  left: 28%;
  background: rgba(40, 0, 145, 0.12);
  opacity: 0.48;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-pink {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: rgba(220, 18, 84, 0.22);
}

.blob-purple {
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -100px;
  background: rgba(40, 0, 145, 0.18);
}

.blob-pink--mid {
  width: 400px;
  height: 400px;
  top: 52%;
  left: -120px;
  background: rgba(220, 18, 84, 0.16);
  opacity: 0.48;
}

.blob-purple--low {
  width: 440px;
  height: 440px;
  bottom: -100px;
  right: -100px;
  background: rgba(40, 0, 145, 0.15);
  opacity: 0.46;
}

/* Fondo continuo: main y secciones no pintan bloques sólidos sobre .page-bg */
main {
  background: transparent;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.site-header .logo img,
.site-footer .logo img {
  height: 40px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
  color: var(--color-nav);
}

.site-header .nav .nav-mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(220, 18, 84, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--beia-purple);
  cursor: pointer;
  padding: 0;
}

.menu-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav a,
.footer-links a,
.footer-nav__list a {
  color: inherit;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a[aria-current="page"] {
  color: var(--beia-pink);
}

.page-intro {
  padding-top: 48px;
}

/* Language switcher */
.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 18, 84, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.lang-switch__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  box-shadow: 0 10px 22px rgba(220, 18, 84, 0.28);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lang-switch[data-lang="en"] .lang-switch__indicator {
  transform: translateX(100%);
}

.lang-switch__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 11px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

.lang-switch__flag {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.lang-switch__flag--es {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 60'%3E%3Cpath fill='%23AA151B' d='M0 0h90v60H0z'/%3E%3Cpath fill='%23F1BF00' d='M0 15h90v30H0z'/%3E%3C/svg%3E");
}

.lang-switch__flag--en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='c'%3E%3Cpath d='M0 0h60v30H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23c)'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath stroke='%23fff' stroke-width='6' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23C8102E' stroke-width='4' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='6' d='M30 0v30M0 15h60'/%3E%3C/g%3E%3C/svg%3E");
}

.lang-switch__btn:hover:not(.is-active) .lang-switch__flag {
  box-shadow: 0 0 0 1px rgba(40, 0, 145, 0.2);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 2px;
}

.lang-switch__btn:not(.is-active) {
  opacity: 0.72;
}

.lang-switch__btn.is-active {
  opacity: 1;
}

.lang-switch__btn--soon:disabled,
.lang-switch__btn[disabled] {
  cursor: not-allowed;
  opacity: 0.34;
}

.lang-switch__btn--soon:disabled:hover .lang-switch__flag,
.lang-switch__btn[disabled]:hover .lang-switch__flag {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.site-header.nav-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--beia-pink);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--beia-purple);
  border: 1px solid rgba(220, 18, 84, 0.18);
}

.btn-white {
  background: var(--color-white);
  color: var(--beia-pink);
  box-shadow: 0 18px 44px rgba(20, 10, 40, 0.18);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 76px 0 92px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.eyebrow-pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--beia-purple);
  border: 1px solid rgba(220, 18, 84, 0.14);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-lead {
  margin-top: 16px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.hero-copy {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-cta-inline {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.section-header.left .section-cta-inline {
  justify-content: flex-start;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .hero-actions .btn-primary {
  flex-basis: 100%;
  width: auto;
}

.microcopy {
  margin-top: 15px;
  color: var(--color-muted-soft);
  font-size: 14px;
  font-weight: 700;
}

/* Resumen GEO/AEO: mismo lenguaje visual que el resto de secciones (sin caja) */
.geo-summary {
  padding: 4px 0 40px;
}

.geo-summary__inner {
  max-width: 40rem;
}

.geo-summary .eyebrow {
  margin-bottom: 10px;
}

.geo-summary .section-text {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.72;
}

.geo-summary + .section-pad {
  padding-top: 64px;
}

@media (max-width: 768px) {
  .geo-summary {
    padding-bottom: 28px;
  }

  .geo-summary + .section-pad {
    padding-top: 48px;
  }

  .geo-summary .section-text {
    font-size: 16px;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: clamp(440px, 36vw, 520px);
  padding-top: 32px;
}

.hero-glow {
  position: absolute;
  top: 48px;
  left: -20px;
  right: -20px;
  bottom: -28px;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.16), rgba(40, 0, 145, 0.14));
  filter: blur(34px);
}

.hero-composition {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: clamp(420px, 34vw, 500px);
  margin-right: auto;
  margin-top: 24px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: var(--color-white);
  padding: 8px;
  box-shadow: 0 28px 70px rgba(220, 18, 84, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 50% 36%, #ffe3d7 0%, #f0b8a4 38%, #d9897d 66%, #160b0d 100%);
}

.image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.card-ultrasound .image-wrap,
.card-born .image-wrap {
  aspect-ratio: 420 / 536;
}

.card-ultrasound .image-wrap img,
.card-born .image-wrap img {
  object-fit: cover;
  object-position: center 40%;
}

.card-beia .image-wrap img {
  object-position: center 42%;
}

.fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 36%, #ffe3d7 0%, #f0b8a4 38%, #d9897d 66%, #160b0d 100%);
}

.ultrasound .fallback {
  background: radial-gradient(circle at 48% 42%, #f3c5a6 0%, #d28a58 32%, #a94b20 58%, #170d08 100%);
}

.born .fallback {
  background: radial-gradient(circle at 50% 32%, #f7d1c5 0%, #d9a093 44%, #a86c66 72%, #332020 100%);
}

.label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
  color: var(--beia-purple);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.card-beia .label {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.card-born .label {
  left: auto;
  right: 16px;
}

.card-ultrasound {
  left: 0;
  top: 112px;
  width: 41%;
  transform: rotate(-6deg);
  z-index: 1;
}

.card-beia {
  left: 50%;
  top: 36px;
  width: 46%;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.card-born {
  right: 0;
  top: 132px;
  width: 41%;
  transform: rotate(6deg);
  z-index: 2;
}

@media (min-width: 1100px) {
  .hero-composition {
    transform: scale(1.04);
    transform-origin: left center;
  }

  .hero-carousel__composition {
    transform: scale(1.04);
    transform-origin: left center;
  }
}

/* Hero carousel */

.hero-carousel {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
}

.hero-carousel__frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.hero-carousel--static .hero-carousel__frame {
  justify-content: center;
}

.hero-carousel__composition {
  flex: 1;
  min-width: 0;
}

.hero-carousel .image-wrap img[data-hero-image] {
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.hero-carousel.is-transitioning .image-wrap img[data-hero-image] {
  opacity: 0;
  transform: translateY(8px);
}

.image-wrap--placeholder img[data-hero-image],
.image-wrap--placeholder img[data-hero-image][hidden] {
  display: none !important;
  visibility: hidden;
  opacity: 0 !important;
  transform: none !important;
  pointer-events: none;
}

.image-wrap--placeholder .fallback {
  z-index: 1;
}

.hero-carousel--placeholder-slide .image-wrap img[data-hero-image] {
  display: none !important;
}

.hero-carousel__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(220, 18, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--beia-pink);
  box-shadow: 0 10px 28px rgba(40, 0, 145, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-carousel__button:hover {
  background: var(--color-white);
  color: var(--beia-purple);
  box-shadow: 0 14px 32px rgba(220, 18, 84, 0.18);
  transform: translateY(-1px);
}

.hero-carousel__button:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 2px;
}

.hero-carousel__button-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
}

.hero-carousel__button--prev .hero-carousel__button-icon {
  transform: rotate(-135deg) translate(1px, -1px);
}

.hero-carousel__button--next .hero-carousel__button-icon {
  transform: rotate(45deg) translate(-1px, 1px);
}

.hero-carousel__dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 4px;
}

.hero-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(40, 0, 145, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero-carousel__dot:hover {
  background: rgba(220, 18, 84, 0.45);
}

.hero-carousel__dot:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 3px;
}

.hero-carousel__dot.is-active {
  width: 24px;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
}

/* ==========================================================================
   Sections — shared
   ========================================================================== */

.eyebrow {
  color: var(--beia-pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}

.note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.comparison-card,
.feature-card,
.soft-card,
.faq-item,
.partner-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 24px;
}

/* Before / after comparison slider */
.comparison-slider {
  --slider-pos: 50%;
  --comparison-viewport-width: 100%;
  width: 100%;
}

.comparison-slider__viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 35%, #f0b37a, #9a5a2f 45%, #1e140f 80%);
  user-select: none;
  touch-action: pan-y;
}

.comparison-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.comparison-slider__img--before {
  z-index: 0;
}

.comparison-slider__reveal {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% - var(--slider-pos));
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.comparison-slider__reveal .comparison-slider__img--after {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  width: var(--comparison-viewport-width);
  height: 100%;
  max-width: none;
}

.comparison-slider__tag {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 11, 31, 0.58);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  pointer-events: none;
}

.comparison-slider__tag--before {
  left: 12px;
}

.comparison-slider__tag--after {
  right: 12px;
}

.comparison-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  z-index: 3;
  width: 0;
  transform: translateX(-50%);
  border-left: 2px solid var(--color-white);
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.14), 1px 0 0 rgba(0, 0, 0, 0.14);
  pointer-events: none;
  transition: left 0.05s linear;
}

.comparison-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  border: 3px solid var(--color-white);
  box-shadow: 0 10px 28px rgba(220, 18, 84, 0.35);
  transform: translate(-50%, -50%);
}

.comparison-slider__control {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  cursor: ew-resize;
}

.comparison-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-slider__range:focus-visible {
  outline: none;
}

.comparison-slider__viewport:focus-within .comparison-slider__handle::after {
  outline: 2px solid var(--beia-pink);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.comparison-caption {
  margin-top: 16px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}

.feature-card .step {
  margin-top: 16px;
  color: var(--beia-pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin-top: 8px;
}

.feature-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.12), rgba(40, 0, 145, 0.1));
  color: var(--beia-purple);
  font-size: 22px;
  font-weight: 900;
}

.gradient-card,
.final-cta {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
  padding: 46px;
  box-shadow: 0 28px 70px rgba(220, 18, 84, 0.2);
}

.final-cta {
  text-align: center;
}

.gradient-card p,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 20px;
  line-height: 1.75;
}

.final-cta > p:not(.final-cta__note) {
  max-width: 720px;
  margin-inline: auto;
}

.final-cta .btn {
  margin-top: 28px;
}

.gradient-card a:not(.btn),
.final-cta a:not(.btn) {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.gradient-card a:not(.btn):hover,
.final-cta a:not(.btn):hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: currentColor;
}

.gradient-card a:not(.btn):focus-visible,
.final-cta a:not(.btn):focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

.soft-card h2 {
  margin-bottom: 0;
}

.soft-card > p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.soft-card > .btn {
  margin-top: 24px;
}

.pill-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-features {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
}

.soft-card .pill {
  background: rgba(220, 18, 84, 0.08);
  color: var(--ink);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.check {
  color: var(--beia-pink);
  font-weight: 900;
}

.quality-cards {
  display: grid;
  gap: 20px;
}

.quality-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(220, 18, 84, 0.06);
  border: 1px solid rgba(220, 18, 84, 0.12);
}

.quality-card.bad {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
}

.quality-card h3 {
  margin-bottom: 16px;
}

.quality-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-box {
  border-radius: var(--radius-xl);
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.pricing-inner {
  padding: 56px;
}

.pricing-header .section-text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}

#precios .price-grid {
  margin-top: 0;
}

.price-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--color-white);
  color: var(--ink);
}

.price-card.annual {
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
}

.price-card.annual p {
  color: rgba(255, 255, 255, 0.92);
}

.price-label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.price-card.annual .price-label {
  color: rgba(255, 255, 255, 0.75);
}

.price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.amount {
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 900;
}

.period {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}

.price-card.annual .period {
  color: rgba(255, 255, 255, 0.75);
}

.price-card > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.price-card.annual > p:last-child {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 650;
}

.pricing-features .pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.pricing-cta {
  margin-top: 32px;
  text-align: center;
}

.pricing-cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.pricing-box .pricing-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.pricing-box .pricing-link:hover {
  color: var(--beia-pink);
  text-decoration-color: currentColor;
}

.pricing-box .pricing-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ==========================================================================
   Partners
   ========================================================================== */

.partner-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.12), rgba(40, 0, 145, 0.1));
  font-size: 24px;
  color: var(--beia-purple);
  margin-bottom: 16px;
}

.partner-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section {
  background: transparent;
}

.testimonials-section--compact {
  padding-top: 0;
}

.testimonials-carousel {
  margin-top: 48px;
}

.testimonials-carousel__viewport {
  position: relative;
  overflow: visible;
  padding: 24px 20px 8px;
  margin: -24px -20px -8px;
}

.testimonials-carousel__track {
  position: relative;
  min-height: 360px;
  overflow: visible;
}

.testimonials-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.testimonials-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.testimonials-carousel__slide:not(.is-active) .testimonial-card {
  box-shadow: none;
}

.testimonials-carousel.is-transitioning .testimonials-carousel__slide.is-active {
  opacity: 0.92;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(40, 0, 145, 0.08);
  box-shadow:
    0 2px 6px rgba(9, 11, 31, 0.04),
    0 18px 44px rgba(40, 0, 145, 0.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.testimonial-card--carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 24px 30px;
  text-align: center;
}

.testimonial-card__media {
  flex-shrink: 0;
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.testimonial-card__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
}

.testimonial-card__quote {
  margin: 0;
}

.testimonial-card__quote p {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.72;
  color: var(--ink);
}

.testimonial-card__person {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(40, 0, 145, 0.08);
}

.testimonial-card__name {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.testimonial-card__role {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card__avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
}

.testimonial-card__avatar > * {
  grid-area: 1 / 1;
}

.testimonial-card__avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 3px solid rgba(220, 18, 84, 0.12);
  box-shadow: 0 8px 24px rgba(40, 0, 145, 0.1);
}

.testimonial-card__avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--beia-purple);
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.1), rgba(40, 0, 145, 0.08));
  border: 1px solid rgba(40, 0, 145, 0.12);
  box-shadow: 0 8px 24px rgba(40, 0, 145, 0.1);
}

.testimonial-card--spotlight {
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.testimonials-carousel__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(220, 18, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--beia-pink);
  box-shadow: 0 10px 28px rgba(40, 0, 145, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.testimonials-carousel__button:hover {
  background: var(--color-white);
  color: var(--beia-purple);
  box-shadow: 0 14px 32px rgba(220, 18, 84, 0.16);
  transform: translateY(-1px);
}

.testimonials-carousel__button:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 2px;
}

.testimonials-carousel__button-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
}

.testimonials-carousel__button--prev .testimonials-carousel__button-icon {
  transform: rotate(-135deg) translate(1px, -1px);
}

.testimonials-carousel__button--next .testimonials-carousel__button-icon {
  transform: rotate(45deg) translate(-1px, 1px);
}

.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: min(100%, 320px);
}

.testimonials-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(40, 0, 145, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.testimonials-carousel__dot:hover {
  background: rgba(220, 18, 84, 0.45);
}

.testimonials-carousel__dot:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 3px;
}

.testimonials-carousel__dot.is-active {
  width: 24px;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
}

@media (min-width: 768px) {
  .testimonials-carousel__track {
    min-height: 280px;
  }

  .testimonial-card--carousel,
  .testimonial-card--spotlight {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
    text-align: left;
  }

  .testimonial-card__content {
    align-items: flex-start;
  }

  .testimonial-card__role {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .testimonial-card__avatar,
  .testimonial-card__avatar img,
  .testimonial-card__avatar-placeholder {
    width: 112px;
    height: 112px;
  }

  .testimonial-card__avatar img {
    width: 112px;
    height: 112px;
  }

  .testimonial-card__mark {
    font-size: 56px;
  }
}

@media (max-width: 560px) {
  .testimonials-carousel {
    margin-top: 36px;
  }

  .testimonials-carousel__track {
    min-height: 420px;
  }

  .testimonial-card--carousel,
  .testimonial-card--spotlight {
    padding: 24px 20px 26px;
    gap: 20px;
  }

  .testimonial-card__quote p {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-card__mark {
    font-size: 40px;
  }

  .testimonials-carousel__button {
    width: 44px;
    height: 44px;
  }

  .testimonials-carousel__controls {
    gap: 12px;
    margin-top: 20px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 0;
  padding: 22px 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  color: var(--ink);
}

.chevron {
  flex-shrink: 0;
  color: var(--beia-pink);
  transition: transform 0.2s ease;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-top: 12px;
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 36px);
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.legal-content p {
  margin-top: 14px;
}

.legal-content ul,
.legal-content ol {
  margin-top: 12px;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--beia-pink);
  font-weight: 700;
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--beia-purple);
}

.legal-dl {
  margin: 24px 0 0;
  padding: 0;
}

.legal-dl > div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-dl > div:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-dl dt {
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-dl dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-dl dd ol {
  margin-top: 10px;
}

.legal-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 1.6;
  color: var(--muted);
}

.legal-table th {
  background: rgba(220, 18, 84, 0.06);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.legal-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: transparent;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px 44px;
  color: var(--muted);
}

.footer-nav__group {
  min-width: 0;
}

.footer-nav__title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}

.footer-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.footer-nav__list a {
  display: inline-block;
  max-width: 16rem;
}

.footer-nav__list a:hover,
.footer-nav__list a:focus-visible {
  color: var(--beia-pink);
}

.footer-credit {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  opacity: 0.75;
  text-align: right;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--beia-pink);
  opacity: 1;
}

/* Contact page */

.contact-hero {
  padding-top: clamp(48px, 8vw, 88px);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}

.contact-hero-inner {
  max-width: 640px;
}

.contact-app-visual {
  margin: 0;
  padding: 8px;
  overflow: hidden;
  align-self: center;
}

.contact-app-visual img {
  width: 100%;
  max-height: min(380px, 42vw);
  height: auto;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-md) - 4px);
}

.contact-hero h1 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-hero .section-text {
  margin-top: 18px;
  max-width: 640px;
}

.contact-hero .hero-actions {
  margin-top: 28px;
}

.contact-hero .microcopy {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.contact-options {
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 28px;
}

.contact-card h2 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.contact-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-form-intro h2 {
  margin-top: 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-form-intro .section-text {
  margin-top: 14px;
}

.contact-form-intro a {
  color: var(--beia-pink);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-form-intro a:hover {
  color: var(--beia-purple);
}

.privacy-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.18);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.contact-form-wrap {
  padding: clamp(24px, 4vw, 32px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field--honeypot,
.beia-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.form-field--checkbox {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--beia-purple);
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-form__disclaimer {
  margin-top: 20px;
}

.form-footnote--status {
  margin-top: 12px;
  color: var(--beia-purple);
  font-weight: 600;
}

.form-footnote--error {
  color: var(--beia-pink);
}

.contact-trust {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}

.contact-trust h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em;
}

.contact-trust > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-trust .check-list {
  margin-top: 24px;
  text-align: left;
  max-width: 520px;
  margin-inline: auto;
}

/* Pricing page */

.pricing-hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.pricing-hero-copy .eyebrow-pill {
  margin-bottom: 22px;
}

.pricing-hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pricing-hero-copy .hero-copy {
  margin-top: 18px;
  max-width: 520px;
}

.pricing-hero-copy .hero-actions {
  margin-top: 28px;
}

.pricing-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-hero-visual {
  width: 100%;
  min-width: 0;
}

.pricing-hero-stage {
  position: relative;
  padding: clamp(28px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(220, 18, 84, 0.1);
  box-shadow: 0 24px 60px rgba(40, 0, 145, 0.1);
}

.pricing-hero-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-stage__glow--pink {
  width: 50%;
  height: 45%;
  top: 0;
  left: -5%;
  background: rgba(220, 18, 84, 0.2);
}

.pricing-hero-stage__glow--purple {
  width: 48%;
  height: 42%;
  bottom: 0;
  right: -5%;
  background: rgba(40, 0, 145, 0.16);
}

.pricing-hero-stage__grid {
  position: absolute;
  inset: 8%;
  border-radius: 32px;
  background-image:
    linear-gradient(rgba(220, 18, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 0, 145, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  z-index: 0;
}

.pricing-hero-stage__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--beia-pink);
  text-align: center;
}

.pricing-hero-stage__title {
  position: relative;
  z-index: 1;
  margin: 6px 0 20px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
}

.pricing-hero-trial {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.08), rgba(40, 0, 145, 0.06));
  border: 1px solid rgba(220, 18, 84, 0.12);
}

.pricing-hero-trial__badge {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--beia-pink);
}

.pricing-hero-trial__meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.pricing-hero-plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-hero-plan {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.pricing-hero-plan--featured {
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 16px 40px rgba(220, 18, 84, 0.28);
}

.pricing-hero-plan__tag {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-hero-plan__label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.pricing-hero-plan--featured .pricing-hero-plan__label {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-hero-plan__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-hero-plan__amount {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pricing-hero-plan__period {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-hero-plan--featured .pricing-hero-plan__period {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-hero-plan__hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}

.pricing-hero-plan--featured .pricing-hero-plan__hint {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-hero-tags {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pricing-hero-tags li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 18, 84, 0.1);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}

.pricing-trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.pricing-trial-copy h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
}

.pricing-trial-copy .section-text {
  margin-top: 16px;
  max-width: 520px;
}

.pricing-trial-copy .btn {
  margin-top: 24px;
}

.pricing-trial-copy__note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-trial-panel {
  padding: clamp(24px, 4vw, 36px);
}

.pricing-trial-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-trial-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.06), rgba(40, 0, 145, 0.05));
  border: 1px solid rgba(220, 18, 84, 0.1);
  text-align: center;
}

.pricing-trial-metric strong {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--beia-pink);
}

.pricing-trial-metric span {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.3;
}

.pricing-trial-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-trial-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-plans-section .section-header {
  margin-bottom: 8px;
}

.pricing-shared-pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pricing-shared-pills .pill {
  background: rgba(220, 18, 84, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.pricing-page-grid {
  margin-top: 32px;
  align-items: stretch;
}

.pricing-plan-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  height: 100%;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-plan-card--monthly {
  border: 1px solid rgba(220, 18, 84, 0.12);
}

.pricing-plan-card--annual {
  box-shadow: 0 28px 70px rgba(220, 18, 84, 0.22);
}

@media (hover: hover) {
  .pricing-plan-card--monthly:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
  }

  .pricing-plan-card--annual:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(220, 18, 84, 0.28);
  }
}

.pricing-plan-card .price {
  margin-top: 8px;
}

.pricing-plan-card__lead {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.price-card.annual .pricing-plan-card__lead {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-plan-card__savings {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-includes {
  margin: 20px 0 0;
  padding: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.price-card.annual .pricing-includes {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
}

.pricing-includes li::before {
  content: "✓";
  color: var(--beia-pink);
  font-weight: 900;
  flex-shrink: 0;
}

.price-card.annual .pricing-includes li {
  color: rgba(255, 255, 255, 0.88);
}

.price-card.annual .pricing-includes li::before {
  color: var(--color-white);
}

.pricing-plan-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.pricing-plans-footnote {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
}

.pricing-license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-license-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-license-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 18, 84, 0.08);
  color: var(--beia-pink);
  font-size: 12px;
  font-weight: 900;
}

.pricing-license-card__badge--purple {
  color: var(--beia-purple);
  background: rgba(40, 0, 145, 0.08);
}

.pricing-license-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.pricing-license-card > p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-license-card .app-shot {
  margin-top: 20px;
}

.pricing-section-cta {
  margin-top: 28px;
  text-align: center;
}


.final-cta__actions {
  justify-content: center;
  flex-wrap: wrap;
}

/* Thanks page */

.thanks-page-inner {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}

.thanks-page-inner h1 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.thanks-page-inner .section-text {
  margin-top: 16px;
}

.thanks-next {
  margin-top: 32px;
  text-align: left;
}

.thanks-next h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.thanks-next .check-list {
  margin-top: 16px;
}

.thanks-note {
  margin-top: 24px;
  text-align: left;
}

.thanks-page-inner .hero-actions {
  margin-top: 28px;
  justify-content: center;
}

.thanks-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
}

.thanks-links a {
  color: var(--beia-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-links a:hover {
  color: var(--beia-pink);
}

/* Distributor page */

.distributor-hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.distributor-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.distributor-hero-copy .eyebrow-pill {
  margin-bottom: 22px;
}

.distributor-hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.distributor-hero-copy .hero-copy {
  margin-top: 18px;
  max-width: 520px;
}

.distributor-hero-copy .hero-actions {
  margin-top: 28px;
}

.distributor-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.distributor-hero-visual {
  width: 100%;
  min-width: 0;
}

.distributor-hero-stage {
  position: relative;
  padding: clamp(28px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(220, 18, 84, 0.1);
  box-shadow: 0 24px 60px rgba(40, 0, 145, 0.1);
}

.distributor-hero-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.distributor-hero-stage__glow--pink {
  width: 50%;
  height: 45%;
  top: 0;
  left: -5%;
  background: rgba(220, 18, 84, 0.2);
}

.distributor-hero-stage__glow--purple {
  width: 48%;
  height: 42%;
  bottom: 0;
  right: -5%;
  background: rgba(40, 0, 145, 0.16);
}

.distributor-hero-stage__grid {
  position: absolute;
  inset: 8%;
  border-radius: 32px;
  background-image:
    linear-gradient(rgba(220, 18, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 0, 145, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  z-index: 0;
}

.distributor-hero-stage__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--beia-pink);
  text-align: center;
}

.distributor-hero-stage__title {
  position: relative;
  z-index: 1;
  margin: 6px 0 24px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
}

.distributor-flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.distributor-flow__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 168px;
  padding: 20px 14px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 18, 84, 0.12);
  box-shadow: 0 14px 36px rgba(40, 0, 145, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.distributor-flow__step--center {
  transform: translateY(-6px);
  border-color: rgba(220, 18, 84, 0.22);
  box-shadow: 0 20px 48px rgba(220, 18, 84, 0.14);
}

.distributor-flow__num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--beia-pink);
  opacity: 0.85;
}

.distributor-flow__step strong {
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.distributor-flow__step > span:last-child {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 600;
}

.distributor-flow__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(220, 18, 84, 0.28);
}

.distributor-flow__link {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: center;
  flex-shrink: 0;
  width: 44px;
  padding: 0 2px;
}

.distributor-flow__line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(220, 18, 84, 0.2), var(--beia-pink), rgba(40, 0, 145, 0.35));
}

.distributor-flow__orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(220, 18, 84, 0.3);
}

.distributor-hero-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.distributor-hero-tags li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--beia-purple);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(40, 0, 145, 0.1);
}

.distributor-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.distributor-demo .result-card__header h3 {
  font-size: 16px;
}

.distributor-section-cta {
  margin-top: 32px;
  text-align: center;
}

.distributor-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.distributor-product-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.distributor-product-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--beia-pink);
  background: rgba(220, 18, 84, 0.1);
}

.distributor-product-card__badge--purple {
  color: var(--beia-purple);
  background: rgba(40, 0, 145, 0.08);
}

.distributor-product-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.distributor-product-card > p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.distributor-product-card .app-shot {
  margin-top: 20px;
}

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

.distributor-opportunity-grid .soft-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.distributor-opportunity-grid .soft-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.distributor-opportunity-grid .soft-card {
  padding: 24px;
}

.distributor-fit-list {
  max-width: 800px;
  margin: 28px auto 0;
}

.distributor-sales-grid .soft-card {
  padding: 28px;
}

.distributor-sales-grid h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.distributor-criteria {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 28px 32px;
}

.gradient-card .distributor-trust-list li {
  color: rgba(255, 255, 255, 0.9);
}

.gradient-card .distributor-trust-list .check {
  color: var(--color-white);
}

.final-cta__note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

/* Join us page */

.joinus-header {
  min-height: 72px;
}

.joinus-nav {
  margin-left: auto;
}

.joinus-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.joinus-back-link:hover,
.joinus-back-link:focus-visible {
  color: var(--beia-pink);
}

.joinus-header + main .joinus-hero {
  padding-top: clamp(28px, 4vw, 48px);
}

.joinus-hero {
  padding-top: clamp(52px, 8vw, 88px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.joinus-hero__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.joinus-hero__inner h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.joinus-hero__inner .section-text {
  max-width: 760px;
  margin-inline: auto;
}

.joinus-hero__microcopy {
  margin-top: 14px;
}

.joinus-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.joinus-plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 34px;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.1);
}

.joinus-plan-card h2 {
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.joinus-plan-card .price {
  margin-top: 12px;
}

.joinus-plan-card__lead {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.joinus-plan-card .pricing-includes {
  margin-top: 22px;
}

.joinus-plan-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.joinus-plan-card--annual {
  box-shadow: 0 30px 78px rgba(220, 18, 84, 0.24);
}

.joinus-note {
  margin-top: 28px;
  padding: 28px;
}

.joinus-note p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.72;
}

.joinus-note p + p {
  margin-top: 14px;
}

.joinus-faq .faq-list {
  max-width: 940px;
}

.joinus-final-cta .final-cta {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

/* How it works page */

.how-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.how-hero-copy h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.how-hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.how-hero-visual:not(.app-shot) {
  padding: clamp(24px, 4vw, 32px);
}

.how-hero-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.how-hero-flow__item {
  flex: 1 1 100px;
  min-width: 96px;
  padding: 18px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.how-hero-flow__item--web {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(220, 18, 84, 0.06));
  border: 1px solid rgba(220, 18, 84, 0.12);
}

.how-hero-flow__item--cloud {
  background: linear-gradient(135deg, rgba(220, 18, 84, 0.12), rgba(40, 0, 145, 0.1));
  border: 1px solid rgba(40, 0, 145, 0.12);
}

.how-hero-flow__item--win {
  background: linear-gradient(180deg, rgba(40, 0, 145, 0.06), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(40, 0, 145, 0.1);
}

.how-hero-flow__item strong {
  font-size: 14px;
  color: var(--ink);
}

.how-hero-flow__item span:last-child {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 600;
}

.how-hero-flow__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
}

.how-hero-flow__arrow {
  align-self: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--beia-pink);
}

.how-process-grid {
  margin-top: 32px;
}

.how-step-card {
  position: relative;
  padding-top: 48px;
}

.how-step-card__num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--beia-pink);
}

.how-step-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.how-step-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.how-modes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.how-mode-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.how-mode-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--beia-pink);
  background: rgba(220, 18, 84, 0.1);
}

.how-mode-card__badge--purple {
  color: var(--beia-purple);
  background: rgba(40, 0, 145, 0.08);
}

.how-mode-card h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.how-mode-card > p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.how-mode-card .check-list {
  margin: 20px 0;
  flex: 1;
}

.how-mode-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.how-requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.how-requirements-grid h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.how-requirements-note,
.how-quality-note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(220, 18, 84, 0.06);
  border: 1px solid rgba(220, 18, 84, 0.1);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}

.how-compatibility-card {
  padding: clamp(28px, 4vw, 40px);
}

.how-compatibility-card .check-list {
  margin: 24px 0;
}

.how-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.how-quality-grid h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.how-privacy-card,
.how-warning-card {
  padding: clamp(28px, 4vw, 40px);
  max-width: 820px;
  margin-inline: auto;
}

.how-privacy-card h2,
.how-warning-card h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 34px);
}

.how-privacy-card > p,
.how-warning-card > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.how-privacy-card .check-list,
.how-warning-card .check-list {
  margin-top: 20px;
}

/* How it works screenshots */

.app-shot {
  margin: 0;
  width: 100%;
}

.app-shot__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.app-shot__caption--below {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: -0.01em;
}

.app-shot__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--beia-pink);
}

.app-shot__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.app-shot__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(220, 18, 84, 0.1);
  box-shadow: 0 20px 50px rgba(40, 0, 145, 0.1);
  aspect-ratio: 16 / 10;
}

.app-shot--hero .app-shot__frame {
  aspect-ratio: 16 / 9;
}

.app-shot--hero .app-shot__media {
  object-fit: contain;
  object-position: center center;
}

.app-shot--web .app-shot__frame,
.app-shot--windows .app-shot__frame {
  aspect-ratio: 16 / 9;
  margin-top: 4px;
}

.app-shot--web .app-shot__media,
.app-shot--windows .app-shot__media {
  object-fit: contain;
  object-position: center center;
}

.app-shot__frame:has(.app-shot__media:not([hidden])) .app-shot__placeholder {
  display: none;
}

#opcion-web-app .app-shot__frame {
  background: #fff;
  padding-inline: clamp(28px, 8%, 80px);
}

#opcion-web-app .app-shot__media {
  object-fit: contain;
  object-position: center center;
}

.app-shot--small .app-shot__frame {
  aspect-ratio: 1 / 1;
  margin-top: 16px;
  box-shadow: 0 12px 32px rgba(40, 0, 145, 0.08);
}

.how-step-card--visual .app-shot__media {
  object-position: center center;
}

.app-shot__media {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.app-shot__media[hidden] {
  display: none;
}

.app-shot__placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #fff9fc 0%, #f8f0ff 42%, #fff5f8 100%);
}

.app-shot__placeholder--windows {
  background: linear-gradient(165deg, #f4f2fa 0%, #ebe6f8 40%, #faf8ff 100%);
}

.app-shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(40, 0, 145, 0.08);
  background: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

.app-shot__bar-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.app-shot__bar--browser .app-shot__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(220, 18, 84, 0.35);
}

.app-shot__bar--browser .app-shot__dot:nth-child(2) {
  background: rgba(40, 0, 145, 0.25);
}

.app-shot__bar--browser .app-shot__dot:nth-child(3) {
  background: rgba(100, 116, 139, 0.3);
}

.app-shot__bar--browser {
  gap: 12px;
}

.app-shot__bar--browser .app-shot__bar-title {
  flex: 1;
  margin-left: 0;
  text-align: center;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.app-shot__bar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.app-shot__bar--windows {
  background: linear-gradient(90deg, #280091, #4a1cb8);
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.app-shot__bar--windows .app-shot__bar-title {
  color: rgba(255, 255, 255, 0.88);
  margin-left: 8px;
  margin-right: auto;
}

.app-shot__win-btn {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.app-shot__win-btn--close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.55);
}

.app-shot__body {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 12px;
  min-height: 0;
}

.app-shot__body--split {
  flex-direction: row;
}

.app-shot__body--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-shot__body--upload {
  flex-direction: column;
}

.app-shot__sidebar {
  width: 22%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(220, 18, 84, 0.12), rgba(40, 0, 145, 0.08));
  flex-shrink: 0;
}

.app-shot__sidebar--dark {
  background: linear-gradient(180deg, rgba(40, 0, 145, 0.2), rgba(40, 0, 145, 0.08));
}

.app-shot__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.app-shot__panel {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 18, 84, 0.06));
  border: 1px solid rgba(220, 18, 84, 0.08);
}

.app-shot__panel--hero-image {
  flex: 1;
  min-height: 48px;
  background:
    radial-gradient(circle at 35% 40%, rgba(220, 18, 84, 0.14), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(40, 0, 145, 0.12), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 255, 0.9));
}

.app-shot__panel--dropzone {
  flex: 1;
  min-height: 72px;
  border-style: dashed;
  border-width: 2px;
  border-color: rgba(220, 18, 84, 0.22);
  background: rgba(255, 255, 255, 0.6);
}

.app-shot__panel--toolbar {
  height: 28px;
  flex-shrink: 0;
}

.app-shot__panel--action {
  width: 70%;
  height: 28px;
}

.app-shot__panel-row {
  display: flex;
  gap: 10px;
}

.app-shot__panel--sm {
  flex: 1;
  height: 36px;
}

.app-shot__placeholder-badge {
  position: absolute;
  left: 12px;
  bottom: 36px;
  z-index: 2;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--beia-purple);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(40, 0, 145, 0.1);
}

.app-shot__placeholder-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.app-shot--small .app-shot__placeholder-hint {
  display: none;
}

.app-shot--small .app-shot__placeholder-badge {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.how-hero-visual {
  width: 100%;
  min-width: 0;
}

.how-hero-visual .app-shot--hero {
  margin: 0;
  width: 100%;
}

.app-shot--hero .app-shot__placeholder-badge,
.app-shot--hero .app-shot__placeholder-hint {
  display: none;
}

.how-mode-card .app-shot {
  margin: 16px 0 8px;
}

.how-step-card--visual {
  display: flex;
  flex-direction: column;
}

.how-step-card--visual .app-shot--small {
  margin-top: auto;
  margin-bottom: 0;
}

.app-shot__body--delivery {
  flex-direction: column;
  gap: 10px;
}

.app-shot__body--delivery .app-shot__panel--hero-image {
  min-height: 56px;
}

/* Results page */

.text-gradient {
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.results-hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.results-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.results-hero-copy .eyebrow-pill {
  margin-bottom: 22px;
}

.results-hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.results-hero-copy .hero-copy {
  margin-top: 18px;
  max-width: 520px;
}

.results-hero-copy .hero-actions {
  margin-top: 28px;
}

.results-note {
  margin-top: 16px;
}

.results-hero-visual {
  position: relative;
  min-height: clamp(420px, 38vw, 520px);
}

.results-hero-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: clamp(420px, 38vw, 500px);
  margin-inline: auto;
}

.results-hero-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.results-hero-stage__glow--pink {
  width: 55%;
  height: 50%;
  top: 18%;
  left: 0;
  background: rgba(220, 18, 84, 0.22);
  animation: results-glow-drift 8s ease-in-out infinite alternate;
}

.results-hero-stage__glow--purple {
  width: 50%;
  height: 48%;
  bottom: 8%;
  right: -4%;
  background: rgba(40, 0, 145, 0.18);
  animation: results-glow-drift 8s ease-in-out infinite alternate-reverse;
}

.results-hero-stage__grid {
  position: absolute;
  inset: 12% 4% 18%;
  border-radius: 40px;
  background-image:
    linear-gradient(rgba(220, 18, 84, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 0, 145, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  z-index: 0;
}

@keyframes results-glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(12px, -10px) scale(1.06);
  }
}

.results-hero-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 18, 84, 0.12);
  box-shadow: 0 12px 32px rgba(40, 0, 145, 0.1);
  backdrop-filter: blur(8px);
}

.results-hero-chip--before {
  top: 6%;
  left: 4%;
  color: var(--beia-purple);
}

.results-hero-chip--after {
  top: 10%;
  right: 2%;
  color: var(--beia-pink);
}

.results-hero-stage .results-hero-card {
  position: absolute;
  margin: 0;
  z-index: 2;
}

.results-hero-card .image-wrap {
  position: relative;
  aspect-ratio: 420 / 536;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.results-hero-card .result-card__placeholder .fallback {
  z-index: 0;
}

.results-hero-card--ultrasound {
  left: 0;
  top: 14%;
  width: 44%;
  transform: rotate(-7deg);
  z-index: 2;
}

.results-hero-card--beia {
  left: 38%;
  top: 4%;
  width: 52%;
  transform: rotate(3deg);
  z-index: 3;
  animation: results-card-float 6s ease-in-out infinite;
}

@keyframes results-card-float {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-8px);
  }
}

.results-hero-connector {
  position: absolute;
  left: 36%;
  top: 46%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
}

.results-hero-connector__line {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--beia-pink), var(--beia-purple));
}

.results-hero-connector__orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beia-pink), var(--beia-purple));
  color: var(--color-white);
  box-shadow: 0 12px 36px rgba(220, 18, 84, 0.35);
  animation: results-orb-pulse 2.4s ease-in-out infinite;
}

@keyframes results-orb-pulse {
  0%,
  100% {
    box-shadow: 0 12px 36px rgba(220, 18, 84, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 16px 44px rgba(40, 0, 145, 0.4);
    transform: scale(1.06);
  }
}

.results-hero-connector__icon {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
}

.results-hero-connector__text {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.results-hero-preview {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.results-hero-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(40, 0, 145, 0.14);
}

.results-hero-preview__label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.results-hero-preview__thumbs {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.results-hero-preview__thumb {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--color-white);
  box-shadow: 0 6px 16px rgba(40, 0, 145, 0.12);
  overflow: hidden;
  background: var(--soft);
}

.results-hero-preview__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.results-hero-preview__thumb--ultrasound {
  transform: rotate(-6deg);
}

.results-hero-preview__thumb--ultrasound img {
  object-position: center 40%;
}

.results-hero-preview__thumb--beia {
  transform: translateY(-4px) scale(1.08);
  z-index: 1;
}

.results-hero-preview__thumb--beia img {
  object-position: center 42%;
}

.results-hero-preview__thumb--mix {
  transform: rotate(5deg);
}

.results-hero-preview__cta {
  font-size: 13px;
  font-weight: 800;
  color: var(--beia-pink);
  white-space: nowrap;
}

.results-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  max-width: 720px;
  margin-inline: auto;
}

.results-intro-grid .soft-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.results-intro-grid .soft-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.result-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.result-card__header {
  padding: 20px 20px 0;
}

.result-card__header h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.result-card__visual {
  display: grid;
  gap: 10px;
  padding: 16px 20px;
}

.result-card--double .result-card__visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card__image {
  margin: 0;
  min-width: 0;
}

.result-card__image .image-wrap {
  position: relative;
  aspect-ratio: 420 / 536;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--soft);
}

.result-card__placeholder .fallback {
  z-index: 0;
}

.result-card__image .image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.result-card__image--beia .image-wrap img {
  object-position: center 42%;
}

.image-wrap.beia .fallback {
  background: radial-gradient(circle at 50% 36%, #ffe3d7 0%, #f0b8a4 38%, #d9897d 66%, #160b0d 100%);
}

.result-card__label {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  color: var(--beia-purple);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.result-lightbox-gallery .result-card__image--zoomable {
  cursor: zoom-in;
}

.result-lightbox-gallery .result-card__image--zoomable:hover .image-wrap img {
  transform: scale(1.03);
}

.result-lightbox-gallery .result-card__image--zoomable .image-wrap img {
  transition: transform 0.28s ease;
}

.result-lightbox-gallery .result-card__image--zoomable:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

.result-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.result-lightbox[hidden] {
  display: none !important;
}

.result-lightbox.is-open {
  animation: result-lightbox-fade 0.24s ease;
}

@keyframes result-lightbox-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.result-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(9, 11, 31, 0.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.result-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(94vh, 960px);
  padding: 22px 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 32px 90px rgba(9, 11, 31, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: auto;
  animation: result-lightbox-rise 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes result-lightbox-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

.result-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 11, 31, 0.06);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.result-lightbox__close:hover {
  background: rgba(220, 18, 84, 0.1);
  color: var(--beia-pink);
}

.result-lightbox__close:focus-visible {
  outline: 2px solid var(--beia-pink);
  outline-offset: 2px;
}

.result-lightbox__title {
  margin: 0 44px 18px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.result-lightbox__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.result-lightbox__figure {
  margin: 0;
  min-width: 0;
}

.result-lightbox__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--soft);
  box-shadow: inset 0 0 0 1px rgba(40, 0, 145, 0.08);
}

.result-lightbox__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #0f0a0c;
}

.result-lightbox__frame--ultrasound img {
  object-position: center 40%;
}

.result-lightbox__frame--beia img {
  object-position: center 42%;
  background: radial-gradient(circle at 50% 36%, #ffe3d7 0%, #f0b8a4 38%, #d9897d 66%, #160b0d 100%);
}

.result-lightbox__caption {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--beia-purple);
}

body.result-lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .result-lightbox {
    padding: 16px;
  }

  .result-lightbox__dialog {
    padding: 18px 16px 20px;
  }

  .result-lightbox__grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 440px);
    margin-inline: auto;
  }
}

.results-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.results-quality-grid h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.check-list--muted .check {
  color: var(--muted);
  font-weight: 700;
}

.check-list--muted li {
  color: var(--muted);
}

/* ==========================================================================
   Responsive refinements
   ========================================================================== */

@media (max-width: 1180px) {
  :root {
    --container-gutter: 32px;
  }

  .nav {
    gap: 20px;
    font-size: 13px;
  }

  .header-actions .btn {
    padding-inline: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
  }

  .hero-composition,
  .hero-carousel__composition {
    max-width: 560px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    min-height: 0;
    padding: 12px 0;
  }

  .logo {
    flex-shrink: 0;
  }

  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav {
    display: flex;
    flex: 1 1 100%;
    order: 3;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 13px;
  }

  .hero-grid,
  .grid-3,
  .split-grid,
  .quality-grid,
  .distributor-grid,
  .price-grid,
  .pricing-page-grid,
  .pricing-license-grid,
  .contact-form-grid,
  .distributor-hero-grid,
  .pricing-hero-grid,
  .pricing-trial-grid,
  .distributor-demo-grid,
  .distributor-product-grid,
  .results-hero-grid,
  .how-hero-grid,
  .how-modes-grid,
  .how-requirements-grid,
  .how-quality-grid,
  .distributor-opportunity-grid,
  .results-quality-grid {
    grid-template-columns: 1fr;
  }

  .joinus-plans-grid {
    grid-template-columns: 1fr;
  }

  .joinus-plan-card .btn {
    width: 100%;
    align-self: stretch;
  }

  .results-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .distributor-hero-stage {
    padding: 24px 20px;
  }

  .distributor-flow {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .distributor-flow__link {
    flex-direction: column;
    width: auto;
    height: 36px;
    padding: 4px 0;
  }

  .distributor-flow__line {
    width: 2px;
    height: 12px;
    flex: none;
    background: linear-gradient(180deg, rgba(220, 18, 84, 0.2), var(--beia-pink), rgba(40, 0, 145, 0.35));
  }

  .distributor-flow__step,
  .distributor-flow__step--center {
    max-width: 300px;
    width: 100%;
    transform: none;
  }

  .pricing-plan-card .btn {
    width: 100%;
    align-self: stretch;
  }

  .contact-card .btn {
    width: 100%;
    align-self: stretch;
  }

  .hero-visual {
    min-height: 480px;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }

  .hero-composition,
  .hero-carousel__composition {
    margin-inline: auto;
    margin-top: 0;
    transform: none;
    max-width: 520px;
  }

  .hero-carousel__frame {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
  }

  .hero-carousel__button:hover {
    transform: translateY(calc(-50% - 1px));
  }

  .hero-carousel__button--prev {
    left: 4px;
  }

  .hero-carousel__button--next {
    right: 4px;
  }

  .hero-carousel__composition {
    width: 100%;
  }

  .hero-composition,
  .hero-carousel__composition {
    min-height: clamp(400px, 62vw, 480px);
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-actions {
    display: none;
  }

  .site-header.nav-open .header-actions {
    display: flex;
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .site-header.nav-open .header-actions .btn {
    display: none;
  }

  .site-header .nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 6px;
    margin-top: 6px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .site-header .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--ink);
  }

  .site-header .nav a:last-child {
    border-bottom: 0;
  }

  .site-header .nav .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 12px;
    border-bottom: 0;
    padding: 0;
    color: var(--color-white);
  }

  .hero {
    padding: 52px 0 64px;
  }

  .section-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-copy {
    font-size: 17px;
  }

  .grid-3 {
    margin-top: 36px;
    gap: 20px;
  }

  .amount {
    font-size: clamp(40px, 11vw, 56px);
  }

  .pricing-page-grid {
    gap: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  :root {
    --container-gutter: 24px;
  }

  .section-pad {
    padding: 52px 0;
  }

  .hero {
    padding: 40px 0 52px;
  }

  .header-inner {
    gap: 12px;
  }

  .joinus-nav {
    margin-left: 0;
  }

  .site-header .nav {
    overflow: visible;
    mask-image: none;
  }

  .nav a {
    flex-shrink: 0;
  }

  .header-actions .btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .lang-switch__btn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 11px;
  }

  .hero-actions,
  .final-cta__actions,
  .contact-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-cta__actions .btn,
  .contact-hero .hero-actions .btn,
  .pricing-plan-card .btn,
  .contact-card .btn,
  .how-mode-card .btn,
  .pricing-trial-copy .btn,
  .thanks-page-inner .hero-actions .btn {
    width: 100%;
  }

  .pricing-inner {
    padding: 32px 24px;
  }

  .joinus-plan-card {
    padding: 26px 22px;
  }

  .joinus-note {
    padding: 22px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-links {
    gap: 14px 20px;
    font-size: 14px;
  }

  .footer-nav {
    justify-content: flex-start;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

  .footer-nav__group:first-child {
    grid-column: 1 / -1;
  }

  .footer-nav__list a {
    max-width: 100%;
  }

  .footer-credit {
    margin-top: 12px;
    text-align: left;
    max-width: 100%;
  }

  .results-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .how-hero-flow__arrow {
    display: none;
  }

  .how-hero-flow {
    flex-direction: column;
  }

  .how-mode-card .btn {
    width: 100%;
    align-self: stretch;
  }

  .app-shot__body--split {
    flex-direction: column;
  }

  .app-shot__sidebar {
    width: 100%;
    height: 28px;
  }

  .app-shot__placeholder-hint {
    font-size: 10px;
  }

  .results-hero-visual {
    min-height: auto;
  }

  .results-hero-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    max-width: 360px;
    padding-bottom: 8px;
  }

  .results-hero-stage__grid {
    inset: 0 0 20%;
  }

  .results-hero-stage .results-hero-card {
    position: relative;
    left: auto;
    top: auto;
    animation: none;
  }

  .results-hero-card--ultrasound {
    width: 82%;
    margin-inline: auto;
    transform: rotate(-4deg);
    z-index: 1;
  }

  .results-hero-card--beia {
    width: 92%;
    margin-top: -28px;
    margin-inline: auto;
    transform: rotate(2deg);
    z-index: 2;
  }

  .results-hero-connector {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -6px 0 4px;
  }

  .results-hero-chip--before {
    top: 0;
    left: 0;
  }

  .results-hero-chip--after {
    top: auto;
    right: 0;
    bottom: auto;
    margin-top: -120px;
  }

  .results-hero-preview {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .results-hero-preview__label,
  .results-hero-preview__cta {
    width: 100%;
    text-align: center;
  }

  .results-hero-preview__thumbs {
    order: 0;
    width: 100%;
    justify-content: center;
  }

  .result-card--double .result-card__visual {
    grid-template-columns: 1fr;
  }

  .pricing-trial-metrics {
    grid-template-columns: 1fr;
  }

  .pricing-trial-features {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    padding-top: 8px;
  }

  .hero-composition,
  .hero-carousel__composition {
    min-height: 380px;
    max-width: min(100%, 320px);
  }

  .card-ultrasound {
    top: 96px;
    width: 40%;
  }

  .card-beia {
    top: 32px;
    width: 47%;
  }

  .card-born {
    top: 108px;
    width: 40%;
  }

  .hero-carousel__button {
    width: 48px;
    height: 48px;
  }

  .hero-carousel__button--prev {
    left: 0;
  }

  .hero-carousel__button--next {
    right: 0;
  }

  .hero-carousel__dots {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-carousel__dot {
    width: 10px;
    height: 10px;
  }

  .hero-carousel__dot.is-active {
    width: 22px;
  }

  .comparison-slider__tag {
    font-size: 11px;
    padding: 6px 10px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .blob-pink {
    width: 280px;
    height: 280px;
  }

  .blob-purple {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 390px) {
  :root {
    --container-gutter: 20px;
  }

  .eyebrow-pill {
    font-size: 13px;
    padding: 8px 14px;
  }

  .nav {
    font-size: 12px;
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding-inline: 12px;
    font-size: 13px;
  }

  .price-card {
    padding: 24px 20px;
  }

  .pricing-badge {
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 6px 10px;
  }

  .legal-table-wrap {
    margin-inline: calc(-1 * var(--container-gutter));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .microcopy {
    font-size: 13px;
  }
}

/* Legacy alias: keep tablet rules grouped with 560px block above */
@media (max-width: 680px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-app-visual {
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-app-visual img {
    max-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-hero-stage__glow--pink,
  .results-hero-stage__glow--purple,
  .results-hero-card--beia,
  .results-hero-connector__orb {
    animation: none;
  }
}

/* Floating help widget */
.help-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
}

.help-widget__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.help-widget__toggle:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.32);
  outline-offset: 2px;
}

.help-widget__toggle:hover,
.help-widget__toggle:focus-visible {
  background: linear-gradient(135deg, #1fb356, #15803d);
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.34);
  transform: translateY(-1px);
}

.help-widget__toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.help-widget__toggle-icon svg {
  width: 100%;
  height: 100%;
}

.help-widget__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(392px, calc(100vw - 32px));
  max-height: none;
  overflow: visible;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 26px 60px rgba(20, 10, 40, 0.16);
  padding: 24px;
}

.help-widget__panel[hidden] {
  display: none;
}

.help-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.help-widget__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.help-widget__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.help-widget__body {
  display: grid;
  gap: 12px;
}

.help-widget__close {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1.1;
  color: var(--beia-purple);
  cursor: pointer;
  padding: 0;
}

.help-widget__close:focus-visible {
  outline: 2px solid rgba(220, 18, 84, 0.28);
  outline-offset: 2px;
}

.help-widget__microcopy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(220, 18, 84, 0.06);
  border: 1px solid rgba(220, 18, 84, 0.12);
}

.help-widget__form {
  display: grid;
  gap: 12px;
}

.help-widget__form.is-submitted {
  display: none !important;
}

.help-widget__field {
  display: grid;
  gap: 6px;
}

.help-widget__field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.help-widget__field input,
.help-widget__field textarea {
  width: 100%;
  border: 1px solid rgba(40, 0, 145, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #f8fbff;
}

.help-widget__field textarea {
  min-height: 116px;
  resize: vertical;
}

.help-widget__field input:focus-visible,
.help-widget__field textarea:focus-visible {
  outline: 2px solid rgba(220, 18, 84, 0.22);
  border-color: rgba(220, 18, 84, 0.34);
  background: #fff;
}

.help-widget__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 2px;
}

.help-widget__actions .btn {
  min-height: 46px;
  width: 100%;
}

.help-widget__whatsapp {
  border-color: rgba(22, 163, 74, 0.3);
  color: #15803d;
  background: rgba(34, 197, 94, 0.08);
}

.help-widget__whatsapp:hover,
.help-widget__whatsapp:focus-visible {
  border-color: rgba(22, 163, 74, 0.45);
  background: rgba(34, 197, 94, 0.14);
}

.help-widget__privacy {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.help-widget__privacy a {
  color: var(--beia-purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-widget__status {
  margin: 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.help-widget__status.is-error {
  color: #b91c1c;
}

.help-widget__status.is-success {
  color: #166534;
}

.help-widget__success {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.help-widget__success[hidden] {
  display: none !important;
}

.help-widget__success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.help-widget__success-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.help-widget__actions--success {
  margin-top: 6px;
  grid-template-columns: 1fr 1fr;
}

.help-widget.is-success .help-widget__header {
  margin-bottom: 12px;
}

.help-widget.is-success .help-widget__title,
.help-widget.is-success .help-widget__subtitle,
.help-widget.is-success .help-widget__microcopy {
  display: none;
}

.help-widget.is-open .help-widget__toggle {
  transform: translateY(-1px);
}

.help-widget__hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .hero,
  .hero-visual,
  .hero-carousel__frame,
  .ec8k-hero-visual,
  .ec8k-hero-grid {
    overflow-x: clip;
  }

  .hero-composition,
  .hero-carousel__composition {
    max-width: min(520px, 100%);
  }

  .card-ultrasound,
  .card-born {
    width: 38%;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .help-widget {
    right: 16px;
    bottom: 16px;
  }

  .help-widget__panel {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 68px;
    max-height: none;
    padding: 16px;
  }

  .help-widget__actions {
    grid-template-columns: 1fr;
  }

  .help-widget__actions--success {
    grid-template-columns: 1fr;
  }
}

/* Banner de consentimiento de cookies analíticas */
.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 10050;
  padding: 16px;
  pointer-events: none;
}

.cookie-consent__panel {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--color-surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ==========================================================================
   Ecografía 8K landing
   ========================================================================== */

.ec8k-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.ec8k-hero-copy .eyebrow-pill {
  margin-bottom: 22px;
}

.ec8k-hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ec8k-hero-copy .hero-lead {
  margin-top: 14px;
  max-width: 560px;
}

.ec8k-hero-copy .hero-copy {
  margin-top: 18px;
  max-width: 560px;
}

.ec8k-hero-note {
  margin-top: 14px;
  max-width: 560px;
}

.ec8k-hero-copy .hero-actions {
  margin-top: 28px;
}

.ec8k-hero-visual {
  position: relative;
  min-height: clamp(420px, 38vw, 520px);
}

.narrow-content {
  max-width: 760px;
  margin-inline: auto;
}

.term-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}

.term-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}

.term-table th,
.term-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.term-table thead th {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.04);
}

.term-table tbody th[scope="row"] {
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.term-table tbody tr:last-child th,
.term-table tbody tr:last-child td {
  border-bottom: none;
}

.ec8k-results-preview {
  max-width: 980px;
  margin-inline: auto;
}

.ec8k-steps-grid .how-step-card p {
  margin-top: 12px;
}

.ec8k-steps-grid .how-step-card:last-child:nth-child(4) {
  grid-column: 2;
}

@media (max-width: 1180px) {
  .ec8k-steps-grid .how-step-card:last-child:nth-child(4) {
    grid-column: auto;
  }
}

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

  .ec8k-hero-visual {
    order: -1;
    min-height: 360px;
  }
}

.cookie-consent__text {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text, #1a1a1a);
}

.cookie-consent__link {
  color: var(--color-primary, #5b4fd6);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent[hidden] {
  display: none !important;
}

html.cookie-consent-open .help-widget {
  bottom: calc(16px + 120px);
}

@media (max-width: 768px) {
  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }

  html.cookie-consent-open .help-widget {
    bottom: calc(16px + 160px);
  }
}
