:root {
  color-scheme: light;
  --navy-950: #04142f;
  --navy-900: #071b3a;
  --navy-800: #0b2d5d;
  --blue-700: #1559b7;
  --blue-600: #2375d8;
  --cyan-400: #54d3dd;
  --gold-400: #f4c44f;
  --surface: rgba(247, 251, 255, .9);
  --surface-strong: rgba(255, 255, 255, .96);
  --surface-dark: rgba(4, 20, 47, .84);
  --text: #0a2142;
  --muted: #50627b;
  --line: rgba(19, 69, 123, .16);
  --white: #fff;
  --success: #16865b;
  --header-height: 76px;
  --footer-height: 62px;
  --shadow: 0 20px 60px rgba(0, 25, 68, .16);
  --shadow-soft: 0 12px 32px rgba(2, 30, 73, .1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1240px;
  --content-gutter: clamp(18px, 4vw, 64px);
  --ease: cubic-bezier(.22, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #8bc7ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.js-ready { height: 100vh; height: 100dvh; overflow: hidden; }
p { text-align: justify; text-justify: inter-word; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, summary { font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }
::selection { color: var(--white); background: var(--blue-700); }

.page-background {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(3, 21, 49, .84) 0%, rgba(8, 43, 84, .66) 33%, rgba(216, 241, 255, .1) 68%, rgba(4, 25, 57, .48) 100%),
    linear-gradient(180deg, rgba(4, 17, 39, .22), rgba(4, 17, 39, .36)),
    url("../../img_login.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateZ(0);
}
.page-background::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .22), transparent 35%), linear-gradient(180deg, rgba(2, 15, 36, .06), rgba(2, 15, 36, .18));
  content: "";
}
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.icon .brand-fill, .brand-fill { fill: currentColor; stroke: none; }
.icon--small { width: 18px; height: 18px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 10px;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(4, 20, 47, .86);
  box-shadow: 0 8px 30px rgba(1, 15, 36, .18);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1480px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
}
.brand-zone { justify-self: start; }
.brand-link {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  transition: transform .25s var(--ease), filter .25s ease;
}
.brand-link:hover { filter: drop-shadow(0 5px 12px rgba(87, 170, 255, .42)); transform: translateY(-2px); }
.brand-link img { width: 58px; height: 58px; object-fit: contain; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}
.desktop-nav a {
  min-height: 40px;
  padding: 9px 15px;
  color: rgba(255, 255, 255, .78);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.desktop-nav a:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
.desktop-nav a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .14);
}
.action-zone { display: flex; justify-self: end; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button--header {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 7px 22px rgba(30, 113, 213, .3);
  font-size: .9rem;
}
.button--header:hover, .button--primary:hover { box-shadow: 0 12px 30px rgba(28, 102, 200, .34), 0 0 0 4px rgba(73, 155, 239, .12); }
.button--primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); box-shadow: 0 10px 24px rgba(16, 78, 166, .24); }
.button--secondary { color: var(--navy-900); border-color: rgba(14, 63, 122, .22); background: rgba(255, 255, 255, .8); }
.button--secondary:hover { border-color: rgba(14, 83, 166, .45); background: var(--white); box-shadow: 0 10px 25px rgba(5, 40, 88, .12); }
.button--ghost { color: var(--navy-800); border-color: rgba(8, 49, 103, .14); background: rgba(220, 240, 253, .5); }
.button--block { width: 100%; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  place-items: center;
  cursor: pointer;
}
.menu-toggle__close, .menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }
.mobile-nav {
  position: absolute;
  z-index: 51;
  top: calc(100% + 10px);
  right: 16px;
  left: 16px;
  max-height: calc(100dvh - var(--header-height) - 30px);
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(5, 25, 56, .97);
  box-shadow: 0 20px 60px rgba(0, 15, 43, .38);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .82);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--white); background: rgba(255, 255, 255, .1); }
.mobile-nav .mobile-nav__cta { justify-content: center; margin-top: 6px; color: var(--navy-950); background: var(--white); }
.mobile-nav__legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.mobile-nav__legal a {
  justify-content: center;
  min-height: 42px;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

.slides { position: relative; min-height: calc(100vh - var(--header-height)); }
.js-ready .slides {
  height: calc(100vh - var(--header-height) - var(--footer-height));
  height: calc(100dvh - var(--header-height) - var(--footer-height));
  min-height: 0;
  overflow: hidden;
}
.slide { scroll-margin-top: var(--header-height); }
.js-ready .slide {
  --slide-shift: 6%;
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--slide-shift), 0, 0);
  transition: opacity .42s var(--ease), transform .42s var(--ease), visibility 0s linear .42s;
}
.js-ready .slide[data-direction="backward"] { --slide-shift: -6%; }
.js-ready .slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.js-ready .slide.is-leaving {
  z-index: 1;
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--slide-shift) * -1), 0, 0);
  transition-delay: 0s;
}
.slide__scroll { min-height: 100%; padding: clamp(28px, 4.2vh, 58px) var(--content-gutter); }
.js-ready .slide__scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
  scrollbar-color: rgba(255, 255, 255, .45) transparent;
  scrollbar-width: thin;
}
.slide__content { width: 100%; max-width: var(--content-width); margin-inline: auto; }
.slide--hero .slide__scroll { display: grid; align-items: center; }

.hero { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr); align-items: center; gap: clamp(30px, 5vw, 76px); }
.hero__copy {
  padding: clamp(16px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-lg);
  background: rgba(245, 251, 255, .84);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  backdrop-filter: blur(18px) saturate(112%);
}
.eyebrow { margin: 0 0 12px; color: var(--blue-700); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; color: var(--navy-950); line-height: 1.12; }
h1 { max-width: 880px; margin-bottom: 20px; font-size: clamp(2.35rem, 5.4vw, 5.15rem); letter-spacing: -.055em; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.65rem); letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 1.12rem; letter-spacing: -.018em; }
.hero__lead { max-width: 760px; margin: 0; color: #304966; font-size: clamp(1.02rem, 1.65vw, 1.25rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.hero-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 28px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .85rem; line-height: 1.35; }
.hero-points .icon { width: 20px; height: 20px; color: var(--blue-600); }
.hero-points strong { color: var(--navy-900); }
.hero-card {
  position: relative;
  padding: clamp(24px, 3.5vw, 42px);
  overflow: hidden;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 85% 8%, rgba(84, 211, 221, .2), transparent 30%), var(--surface-dark);
  box-shadow: 0 24px 70px rgba(2, 19, 47, .34);
  -webkit-backdrop-filter: blur(17px) saturate(125%);
  backdrop-filter: blur(17px) saturate(125%);
}
.hero-card::before { position: absolute; top: -80px; right: -70px; width: 180px; height: 180px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; content: ""; }
.hero-card__top { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255, 255, 255, .7); font-size: .82rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border: 2px solid rgba(255, 255, 255, .42); border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(84, 211, 221, .15); }
.hero-card__icon, .included-card__icon, .card-icon, .price-card__icon, .download-card__icon {
  display: grid;
  color: var(--blue-700);
  background: rgba(41, 127, 216, .1);
  place-items: center;
}
.hero-card__icon { width: 66px; height: 66px; margin-bottom: 24px; color: var(--cyan-400); border: 1px solid rgba(84, 211, 221, .28); border-radius: 20px; background: rgba(84, 211, 221, .09); }
.hero-card__icon .icon { width: 34px; height: 34px; }
.hero-card h2 { color: var(--white); font-size: clamp(1.65rem, 2.7vw, 2.55rem); }
.hero-card p { margin: 0; }
.hero-card__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .16); }
.hero-card__meta span { color: rgba(255, 255, 255, .66); font-size: .85rem; }
.hero-card__meta strong { color: var(--white); font-size: 1.4rem; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 26px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius-lg);
  background: rgba(248, 252, 255, .88);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 1.02rem; }
.section-heading--center { display: block; text-align: center; }
.section-heading--center > p { margin: 12px auto 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; gap: 16px; }
.feature-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.feature-card:hover { border-color: rgba(35, 117, 216, .32); box-shadow: 0 18px 38px rgba(2, 34, 79, .15); transform: translateY(-4px); }
.feature-card--wide { grid-column: span 2; }
.feature-card--online { color: rgba(255, 255, 255, .78); border-color: rgba(255, 255, 255, .2); background: var(--surface-dark); }
.feature-card--online h3, .feature-card--online .card-note { color: var(--white); }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.feature-card--online p { color: rgba(255, 255, 255, .72); }
.card-icon { width: 48px; height: 48px; margin-bottom: 19px; border-radius: 14px; }
.feature-card--online .card-icon { color: var(--cyan-400); background: rgba(84, 211, 221, .1); }
.compact-list, .check-list { display: grid; gap: 7px; margin: 16px 0 0; padding: 0; color: #334c68; font-size: .88rem; list-style: none; }
.compact-list li { position: relative; padding-left: 16px; }
.compact-list li::before { position: absolute; top: .65em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-600); content: ""; }
.status-key { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.status-key li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .82rem; }
.status-key strong { display: grid; width: 28px; height: 28px; color: var(--blue-700); border-radius: 8px; background: rgba(35, 117, 216, .11); place-items: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.tag-list span { padding: 7px 11px; color: #264b76; border: 1px solid rgba(35, 117, 216, .16); border-radius: 999px; background: rgba(227, 242, 254, .68); font-size: .78rem; font-weight: 700; }
.feature-card .card-note { margin-top: 15px; padding-top: 14px; color: #38516d; border-top: 1px solid var(--line); font-size: .82rem; }
.feature-card--online .card-note { color: rgba(255, 255, 255, .78); border-color: rgba(255, 255, 255, .13); }

.cobros-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 18px; margin-bottom: 18px; }
.cobros-intro, .included-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}
.cobros-intro { background: rgba(248, 252, 255, .9); }
.cobros-intro h2 { max-width: 790px; }
.section-lead { max-width: 780px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.included-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px; color: rgba(255, 255, 255, .72); background: radial-gradient(circle at 78% 16%, rgba(84, 211, 221, .2), transparent 32%), var(--surface-dark); }
.included-card__label { position: absolute; top: 22px; right: 22px; padding: 6px 10px; color: var(--navy-950); border-radius: 999px; background: var(--cyan-400); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.included-card__icon { width: 60px; height: 60px; margin-bottom: 20px; color: var(--cyan-400); border-radius: 18px; background: rgba(84, 211, 221, .1); }
.included-card__icon .icon { width: 32px; height: 32px; }
.included-card strong { color: var(--white); font-size: 1.55rem; }
.included-card p { margin: 8px 0 0; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.capability-grid article { padding: 23px; border: 1px solid rgba(255, 255, 255, .38); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.capability-number { display: block; margin-bottom: 28px; color: var(--blue-600); font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.capability-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.clarity-note { display: flex; align-items: flex-start; gap: 15px; margin-top: 16px; padding: 20px 22px; color: rgba(255, 255, 255, .75); border: 1px solid rgba(255, 255, 255, .17); border-radius: var(--radius-md); background: rgba(4, 20, 47, .78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.clarity-note > .icon { margin-top: 2px; color: var(--cyan-400); }
.clarity-note h3 { margin-bottom: 4px; color: var(--white); }
.clarity-note p { margin: 0; font-size: .9rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 16px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.price-card:hover { box-shadow: 0 22px 50px rgba(2, 31, 73, .17); transform: translateY(-4px); }
.price-card--featured { color: rgba(255, 255, 255, .8); border-color: rgba(84, 211, 221, .32); background: radial-gradient(circle at 90% 4%, rgba(84, 211, 221, .22), transparent 28%), rgba(4, 24, 54, .94); }
.price-card--featured .price-card__name, .price-card--featured .price, .price-card--featured .check-list { color: var(--white); }
.price-card--featured .price-card__period, .price-card--featured > p { color: rgba(255, 255, 255, .72); }
.price-card__badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; color: var(--navy-950); border-radius: 999px; background: var(--gold-400); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.price-card__icon { width: 48px; height: 48px; margin-bottom: 24px; border-radius: 14px; }
.price-card--featured .price-card__icon { color: var(--cyan-400); background: rgba(84, 211, 221, .1); }
.price-card__name { margin: 0 0 12px; color: var(--navy-800); font-weight: 800; }
.price { margin: 0; color: var(--navy-950); font-size: clamp(2.65rem, 4.5vw, 4.2rem); font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.price span { vertical-align: top; font-size: .48em; letter-spacing: normal; }
.price small { font-size: .25em; letter-spacing: .03em; }
.price-card__period { margin: 8px 0 20px; color: var(--muted); font-size: .88rem; font-weight: 650; }
.price-card > p:not(.price):not(.price-card__name):not(.price-card__period) { color: var(--muted); }
.price-card .button { margin-top: auto; }
.check-list { margin: 4px 0 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; }
.check-list .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--success); stroke-width: 2.2; }
.price-card--featured .check-list .icon { color: var(--cyan-400); }
.price-card .saving { margin: -7px 0 15px; color: var(--gold-400) !important; font-size: .84rem; font-weight: 750; }
.payment-note, .download-note { display: flex; width: fit-content; align-items: center; gap: 10px; margin: 17px auto 0; padding: 10px 15px; color: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; background: rgba(3, 20, 47, .7); font-size: .82rem; text-align: center; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.payment-note .icon { width: 18px; height: 18px; color: var(--cyan-400); }

.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.download-card--web { grid-column: 1 / -1; grid-template-columns: auto 1fr auto; align-items: center; color: rgba(255, 255, 255, .8); border-color: rgba(84, 211, 221, .3); background: radial-gradient(circle at 88% 10%, rgba(84, 211, 221, .18), transparent 28%), rgba(4, 24, 54, .93); }
.download-card__icon { width: 68px; height: 68px; border-radius: 20px; }
.download-card--web .download-card__icon { color: var(--cyan-400); background: rgba(84, 211, 221, .11); }
.download-card__icon .icon { width: 34px; height: 34px; }
.download-card__type { margin: 0 0 5px; color: var(--blue-700); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.download-card--web .download-card__type { color: var(--cyan-400); }
.download-card h3 { margin-bottom: 7px; font-size: 1.34rem; }
.download-card--web h3 { color: var(--white); }
.download-card p { margin-top: 0; color: var(--muted); }
.download-card--web p { color: rgba(255, 255, 255, .7); }
.download-card .button--block { grid-column: 1 / -1; }
.download-card__actions { display: flex; min-width: 210px; flex-direction: column; align-items: stretch; gap: 11px; }
.text-link { display: inline-flex; align-items: center; justify-content: center; gap: 6px; color: var(--cyan-400); font-size: .86rem; font-weight: 750; }
.file-meta { display: flex; justify-content: space-between; gap: 12px; margin: 22px 0 0 !important; padding-top: 16px; color: #3d5572 !important; border-top: 1px solid var(--line); font-size: .83rem; font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq-grid details { align-self: start; overflow: hidden; border: 1px solid rgba(255, 255, 255, .42); border-radius: var(--radius-sm); background: var(--surface-strong); box-shadow: 0 8px 24px rgba(4, 35, 76, .08); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); transition: border-color .22s ease, box-shadow .22s ease; }
.faq-grid details[open] { border-color: rgba(35, 117, 216, .35); box-shadow: 0 15px 30px rgba(4, 35, 76, .12); }
.faq-grid summary { position: relative; min-height: 58px; padding: 17px 52px 17px 19px; color: var(--navy-900); font-weight: 750; line-height: 1.35; list-style: none; cursor: pointer; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary span { position: absolute; top: 50%; right: 18px; width: 20px; height: 20px; border-radius: 50%; background: rgba(35, 117, 216, .09); transform: translateY(-50%); }
.faq-grid summary span::before, .faq-grid summary span::after { position: absolute; top: 9px; left: 5px; width: 10px; height: 2px; border-radius: 2px; background: var(--blue-700); content: ""; transition: transform .22s ease; }
.faq-grid summary span::after { transform: rotate(90deg); }
.faq-grid details[open] summary span::after { transform: rotate(0); }
.faq-grid details p { margin: 0; padding: 0 19px 19px; color: var(--muted); font-size: .92rem; }
.faq-grid details p a { color: var(--blue-700); font-weight: 700; }
.faq-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 16px; padding: 24px 26px; color: rgba(255, 255, 255, .75); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-md); background: rgba(4, 20, 47, .82); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); }
.faq-cta h3 { margin-bottom: 3px; color: var(--white); }
.faq-cta p { margin: 0; }

.slide--legal .slide__scroll {
  scrollbar-color: var(--blue-600) rgba(255, 255, 255, .18);
}
.legal-heading {
  align-items: center;
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}
.legal-summary {
  position: sticky;
  top: 0;
  padding: 24px;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 4%, rgba(84, 211, 221, .18), transparent 30%),
    rgba(4, 24, 54, .94);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.legal-summary--privacy {
  background:
    radial-gradient(circle at 90% 4%, rgba(35, 117, 216, .24), transparent 32%),
    rgba(4, 24, 54, .94);
}
.legal-summary__label {
  margin: 0 0 12px;
  color: var(--cyan-400);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.legal-summary h3 {
  color: var(--white);
  font-size: 1.35rem;
}
.legal-summary .check-list {
  gap: 12px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: .84rem;
}
.legal-summary .check-list .icon {
  color: var(--cyan-400);
}
.legal-updated {
  margin: 24px 0 0;
  padding-top: 17px;
  color: rgba(255, 255, 255, .58);
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .76rem;
}
.legal-document {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.legal-document__intro {
  padding: 27px 30px;
  color: #2e4967;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(221, 240, 255, .82), rgba(247, 252, 255, .65));
  font-size: 1rem;
}
.legal-document__intro p {
  margin: 0;
}
.legal-document > section {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
}
.legal-document > section:last-child {
  border-bottom: 0;
}
.legal-number {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  border: 1px solid rgba(35, 117, 216, .16);
  border-radius: 12px;
  background: rgba(35, 117, 216, .09);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
  place-items: center;
}
.legal-document h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}
.legal-document p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .92rem;
}
.legal-document p:last-child {
  margin-bottom: 0;
}
.legal-document ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: .9rem;
}
.legal-document a {
  color: var(--blue-700);
  font-weight: 700;
}
.legal-document .legal-section--highlight {
  background: linear-gradient(135deg, rgba(224, 242, 255, .7), rgba(255, 255, 255, .6));
  box-shadow: inset 4px 0 var(--cyan-400);
}

.site-footer {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: var(--footer-height);
  align-items: center;
  gap: 20px;
  padding: 7px max(24px, calc((100% - 1480px) / 2));
  color: rgba(255, 255, 255, .66);
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: rgba(3, 16, 38, .9);
  font-size: .75rem;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.25; }
.footer-brand strong { color: var(--white); font-size: .84rem; }
.footer-brand small { color: rgba(255, 255, 255, .55); }
.site-footer p { margin: 0; text-align: center; }
.footer-links { display: flex; justify-self: end; align-items: center; gap: 13px; }
.footer-links > a { text-decoration: none; }
.footer-links > a:hover { color: var(--white); text-decoration: underline; }
.social-links { display: flex; align-items: center; gap: 5px; }
.social-links a { display: grid; width: 34px; height: 34px; color: rgba(255, 255, 255, .68); border-radius: 9px; place-items: center; transition: color .2s ease, background .2s ease, transform .2s ease; }
.social-links a:hover { color: var(--white); background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.social-links .icon { width: 18px; height: 18px; }
.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: calc(var(--footer-height) + 16px);
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  background: #1fae61;
  box-shadow: 0 12px 30px rgba(5, 70, 38, .3);
  place-items: center;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s ease;
}
.whatsapp-float:hover { box-shadow: 0 16px 38px rgba(5, 70, 38, .38); transform: translateY(-3px) scale(1.03); }
.whatsapp-float .icon { width: 28px; height: 28px; }
.whatsapp-float__tooltip { position: absolute; right: calc(100% + 10px); width: max-content; max-width: 220px; padding: 8px 11px; color: var(--white); border-radius: 9px; background: var(--navy-950); box-shadow: var(--shadow-soft); font-size: .75rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translateX(7px); transition: opacity .18s ease, transform .18s ease; }
.whatsapp-float:hover .whatsapp-float__tooltip, .whatsapp-float:focus-visible .whatsapp-float__tooltip { opacity: 1; transform: translateX(0); }
.noscript-note { margin: 16px; padding: 14px 18px; color: var(--white); border-radius: 12px; background: var(--navy-950); }

.js-ready .slide.is-active .section-heading,
.js-ready .slide.is-active .hero__copy,
.js-ready .slide.is-active .hero-card,
.js-ready .slide.is-active .cobros-intro,
.js-ready .slide.is-active .included-card { animation: content-rise .48s var(--ease) both; }
.js-ready .slide.is-active .feature-card,
.js-ready .slide.is-active .capability-grid article,
.js-ready .slide.is-active .price-card,
.js-ready .slide.is-active .download-card,
.js-ready .slide.is-active .faq-grid details { animation: card-rise .42s var(--ease) both; }
.js-ready .slide.is-active :is(.feature-card, .capability-grid article, .price-card, .download-card, .faq-grid details):nth-child(2) { animation-delay: 45ms; }
.js-ready .slide.is-active :is(.feature-card, .capability-grid article, .price-card, .download-card, .faq-grid details):nth-child(3) { animation-delay: 90ms; }
.js-ready .slide.is-active :is(.feature-card, .capability-grid article, .faq-grid details):nth-child(n+4) { animation-delay: 120ms; }
@keyframes content-rise { from { opacity: 0; transform: translateY(12px); } }
@keyframes card-rise { from { opacity: 0; transform: translateY(14px); } }

@media (max-width: 1160px) {
  .desktop-nav, .button--header { display: none; }
  .header-grid { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
}
@media (max-width: 900px) {
  :root { --footer-height: 54px; }
  .slide__scroll { padding-top: 24px; padding-bottom: 28px; }
  .hero { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .hero-card { display: grid; grid-template-columns: auto 1fr; gap: 0 20px; padding: 24px; }
  .hero-card__top { grid-column: 1 / -1; margin-bottom: 18px; }
  .hero-card__icon { grid-row: 2 / 4; margin-bottom: 0; }
  .hero-card h2 { margin-bottom: 7px; }
  .hero-card__meta { grid-column: 1 / -1; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .cobros-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-summary { position: static; }
  .included-card { min-height: 230px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { grid-column: 1 / -1; }
  .download-card--web { grid-template-columns: auto 1fr; }
  .download-card__actions { grid-column: 1 / -1; min-width: 0; }
  .footer-brand small, .footer-links > a:nth-child(2), .footer-links > a:nth-child(3) { display: none; }
}
@media (max-width: 680px) {
  :root { --header-height: 66px; --footer-height: 0px; }
  .site-header { height: var(--header-height); }
  .header-grid { width: calc(100% - 28px); }
  .brand-link, .brand-link img { width: 50px; height: 50px; }
  .menu-toggle { width: 44px; height: 44px; }
  .js-ready .slides { height: calc(100dvh - var(--header-height)); }
  .slide__scroll { padding: 16px 12px 90px; }
  .hero__copy, .section-heading, .cobros-intro, .included-card, .price-card, .download-card { border-radius: 20px; }
  .hero__copy { padding: 23px 20px; }
  h1 { font-size: clamp(2.25rem, 12.5vw, 3.55rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.65rem); }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-points { grid-template-columns: repeat(2, 1fr); }
  .hero-card { display: block; }
  .hero-card__icon { margin-bottom: 18px; }
  .feature-grid, .capability-grid, .pricing-grid, .download-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature-card--wide, .price-card--featured, .download-card--web { grid-column: auto; }
  .feature-card { padding: 21px; }
  .legal-document__intro { padding: 23px 20px; }
  .legal-document > section { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px; }
  .download-card, .download-card--web { grid-template-columns: 1fr; }
  .download-card__icon { width: 58px; height: 58px; }
  .faq-cta { flex-direction: column; align-items: stretch; }
  .payment-note, .download-note { width: 100%; border-radius: 14px; }
  .site-footer { display: none; }
  .whatsapp-float { right: 14px; bottom: 16px; width: 54px; height: 54px; }
}
@media (max-width: 390px) {
  .hero-points, .status-key { grid-template-columns: 1fr; }
  .section-heading, .cobros-intro, .included-card { padding: 22px 19px; }
  .feature-card, .capability-grid article, .price-card, .download-card { padding: 20px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js-ready .slide, .js-ready .slide.is-leaving, .js-ready .slide.is-active { transform: none; }
}
@media print {
  .page-background, .site-header, .site-footer, .whatsapp-float, .svg-library { display: none !important; }
  body, body.js-ready { height: auto; overflow: visible; color: #000; background: #fff; }
  .js-ready .slides, .slides { height: auto; overflow: visible; }
  .js-ready .slide, .slide { position: static; visibility: visible; opacity: 1; page-break-after: always; transform: none; }
  .js-ready .slide__scroll { height: auto; overflow: visible; }
}
