:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-strong: #eff5fb;
  --surface-accent: #edf9f6;
  --line: rgba(10, 31, 60, 0.1);
  --line-strong: rgba(10, 31, 60, 0.16);
  --text: #0a1f3c;
  --muted: #526981;
  --teal: #0098b4;
  --teal-strong: #00768c;
  --blue: #1f6fe5;
  --mint: #20b486;
  --psyke: #1f6fe5;
  --vita: #0b9d7a;
  --incluya: #35b7f2;
  --incluya-soft: #67dfbd;
  --axyscare: #0f8f9e;
  --axyscare-soft: #58bbc5;
  --shadow: 0 18px 48px rgba(12, 35, 64, 0.08);
  --shadow-soft: 0 10px 30px rgba(12, 35, 64, 0.05);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1160px;
  --font-head: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 229, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(32, 180, 134, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar {
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu > a {
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu > a:hover,
.nav-menu > a[aria-current="page"] {
  color: var(--text);
  background: rgba(10, 31, 60, 0.05);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 24px rgba(14, 108, 184, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(14, 108, 184, 0.35), 0 0 30px rgba(0, 152, 180, 0.25);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-vita {
  background: linear-gradient(135deg, var(--vita), #17b18b);
  box-shadow: 0 12px 24px rgba(11, 157, 122, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-vita:hover {
  box-shadow: 0 20px 40px rgba(11, 157, 122, 0.35), 0 0 30px rgba(11, 157, 122, 0.25);
}

.btn-incluya {
  background: linear-gradient(135deg, var(--incluya), var(--incluya-soft));
  box-shadow: 0 12px 24px rgba(53, 183, 242, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-incluya:hover {
  box-shadow: 0 20px 40px rgba(53, 183, 242, 0.35), 0 0 30px rgba(53, 183, 242, 0.25);
}

.btn-axyscare {
  background: linear-gradient(135deg, var(--axyscare), var(--axyscare-soft));
  box-shadow: 0 12px 24px rgba(15, 143, 158, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-axyscare:hover {
  box-shadow: 0 20px 40px rgba(15, 143, 158, 0.35), 0 0 30px rgba(15, 143, 158, 0.25);
}

.nav-cta {
  margin-left: 0.25rem;
}

.page-hero,
.section-block,
.cta-band,
.final-cta {
  padding: 4.5rem 0;
  position: relative;
}

.section-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 31, 60, 0.08), transparent);
}

.page-hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.audience-card,
.info-card,
.trust-card,
.result-card,
.fit-panel,
.showcase-card,
.product-shot,
.final-cta-box,
.cta-band-inner {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  padding: clamp(1.75rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
}

.hero-home .hero-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.92));
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

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

.hero-home h1 {
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-lead {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-home .button-row {
  justify-content: center;
}

.hero-text-link {
  margin-top: 1rem;
}

.product-hero .hero-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.92));
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-form-panel {
  gap: 1.1rem;
}

.eyebrow,
.section-kicker,
.audience-tag,
.mini-flow-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.mini-flow-label {
  background: rgba(0, 152, 180, 0.09);
  color: var(--teal-strong);
}

.audience-tag {
  background: rgba(10, 31, 60, 0.08);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 0.3rem;
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 0.3rem;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.audience-card p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
}

.audience-card p strong {
  color: var(--text);
  font-weight: 700;
}

.problem-text {
  padding: 0.9rem 1rem;
  border-left: 4px solid #e74c3c;
  background: rgba(231, 76, 60, 0.05);
  border-radius: 8px;
  color: #8b3a3a;
  margin: 0 !important;
}

.problem-text strong {
  color: #d63031;
}

.solution-text {
  padding: 0.9rem 1rem;
  border-left: 4px solid #27ae60;
  background: rgba(39, 174, 96, 0.05);
  border-radius: 8px;
  color: #1e5631;
  margin: 0 !important;
}

.solution-text strong {
  color: #229954;
}

.result-text {
  padding: 0.9rem 1rem;
  border-left: 4px solid #3498db;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 8px;
  color: #1a4d7a;
  margin: 0 !important;
}

.result-text strong {
  color: #2980b9;
}

.hero-lead,
.section-intro p,
.cta-band-inner p,
.final-cta-box p {
  font-size: 1.06rem;
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 62ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.mini-flow {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.mini-flow p {
  margin-top: 0.65rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.card-grid,
.audience-grid,
.audience-grid-home,
.result-grid,
.showcase-grid,
.showcase-grid-home,
.trust-grid,
.split-fit-grid,
.product-showcase-grid {
  display: grid;
  gap: 1.25rem;
}

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

.audience-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

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

.showcase-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.showcase-grid-compact .showcase-card {
  gap: 1.1rem;
}

.showcase-grid-compact .showcase-media img {
  aspect-ratio: 16 / 10;
}

.showcase-grid-compact .showcase-copy p {
  max-width: 36ch;
}

.showcase-rotator {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(10, 31, 60, 0.03), rgba(10, 31, 60, 0.06));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-showcase-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.audience-card,
.info-card,
.trust-card,
.result-card,
.fit-panel,
.showcase-card,
.product-shot {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.audience-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(12, 35, 64, 0.12);
}

.showcase-card,
.fit-panel {
  display: grid;
  gap: 1rem;
}

.card-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.showcase-card {
  overflow: hidden;
}

.showcase-copy,
.product-shot figcaption {
  display: grid;
  gap: 0.65rem;
}

.showcase-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  position: relative;
}

.is-lightbox-trigger {
  cursor: zoom-in;
}

.showcase-media img,
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card-mobile .showcase-copy p {
  max-width: 32ch;
}

.showcase-grid-home .showcase-card {
  align-content: start;
}

.showcase-card-mobile {
  align-content: start;
  width: 100%;
  justify-self: center;
}

.showcase-media-incluya-horizontal {
  min-height: 180px;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(53, 183, 242, 0.08), rgba(103, 223, 189, 0.08));
}

.showcase-media-axyscare {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 143, 158, 0.12), rgba(88, 187, 197, 0.18));
  border: 1px solid rgba(15, 143, 158, 0.15);
}

.showcase-logo {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 143, 158, 0.15));
}

.showcase-media-incluya-horizontal .rotator-image-phone {
  inset: 0.8rem;
  width: min(100%, 180px);
  height: calc(100% - 1.6rem);
  margin: auto;
  border-radius: 20px;
  object-fit: contain;
  object-position: center center;
  background: #edf4fb;
  box-shadow: 0 14px 28px rgba(12, 35, 64, 0.12);
}

.rotator-image {
  position: absolute;
  inset: 0.85rem;
  opacity: 0;
  object-fit: contain;
  transition: opacity 0.45s ease;
}

.rotator-image.is-active {
  opacity: 1;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 30, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 960px);
  margin: min(6vh, 3rem) auto;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(5, 20, 40, 0.28);
}

.lightbox-close {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 31, 60, 0.08);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-image {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(236, 245, 255, 0.82), rgba(243, 251, 248, 0.68));
}

.lightbox-caption {
  color: var(--muted);
  font-weight: 600;
}

.audience-card-psyke {
  background: linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(236, 244, 255, 0.92));
  border-color: rgba(31, 111, 229, 0.12);
  border-left: 5px solid #1f6fe5;
  position: relative;
}

.audience-card-psyke:hover {
  border-left-color: #1f6fe5;
  box-shadow: 0 24px 56px rgba(12, 35, 64, 0.12), 0 0 40px rgba(31, 111, 229, 0.15);
}

.audience-card-vita {
  background: linear-gradient(135deg, rgba(245, 255, 251, 0.98), rgba(235, 250, 244, 0.92));
  border-color: rgba(11, 157, 122, 0.12);
  border-left: 5px solid #0b9d7a;
  position: relative;
}

.audience-card-vita:hover {
  border-left-color: #0b9d7a;
  box-shadow: 0 24px 56px rgba(12, 35, 64, 0.12), 0 0 40px rgba(11, 157, 122, 0.15);
}

.audience-card-incluya {
  background: linear-gradient(135deg, rgba(244, 252, 255, 0.98), rgba(233, 247, 255, 0.92));
  border-color: rgba(53, 183, 242, 0.12);
  border-left: 5px solid #35b7f2;
  position: relative;
}

.audience-card-incluya:hover {
  border-left-color: #35b7f2;
  box-shadow: 0 24px 56px rgba(12, 35, 64, 0.12), 0 0 40px rgba(53, 183, 242, 0.15);
}

.audience-card-axyscare {
  background: linear-gradient(135deg, rgba(240, 251, 252, 0.98), rgba(228, 245, 247, 0.92));
  border-color: rgba(15, 143, 158, 0.12);
  border-left: 5px solid #0f8f9e;
  position: relative;
}

.audience-card-axyscare:hover {
  border-left-color: #0f8f9e;
  box-shadow: 0 24px 56px rgba(12, 35, 64, 0.12), 0 0 40px rgba(15, 143, 158, 0.15);
}

.product-lockup {
  width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}

.product-lockup-wide {
  width: min(100%, 220px);
}

.product-brand,
.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.product-brand {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.product-mark,
.hero-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.hero-mark {
  width: 82px;
  height: 82px;
}

.hero-brand-copy {
  display: grid;
  gap: 0.18rem;
}

.hero-brand-copy strong {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-brand-copy span {
  color: var(--muted);
  font-weight: 600;
}

.info-card,
.result-card,
.trust-card,
.fit-panel,
.product-shot,
.showcase-card {
  background: rgba(255, 255, 255, 0.92);
}

.info-card p,
.result-card p,
.audience-card p,
.trust-card p,
.fit-panel p,
.showcase-card p {
  margin-top: 0.7rem;
}

.trust-card h3,
.fit-panel h2 {
  max-width: 22ch;
}

.fit-panel-muted {
  background: linear-gradient(180deg, rgba(246, 248, 251, 0.98), rgba(238, 242, 247, 0.94));
}

.product-shot {
  overflow: hidden;
}

.product-shot-large {
  grid-row: span 2;
}

.product-shot img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.product-shot-mobile img {
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  object-position: center center;
  padding: 0.7rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(53, 183, 242, 0.06), rgba(103, 223, 189, 0.08));
  box-shadow: inset 0 0 0 1px rgba(10, 31, 60, 0.08), var(--shadow-soft);
}

.product-showcase-grid-mobile {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.product-showcase-grid-mobile .product-shot-large {
  grid-row: auto;
}

.product-shot-mobile {
  max-width: 260px;
  width: 100%;
  justify-self: center;
}

.product-shot-mobile img {
  width: min(100%, 210px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.product-shot-mobile figcaption {
  max-width: 26ch;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(236, 245, 255, 0.64), rgba(243, 251, 248, 0.4));
  border-top: 1px solid rgba(10, 31, 60, 0.04);
  border-bottom: 1px solid rgba(10, 31, 60, 0.04);
}

.cta-band-inner,
.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.cta-band-inner {
  background: linear-gradient(135deg, rgba(10, 31, 60, 0.98), rgba(18, 76, 138, 0.95));
}

.cta-band-inner h2,
.cta-band-inner p,
.cta-band-inner .section-kicker {
  color: #ffffff;
}

.cta-band-inner .section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section-closing {
  padding-top: 1rem;
}

.closing-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 247, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.closing-copy {
  max-width: 760px;
}

.closing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.closing-link {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 152, 180, 0.1), rgba(31, 111, 229, 0.12));
  border: 1px solid rgba(10, 31, 60, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.closing-link strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.closing-link span {
  color: var(--muted);
  font-weight: 600;
}

.closing-link em {
  margin-top: 0.25rem;
  font-style: normal;
  font-weight: 800;
  color: var(--text);
}

.closing-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.closing-link-vita {
  background: linear-gradient(135deg, rgba(11, 157, 122, 0.12), rgba(32, 180, 134, 0.14));
}

.closing-link-incluya {
  background: linear-gradient(135deg, rgba(53, 183, 242, 0.12), rgba(103, 223, 189, 0.14));
}

.closing-link-axyscare {
  background: linear-gradient(135deg, rgba(15, 143, 158, 0.12), rgba(88, 187, 197, 0.16));
}

@media (min-width: 1180px) {
  .audience-grid-home,
  .showcase-grid-home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.closing-story {
  cursor: default;
}

.closing-story:hover {
  transform: none;
  box-shadow: none;
}

.final-cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.9));
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.hero-logo {
  width: 156px;
  height: auto;
}

.panel-lead {
  color: var(--text);
  font-weight: 600;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(31, 111, 229, 0.18);
  border-color: rgba(31, 111, 229, 0.35);
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--teal-strong);
}

.form-feedback.is-error {
  color: #b24a4a;
}

.form-feedback.is-success {
  color: #0a7f60;
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.decision-list {
  display: grid;
  gap: 0.85rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.decision-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.text-link {
  width: fit-content;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(10, 31, 60, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: rgba(31, 111, 229, 0.4);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 700;
}

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

.faq-item p {
  margin-top: 0.8rem;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 118px;
}

.site-body.theme-incluya {
  background:
    radial-gradient(circle at top left, rgba(53, 183, 242, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(103, 223, 189, 0.1), transparent 32%),
    var(--bg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .audience-grid,
  .audience-grid-home,
  .showcase-grid,
  .showcase-grid-home,
  .three-up,
  .four-up,
  .trust-grid,
  .result-grid,
  .split-fit-grid,
  .product-showcase-grid,
  .closing-actions,
  .cta-band-inner,
  .final-cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a {
    width: 100%;
  }

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

  .product-shot-large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .page-hero,
  .section-block,
  .cta-band,
  .final-cta {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .navbar {
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-copy,
  .hero-panel,
  .audience-card,
  .info-card,
  .result-card,
  .cta-band-inner,
  .final-cta-box {
    padding: 1.5rem;
  }

  .audience-card {
    gap: 1.2rem;
  }

  .product-brand,
  .hero-brand {
    align-items: flex-start;
  }

  .product-mark,
  .hero-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .product-lockup {
    width: 140px;
  }

  .btn {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row > * {
    flex: 1 1 100%;
  }
}

/* Carousel Styles */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: auto;
}

.carousel-track {
  display: flex;
  gap: 0.8rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .audience-card {
  flex: 0 0 calc(48% - 0.5rem);
  min-height: 100%;
}

.carousel-btn {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 0;
}

.carousel-btn:hover {
  background: rgba(0, 152, 180, 0.08);
  border-color: var(--teal);
  color: var(--teal);
  transform: scale(1.05);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 31, 60, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(10, 31, 60, 0.4);
}

.carousel-dot.is-active {
  background: var(--teal);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .carousel-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .carousel-container {
    min-height: 550px;
    width: 100%;
  }

  .carousel-track .audience-card {
    flex: 0 0 100%;
  }

  .carousel-track {
    gap: 0;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 720px) {
  .carousel-wrapper {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-indicators {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }
}

/* Showcase Carousel Styles */
.showcase-carousel-wrapper {
  margin-top: 2.5rem;
  padding: 0 1rem;
}

.showcase-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  margin-bottom: 2rem;
}

.showcase-carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.showcase-carousel-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.showcase-carousel-media .showcase-rotator {
  aspect-ratio: 16 / 10;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(10, 31, 60, 0.03), rgba(10, 31, 60, 0.06));
}

.showcase-carousel-media .showcase-rotator img {
  border-radius: 14px;
}

.showcase-carousel-media.showcase-mobile-media .showcase-rotator {
  min-height: 360px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(53, 183, 242, 0.08), rgba(103, 223, 189, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-carousel-content {
  display: grid;
  gap: 0.8rem;
}

.showcase-carousel-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.showcase-carousel-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.showcase-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.showcase-carousel-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 0;
}

.showcase-carousel-btn:hover {
  background: rgba(0, 152, 180, 0.08);
  border-color: var(--teal);
  color: var(--teal);
  transform: scale(1.05);
}

.showcase-carousel-btn:active {
  transform: scale(0.95);
}

.showcase-carousel-btn svg {
  width: 24px;
  height: 24px;
}

.showcase-carousel-dots {
  display: flex;
  gap: 0.65rem;
}

.showcase-carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 31, 60, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.showcase-carousel-dot:hover {
  background: rgba(10, 31, 60, 0.4);
}

.showcase-carousel-dot.is-active {
  background: var(--teal);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .showcase-carousel-slide {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .showcase-carousel-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .showcase-carousel-track {
    gap: 0;
  }

  .showcase-carousel-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .showcase-carousel-controls {
    gap: 1.5rem;
    margin-top: 1rem;
  }
}
