:root {
  --blue: #0A3D78;
  --blue-950: #031A33;
  --blue-900: #062A54;
  --teal: #00B4A6;
  --cyan: #4DD0E1;
  --soft: #F2F4F7;
  --gray: #8A99A8;
  --text: #0E2946;
  --muted: #68798E;
  --white: #FFFFFF;
  --line: rgba(10, 61, 120, .12);
  --shadow: 0 28px 90px rgba(3, 26, 51, .16);
  --shadow-soft: 0 18px 48px rgba(3, 26, 51, .10);
  --radius: 30px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 208, 225, .22), transparent 28%),
    radial-gradient(circle at 88% 2%, rgba(0, 180, 166, .18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(10, 61, 120, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 120, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .58;
  pointer-events: none;
}

.page-glow-one {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 130px;
  background: rgba(77, 208, 225, .22);
}

.page-glow-two {
  width: 440px;
  height: 440px;
  right: -180px;
  top: 460px;
  background: rgba(0, 180, 166, .16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 61, 120, .08);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(10, 61, 120, .20);
}

.brand > span {
  font-size: 1.35rem;
  color: var(--blue);
}

.brand > span span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #5b6d83;
  font-size: .93rem;
  font-weight: 800;
}

.nav-links > a {
  transition: color .2s ease, transform .2s ease;
}

.nav-links > a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.app-access {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(0, 180, 166, .26);
  border-radius: 999px;
  color: var(--blue) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,255,253,.92));
  box-shadow: 0 12px 28px rgba(0, 180, 166, .12);
}

.app-access-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-size: .8rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: #eef7fb;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--blue);
}

.premium-section {
  padding: 96px 0;
}

.hero {
  padding-top: 110px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.premium-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 900;
}

.premium-label span {
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

h1 {
  max-width: 720px;
  margin: 20px 0 22px;
  color: var(--blue-950);
  font-size: clamp(3rem, 6vw, 6.15rem);
  line-height: .94;
  letter-spacing: -.075em;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

h3 {
  color: var(--blue-900);
  letter-spacing: -.025em;
}

.hero-lead,
.copy-block p,
.section-heading p,
.portal-copy p,
.brand-identity p,
.cta-card p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.82;
}

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

.hero-actions.center {
  justify-content: center;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 38px rgba(0, 180, 166, .25);
}

.btn-ghost {
  color: var(--blue);
  border: 1px solid rgba(10, 61, 120, .12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 38px rgba(10, 61, 120, .08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid rgba(10, 61, 120, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(10, 61, 120, .06);
}

.hero-proof strong {
  display: block;
  color: var(--blue);
  font-size: 1.25rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
}

.hero-product {
  position: relative;
  min-height: 620px;
}

.orbit-card {
  position: absolute;
  inset: 0 auto auto 10px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 180, 166, .18);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(77, 208, 225, .18), transparent 52%),
    rgba(255,255,255,.62);
  box-shadow: inset 0 0 0 22px rgba(255,255,255,.45);
}

.app-icon-large {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 176px;
  transform: translate(-50%, -50%);
}

.app-icon-large img {
  border-radius: 39px;
  box-shadow: 0 26px 60px rgba(10, 61, 120, .28);
}

.floating-pill {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(10, 61, 120, .10);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(10, 61, 120, .10);
  white-space: nowrap;
}

.pill-one {
  left: -28px;
  top: 54px;
}

.pill-two {
  right: -54px;
  top: 135px;
}

.pill-three {
  left: 36px;
  bottom: 38px;
}

.product-window {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(650px, 100%);
  overflow: hidden;
  border: 1px solid rgba(10, 61, 120, .11);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.window-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(10, 61, 120, .08);
  background: rgba(248, 252, 255, .96);
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
}

.window-top span:nth-child(2) {
  background: var(--teal);
}

.window-top span:nth-child(3) {
  background: var(--blue);
}

.window-top p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 370px;
}

.sidebar-preview {
  padding: 20px 15px;
  background: linear-gradient(180deg, var(--blue-950), var(--blue));
  color: white;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.mini-brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.sidebar-preview span {
  display: block;
  margin-bottom: 8px;
  padding: 10px 11px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 800;
}

.sidebar-preview .active {
  color: white;
  background: linear-gradient(135deg, #1477bf, var(--teal));
}

.dashboard-preview {
  padding: 24px;
  background: #f8fbff;
}

.dash-header,
.dash-panels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dash-header small {
  color: var(--muted);
  font-weight: 800;
}

.dash-header h3 {
  margin: 4px 0 0;
}

.dash-header > span {
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin: 22px 0;
}

.metric-grid article,
.dash-panels article {
  padding: 16px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 28px rgba(10, 61, 120, .06);
}

.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

.metric-grid b {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 1.25rem;
}

.dash-panels article {
  flex: 1;
}

.dash-panels h4 {
  margin-bottom: 12px;
  color: var(--blue);
}

.dash-panels p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
}

.dash-panels strong {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
}

.mini-chart {
  height: 62px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 70%, var(--teal) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 48%, var(--cyan) 0 4px, transparent 5px),
    radial-gradient(circle at 82% 22%, var(--teal) 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 48%, rgba(0, 180, 166, .22) 49%, rgba(0, 180, 166, .22) 52%, transparent 53%),
    linear-gradient(180deg, #effcff, #ffffff);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.client-strip span {
  padding: 17px 14px;
  border: 1px solid rgba(10, 61, 120, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--blue);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(10, 61, 120, .06);
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 60px;
  align-items: start;
}

.copy-block {
  padding: 34px;
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}

.modules-section {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, .75), rgba(255,255,255,.86));
}

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

.module-card,
.portal-card,
.differentiators article,
.plan-card,
.palette-card,
.cta-card {
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.module-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 255px;
}

.module-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 166, .13), transparent 62%);
}

.module-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 1000;
}

.module-card p,
.differentiators p,
.plan-card p {
  color: var(--muted);
  line-height: 1.72;
}

.portal-section {
  background:
    radial-gradient(circle at 14% 28%, rgba(77, 208, 225, .16), transparent 28%),
    linear-gradient(135deg, rgba(10, 61, 120, .05), rgba(0, 180, 166, .08));
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 36px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: .78rem;
}

.portal-card {
  padding: 30px;
}

.portal-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}

.portal-card-head img {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  box-shadow: 0 12px 26px rgba(10,61,120,.18);
}

.portal-card-head strong,
.portal-card-head span {
  display: block;
}

.portal-card-head strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.portal-card-head span {
  color: var(--muted);
  font-size: .86rem;
}

.portal-card label {
  display: block;
  margin: 15px 0 8px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fake-field {
  padding: 15px 16px;
  border: 1px solid rgba(10, 61, 120, .10);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--muted);
  font-weight: 700;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.time-grid button,
.submit-demo {
  min-height: 46px;
  border: 0;
  border-radius: 15px;
  background: rgba(0, 180, 166, .12);
  color: var(--blue);
  font-weight: 1000;
  cursor: pointer;
}

.submit-demo {
  width: 100%;
  margin-top: 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

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

.differentiators article {
  padding: 32px;
}

.differentiators span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,180,166,.12);
  color: var(--teal);
  font-size: .76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.plan-card {
  position: relative;
  padding: 34px;
}

.plan-card.featured {
  border-color: rgba(0, 180, 166, .35);
  background:
    radial-gradient(circle at top right, rgba(77, 208, 225, .17), transparent 34%),
    linear-gradient(180deg, #ffffff, #f2fffd);
  transform: translateY(-14px);
}

.plan-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 180, 166, .13);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 1000;
}

.plan-card h3 {
  font-size: 1.6rem;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 24px 0;
}

.plan-card li::marker {
  color: var(--teal);
}

.plan-card a {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 1000;
}

.plan-card.featured a {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}


.floating-app {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(0,180,166,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--blue);
  font-size: .86rem;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(10, 61, 120, .18);
  backdrop-filter: blur(16px);
}

.floating-app img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(10, 61, 120, .08);
  background: rgba(255,255,255,.84);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: var(--blue);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(10, 61, 120, .10);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 820px;
  }

  .orbit-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-window {
    left: 0;
    right: 0;
    margin: auto;
  }

  .modules-grid,
  .plans-grid,
  .differentiators,
  .client-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .premium-section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .brand > span {
    font-size: 1.18rem;
  }

  .hero-proof,
  .modules-grid,
  .plans-grid,
  .differentiators,
  .client-strip,
  .metric-grid,
  .dash-panels {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: auto;
  }

  .orbit-card {
    position: relative;
    inset: auto;
    width: 280px;
    height: 280px;
    margin: 0 auto 24px;
    transform: none;
  }

  .floating-pill {
    display: none;
  }

  .product-window {
    position: relative;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-preview {
    display: none;
  }

  .dash-header,
  .dash-panels,
  .footer-grid {
    flex-direction: column;
  }

  .cta-card {
    padding: 36px 22px;
  }

  .floating-app span {
    display: none;
  }

  .floating-app {
    padding: 9px;
  }
}


.footer-lolostech {
  color: var(--teal);
  font-weight: 1000;
  text-decoration: none;
}

.footer-lolostech:hover {
  color: var(--blue);
  text-decoration: underline;
}


.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 46;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 180, 166, .24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(240,255,253,.94));
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(10, 61, 120, .16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease, color .22s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 78px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }
}


/* Animaciones premium OdontoNic */
@keyframes odontonicFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes odontonicGlowShift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .52; }
  50% { transform: translate3d(18px, -14px, 0) scale(1.06); opacity: .72; }
}

@keyframes odontonicSoftPulse {
  0%, 100% { box-shadow: 0 18px 42px rgba(10, 61, 120, .18); }
  50% { box-shadow: 0 18px 42px rgba(10, 61, 120, .18), 0 0 0 8px rgba(0, 180, 166, .10); }
}

@keyframes odontonicButtonShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(220%) skewX(-18deg); }
}

@keyframes odontonicChartFlow {
  0% { background-position: 0 0, 0 0, 0 0, -80px 0, 0 0; }
  100% { background-position: 0 0, 0 0, 0 0, 80px 0, 0 0; }
}

@keyframes odontonicMetricPop {
  0%, 100% { transform: translateY(0); border-color: rgba(10, 61, 120, .09); }
  50% { transform: translateY(-5px); border-color: rgba(0, 180, 166, .34); }
}

.page-glow {
  animation: odontonicGlowShift 12s ease-in-out infinite;
}

.page-glow-two {
  animation-delay: -5s;
}

.app-icon-large {
  animation: odontonicFloat 5.8s ease-in-out infinite;
}

.product-window {
  animation: odontonicFloat 7.4s ease-in-out infinite;
  animation-delay: .8s;
}

.floating-pill {
  animation: odontonicFloat 6.4s ease-in-out infinite;
}

.pill-two {
  animation-delay: -1.7s;
}

.pill-three {
  animation-delay: -3.1s;
}

.btn-primary,
.app-access,
.plan-card a {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.app-access::after,
.plan-card a::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% 0;
  width: 46px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}

.btn-primary:hover::after,
.app-access:hover::after,
.plan-card a:hover::after {
  animation: odontonicButtonShine .78s ease;
}

.module-card,
.plan-card,
.differentiators article,
.portal-card,
.copy-block {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.module-card:hover,
.plan-card:hover,
.differentiators article:hover,
.portal-card:hover,
.copy-block:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 166, .24);
  box-shadow: 0 26px 64px rgba(3, 26, 51, .13);
}

.sidebar-preview span {
  transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.sidebar-preview span.preview-active {
  color: white;
  background: linear-gradient(135deg, #1477bf, var(--teal));
  box-shadow: 0 12px 24px rgba(0, 180, 166, .18);
  transform: translateX(3px);
}

.metric-grid article {
  border: 1px solid transparent;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.metric-grid article.metric-active {
  animation: odontonicMetricPop 1.4s ease;
  border-color: rgba(0, 180, 166, .34);
  box-shadow: 0 16px 34px rgba(0, 180, 166, .12);
}

.mini-chart {
  animation: odontonicChartFlow 5.5s linear infinite;
}

.floating-app {
  animation: odontonicSoftPulse 4.8s ease-in-out infinite;
}

.reveal {
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  filter: blur(6px);
}

.reveal.visible {
  filter: blur(0);
}

.hero-entrance.visible .hero-proof div,
.hero-entrance.visible .metric-grid article,
.hero-entrance.visible .module-card {
  animation: odontonicMetricPop .9s ease both;
}

.hero-proof div:nth-child(2),
.metric-grid article:nth-child(2) {
  animation-delay: .08s;
}

.hero-proof div:nth-child(3),
.metric-grid article:nth-child(3) {
  animation-delay: .16s;
}

.metric-grid article:nth-child(4) {
  animation-delay: .24s;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .back-to-top {
    transition: none;
  }
}


/* Secciones comerciales premium */
.before-after-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(77, 208, 225, .13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,252,255,.88));
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card,
.audience-card,
.faq-list,
.demo-card,
.mini-cta {
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 0%, rgba(10, 61, 120, .08), transparent 34%);
}

.comparison-card.after::before {
  background: radial-gradient(circle at 90% 0%, rgba(0, 180, 166, .16), transparent 36%);
}

.comparison-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.comparison-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 61, 120, .08);
  color: var(--blue);
  font-size: .76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.comparison-card.after .comparison-badge {
  background: rgba(0, 180, 166, .13);
  color: var(--teal);
}

.comparison-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.comparison-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 31px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 1000;
}

.comparison-card.before li::before {
  content: "×";
  color: #8A99A8;
  background: rgba(138, 153, 168, .15);
}

.comparison-card.after li::before {
  content: "✓";
  color: white;
  background: var(--teal);
}

.workflow-section {
  background:
    linear-gradient(135deg, rgba(10, 61, 120, .045), rgba(0, 180, 166, .07));
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.workflow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 39px;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 61, 120, .12), rgba(0, 180, 166, .45), rgba(10, 61, 120, .12));
}

.workflow-line article {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 24px 20px;
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(10, 61, 120, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.workflow-line article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 166, .24);
  box-shadow: 0 26px 64px rgba(3, 26, 51, .13);
}

.workflow-line article span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 1000;
}

.workflow-line article h3 {
  margin-bottom: 8px;
}

.workflow-line article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
}

.mini-cta strong,
.mini-cta span {
  display: block;
}

.mini-cta strong {
  color: var(--blue-950);
  font-size: 1.15rem;
  font-weight: 1000;
}

.mini-cta span {
  margin-top: 5px;
  color: var(--muted);
}

.mini-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 1000;
  box-shadow: 0 18px 38px rgba(0, 180, 166, .20);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-card {
  padding: 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 166, .24);
  box-shadow: 0 26px 64px rgba(3, 26, 51, .13);
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: .84rem;
  font-weight: 1000;
}

.audience-card h3 {
  min-height: 58px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.faq-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 180, 166, .13), transparent 28%),
    linear-gradient(180deg, rgba(248,252,255,.72), rgba(255,255,255,.94));
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.faq-copy .btn {
  margin-top: 14px;
}

.faq-list {
  padding: 12px;
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 61, 120, .08);
  padding: 0;
}

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 48px 20px 18px;
  color: var(--blue-900);
  font-weight: 1000;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 180, 166, .12);
  color: var(--teal);
  font-weight: 1000;
}

.faq-list details[open] summary::after {
  content: "–";
  color: white;
  background: var(--teal);
}

.faq-list p {
  margin: -4px 48px 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.demo-section {
  padding-top: 50px;
}

.demo-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(77, 208, 225, .17), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(0, 180, 166, .15), transparent 30%),
    rgba(255,255,255,.9);
}

.demo-card img {
  width: 92px;
  height: 92px;
  border-radius: 25px;
  box-shadow: 0 22px 52px rgba(10, 61, 120, .22);
}

.demo-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.demo-card p {
  margin-bottom: 0;
}

@media (max-width: 1060px) {
  .comparison-grid,
  .workflow-line,
  .audience-grid,
  .faq-grid,
  .demo-card {
    grid-template-columns: 1fr;
  }

  .workflow-line::before {
    display: none;
  }

  .mini-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-card {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .comparison-card,
  .demo-card {
    padding: 26px;
  }

  .audience-card h3 {
    min-height: auto;
  }

  .faq-list summary {
    padding-right: 44px;
  }
}

.comparison-card,
.workflow-line article,
.audience-card,
.faq-list details,
.demo-card,
.mini-cta {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.faq-list details:hover,
.demo-card:hover,
.mini-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 166, .22);
  box-shadow: 0 24px 58px rgba(3, 26, 51, .12);
}


/* Pulido final comercial */
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 180, 166, .45);
}

.control-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(77, 208, 225, .14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,252,255,.9));
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.control-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  color: var(--blue-900);
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(10, 61, 120, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.control-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 166, .25);
  box-shadow: 0 24px 56px rgba(3, 26, 51, .12);
}

.control-card span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 1000;
}

.trust-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 180, 166, .13), transparent 30%),
    linear-gradient(135deg, rgba(10, 61, 120, .05), rgba(0, 180, 166, .055));
}

.trust-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.trust-copy p {
  margin-bottom: 0;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-card {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(10, 61, 120, .09);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 166, .24);
  box-shadow: 0 26px 64px rgba(3, 26, 51, .13);
}

.trust-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

.trust-card span {
  color: var(--muted);
  line-height: 1.68;
  font-weight: 700;
}

.inline-cta-section {
  padding: 0 0 44px;
  background: linear-gradient(135deg, rgba(10, 61, 120, .05), rgba(0, 180, 166, .08));
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(0, 180, 166, .18);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta strong {
  color: var(--blue-950);
  font-size: 1.12rem;
  font-weight: 1000;
}

.inline-cta span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.inline-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 1000;
  box-shadow: 0 18px 38px rgba(0, 180, 166, .20);
}

@media (max-width: 1060px) {
  .control-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .control-grid,
  .trust-grid,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .control-card {
    min-height: auto;
  }
}


/* Responsive premium: mobile/tablet enfocado a conversión */
.menu-overlay {
  position: fixed;
  inset: 82px 0 0;
  z-index: 39;
  background: rgba(3, 26, 51, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  backdrop-filter: blur(4px);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-fast-actions {
  display: none;
}

@media (max-width: 1060px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    position: relative;
    z-index: 55;
    transition: background .24s ease, transform .24s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    background: #e5f7fb;
  }

  .menu-toggle span {
    transition: transform .26s ease, opacity .2s ease, margin .26s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    z-index: 56;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px) scale(.985);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 15px;
  }

  .nav-links a:not(.app-access):hover {
    background: rgba(10, 61, 120, .055);
  }

  .app-access {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .premium-label {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    max-width: none;
  }

  .product-window {
    width: min(720px, 100%);
  }

  .client-strip {
    margin-top: 34px;
  }

  .section-heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 820px) {
  .premium-section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-lead,
  .copy-block p,
  .section-heading p,
  .portal-copy p,
  .faq-copy p,
  .demo-card p {
    font-size: .98rem;
    line-height: 1.72;
  }

  .hero-product {
    display: none;
  }

  .mobile-fast-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    width: min(520px, 100%);
    margin: 24px auto 0;
  }

  .mobile-fast-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 1000;
    text-align: center;
  }

  .mobile-fast-actions a:first-child {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 16px 34px rgba(0, 180, 166, .20);
  }

  .mobile-fast-actions a:last-child {
    color: var(--blue);
    border: 1px solid rgba(10, 61, 120, .12);
    background: rgba(255,255,255,.9);
  }

  .client-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-strip span:nth-child(n+3) {
    display: none;
  }

  .copy-block {
    padding: 26px;
  }

  .modules-grid .module-card:nth-child(n+5),
  .control-grid .control-card:nth-child(n+7),
  .audience-grid .audience-card:nth-child(n+4),
  .trust-cards .trust-card:nth-child(n+4) {
    display: none;
  }

  .module-card,
  .comparison-card,
  .portal-card,
  .plan-card,
  .faq-list,
  .demo-card,
  .audience-card,
  .control-card,
  .trust-card {
    border-radius: 22px;
  }

  .workflow-line article {
    min-height: auto;
  }

  .inline-cta,
  .mini-cta {
    align-items: stretch;
  }

  .inline-cta a,
  .mini-cta a {
    width: 100%;
  }

  .portal-grid {
    gap: 28px;
  }

  .plans-grid {
    gap: 16px;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-card ul li:nth-child(n+5) {
    display: none;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq-copy {
    text-align: center;
  }

  .faq-copy .premium-label {
    justify-content: center;
  }

  .faq-copy .btn {
    width: 100%;
  }

  .floating-app {
    right: 16px;
    bottom: 18px;
  }

  .back-to-top {
    right: 16px;
    bottom: 76px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand > span {
    font-size: 1.08rem;
  }

  .menu-overlay {
    inset: 74px 0 0;
  }

  .nav-links {
    top: 84px;
    left: 12px;
    right: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  h1 {
    margin-top: 16px;
    font-size: clamp(2.25rem, 13vw, 3.65rem);
    line-height: .97;
  }

  h2 {
    font-size: clamp(1.78rem, 9vw, 2.55rem);
    line-height: 1.05;
  }

  .hero-actions {
    display: none;
  }

  .mobile-fast-actions {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof div:nth-child(3) {
    display: none;
  }

  .client-strip {
    grid-template-columns: 1fr;
  }

  .split-section,
  .comparison-grid,
  .portal-grid,
  .faq-grid {
    gap: 22px;
  }

  .workflow-line {
    gap: 12px;
  }

  .workflow-line article {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .workflow-line article span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .workflow-line article h3 {
    margin: 2px 0 4px;
  }

  .workflow-line article p {
    font-size: .9rem;
  }

  .time-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid .plan-card:not(.featured) {
    display: none;
  }

  .plan-card.featured {
    border-width: 1px;
    box-shadow: 0 24px 60px rgba(0, 180, 166, .15);
  }

  .faq-list {
    padding: 8px;
  }

  .faq-list details:nth-of-type(n+4) {
    display: none;
  }

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

  .faq-list p {
    margin: -2px 44px 18px 14px;
  }

  .demo-card {
    padding: 26px 20px;
  }

  .demo-card img {
    width: 76px;
    height: 76px;
    border-radius: 21px;
  }

  .footer-grid {
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}


/* FIX V8: menú mobile premium limpio */
@media (max-width: 1060px) {
  .site-header {
    z-index: 80;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-overlay {
    position: fixed;
    inset: 74px 0 0;
    z-index: 70;
    background: rgba(3, 26, 51, .30);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    backdrop-filter: blur(5px);
  }

  .menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 90;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: #eaf8fb;
    box-shadow: 0 12px 28px rgba(10, 61, 120, .08);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    background: #e2f6fa;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2.5px;
    margin: 0;
    border-radius: 999px;
    background: var(--blue);
    transition: transform .24s ease, opacity .18s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    z-index: 85;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px;
    border: 1px solid rgba(10, 61, 120, .10);
    border-radius: 26px;
    background:
      radial-gradient(circle at 14% 0%, rgba(77, 208, 225, .12), transparent 34%),
      rgba(255, 255, 255, .96);
    box-shadow: 0 28px 76px rgba(3, 26, 51, .22);
    backdrop-filter: blur(18px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--blue);
    font-size: .98rem;
    font-weight: 1000;
    background: rgba(248, 252, 255, .72);
    border: 1px solid rgba(10, 61, 120, .055);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
  }

  .nav-links a::after {
    content: "›";
    color: var(--teal);
    font-size: 1.35rem;
    line-height: 1;
    opacity: .85;
  }

  .nav-links a:hover {
    transform: translateX(2px);
    background: rgba(0, 180, 166, .08);
    border-color: rgba(0, 180, 166, .18);
  }

  .nav-links .app-access {
    min-height: 52px;
    margin-top: 6px;
    justify-content: center;
    gap: 10px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border: 0;
    box-shadow: 0 16px 34px rgba(0, 180, 166, .22);
  }

  .nav-links .app-access::after {
    display: none;
  }

  .nav-links .app-access .app-access-icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 74px;
  }

  .menu-overlay {
    inset: 74px 0 0;
  }

  .nav-links {
    top: 86px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 104px);
    padding: 12px;
    border-radius: 24px;
    gap: 7px;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 14px;
    font-size: .94rem;
  }

  .nav-links .app-access {
    min-height: 48px;
  }
}

@media (max-height: 650px) and (max-width: 1060px) {
  .nav-links {
    top: 80px;
    max-height: calc(100dvh - 92px);
    gap: 6px;
    padding: 10px;
  }

  .nav-links a {
    min-height: 40px;
    font-size: .9rem;
  }

  .nav-links .app-access {
    min-height: 44px;
  }
}
